/* Reset and Base Styles */
@font-face {
  font-family: 'Modam';
  src: url('fonts/ModamFaNumWeb-Regular.woff2') format('woff2'),
       url('fonts/ModamFaNumWeb-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Modam';
  src: url('fonts/ModamFaNumWeb-Bold.woff2') format('woff2'),
       url('fonts/ModamFaNumWeb-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Modam';
  src: url('fonts/ModamFaNumWeb-Light.woff2') format('woff2'),
       url('fonts/ModamFaNumWeb-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Modam';
  src: url('fonts/ModamFaNumWeb-Black.woff2') format('woff2'),
       url('fonts/ModamFaNumWeb-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Modam', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.5;
    color: #2c3e50;
    font-size: 14px;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e1e8ed;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #00bcd4;
}

.logo-img {
    width: 28px;
    height: 28px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-list a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: #00bcd4;
}

/* Hero Section */
.hero {
    background: white;
    padding: 80px 0 60px;
    margin-top: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
    line-height: 1.3;
}

.highlight {
    color: #00bcd4;
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 24px;
    color: #7f8c8d;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #00bcd4;
    color: white;
}

.btn-primary:hover {
    background: #00acc1;
    transform: translateY(-1px);
}

/* Phone Mockup */
.phone-mockup {
    width: 220px;
    height: 400px;
    background: white;
    border: 8px solid #2c3e50;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 auto;
}

.phone-mockup.small {
    width: 180px;
    height: 320px;
    border-width: 6px;
    padding: 12px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fafafa;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 16px;
    height: 100%;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e8ed;
    margin-bottom: 24px;
}

.app-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    border-radius: 6px;
}

.app-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.stat {
    background: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    border: 1px solid #e1e8ed;
}

.stat .number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 4px;
}

.stat .label {
    font-size: 10px;
    color: #7f8c8d;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    font-size: 11px;
    color: #2c3e50;
    border: 1px solid #e1e8ed;
}

.menu-dot {
    width: 6px;
    height: 6px;
    background: #FFA500;
    border-radius: 50%;
}

/* Features Icons Section */
.features-icons {
    padding: 40px 0;
    background: #f8f9fa;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
}

.icon-circle i {
    font-size: 20px;
}

.icon-item p {
    font-size: 12px;
    color: #2c3e50;
    line-height: 1.5;
    max-width: 200px;
}

/* Main Features Section */
.main-features {
    padding: 60px 0;
    background: white;
}

.main-features .features-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.phone-mockup-large {
    width: 280px;
    height: 500px;
    background: white;
    border: 8px solid #2c3e50;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.profile-section {
    margin-bottom: 24px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    margin-bottom: 16px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    border-radius: 50%;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-info .name {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
}

.profile-info .class {
    font-size: 10px;
    color: #7f8c8d;
}

.stats-section {
    display: flex;
    gap: 12px;
}

.stat-box {
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    flex: 1;
    border: 1px solid #e1e8ed;
}

.stat-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 9px;
    color: #7f8c8d;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-item-app {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 10px;
    color: #2c3e50;
    border: 1px solid #e1e8ed;
}

.main-features .features-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.4;
}

.main-features .features-text p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Feature Cards Section */
.feature-cards {
    padding: 60px 0;
    background: #f8f9fa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e1e8ed;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.card-icon i {
    font-size: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-card p {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.5;
}

/* App Gallery Section */
.app-gallery {
    padding: 60px 0;
    background: white;
}

.gallery-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.phone-group {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 400px;
}

.phone-item {
    background: white;
    border: 4px solid #2c3e50;
    border-radius: 16px;
    padding: 8px;
    position: relative;
}

.phone-1 { grid-column: 1; grid-row: 1; }
.phone-2 { grid-column: 2; grid-row: 1; }
.phone-3 { grid-column: 1; grid-row: 2; }
.phone-4 { grid-column: 2; grid-row: 2; }
.phone-main { 
    grid-column: 3; 
    grid-row: 1 / 3; 
    width: 120px;
    height: 220px;
    border-width: 6px;
    border-radius: 20px;
}

.phone-screen,
.phone-screen-main {
    width: 100%;
    height: 100%;
    background: #fafafa;
    border-radius: 8px;
    padding: 8px;
    font-size: 8px;
}

.phone-screen-main {
    border-radius: 12px;
    padding: 12px;
}

.screen-header,
.main-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e1e8ed;
    margin-bottom: 8px;
}

.screen-logo,
.main-logo {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    border-radius: 3px;
}

.main-logo {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.screen-header span,
.main-header span {
    font-size: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.main-header span {
    font-size: 10px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-row {
    padding: 4px 6px;
    background: white;
    border-radius: 3px;
    border: 1px solid #e1e8ed;
    font-size: 7px;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.avatar-small {
    width: 12px;
    height: 12px;
    background: #00bcd4;
    border-radius: 50%;
}

.grade-item {
    padding: 3px 6px;
    background: white;
    border-radius: 3px;
    margin-bottom: 2px;
    font-size: 7px;
    border: 1px solid #e1e8ed;
}

.chart-header {
    font-size: 7px;
    color: #2c3e50;
    margin-bottom: 6px;
    text-align: center;
}

.chart-body {
    display: flex;
    gap: 2px;
    align-items: end;
    justify-content: center;
    height: 40px;
}

.chart-bar {
    width: 8px;
    background: #00bcd4;
    border-radius: 2px;
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 80%; }
.chart-bar:nth-child(3) { height: 45%; }

.profile-pic {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    border-radius: 50%;
    margin: 0 auto 8px;
}

.profile-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.student-name {
    font-size: 7px;
    font-weight: 600;
    color: #2c3e50;
}

.student-class {
    font-size: 6px;
    color: #7f8c8d;
}

.welcome-text {
    text-align: center;
    font-size: 10px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.main-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-menu-item {
    padding: 8px;
    background: white;
    border-radius: 6px;
    text-align: center;
    font-size: 9px;
    color: #2c3e50;
    border: 1px solid #e1e8ed;
}

.gallery-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
    line-height: 1.4;
}

.gallery-text p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.faq-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

.faq-number {
    width: 24px;
    height: 24px;
    background: #00bcd4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 12px;
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: white;
}

.stats-subtitle {
    font-size: 13px;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-card .stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.stat-card .stat-number {
    font-size: 24px;
    font-weight: 700;
    margin: 16px 0;
    color: #FFD700;
}

.stat-card p {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 20px 0 5px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 600;
    color: #00bcd4;
}

.footer-logo p {
    font-size: 12px;
    color: #95a5a6;
    margin-top: 4px;
}

.footer-info p {
    font-size: 12px;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .main-features .features-content,
    .gallery-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .main-features .features-text h2,
    .gallery-text h2,
    .faq-title,
    .stats-title {
        font-size: 20px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 360px;
    }
    
    .phone-mockup-large {
        width: 240px;
        height: 420px;
    }
    
    .phone-group {
        grid-template-columns: repeat(2, 1fr);
        height: 300px;
        gap: 15px;
    }
    
    .phone-main {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 100px;
        height: 180px;
    }
    
    .icons-grid,
    .cards-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-list {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .main-features .features-text h2 {
        font-size: 18px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 320px;
    }
    
    .phone-mockup-large {
        width: 220px;
        height: 380px;
    }
    
    .feature-card,
    .faq-item,
    .stat-card {
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon i {
        font-size: 12px;
    }
    
    .phone-group {
        height: 250px;
        gap: 10px;
    }
    
    .phone-main {
        width: 80px;
        height: 150px;
    }
}

/* Smooth animations */
.phone-mockup {
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-4px);
}

.btn {
    transition: all 0.2s ease;
}

.feature-item {
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(4px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #ecf0f1;
}

::-webkit-scrollbar-thumb {
    background: #00bcd4;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00acc1;
}

/* App Preview Section */
.app-preview {
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
    padding: 100px 0;
    color: white;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-text h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.preview-text p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.feature-list i {
    background: rgba(255, 255, 255, 0.2);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.preview-phones {
    position: relative;
}

.phone-1 {
    width: 250px;
    height: 450px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
    border-radius: 50%;
}

.profile-info h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-info p {
    color: #666;
    font-size: 0.9em;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #00BCD4;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f8f9fa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.reason-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 25px;
    color: white;
}

.reason-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: #00BCD4;
    color: white;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-question i {
    color: #00BCD4;
    font-size: 20px;
    margin-top: 5px;
    transition: color 0.3s;
}

.faq-item:hover .faq-question i {
    color: white;
}

.faq-question span {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats .section-header h2,
.stats .section-header p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-card .stat-icon i {
    font-size: 30px;
    color: white;
}

.stat-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-card .stat-number {
    font-size: 3em;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    opacity: 0.9;
    line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .preview-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .phone-mockup {
        width: 250px;
        height: 450px;
    }
    
    .features-grid,
    .reasons-grid,
    .faq-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-list {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2em;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .phone-mockup {
        width: 200px;
        height: 360px;
    }
    
    .feature-card,
    .reason-card,
    .stat-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.reason-card,
.faq-item,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4DD0E1, #00BCD4);
}
