/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --text: #334155;
    --text-light: #64748b;
    --text-white: #f8fafc;
    --bg: #ffffff;
    --bg-light: #f1f5f9;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left a { color: var(--text-white); opacity: 0.85; }
.top-bar-left a:hover { opacity: 1; }
.top-bar-left i { margin-right: 6px; color: var(--accent); }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
    color: var(--text-white);
    opacity: 0.7;
    font-size: 0.9rem;
}
.top-bar-right a:hover { opacity: 1; color: var(--accent); }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; }
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}
.nav-menu { display: flex; gap: 5px; }
.nav-menu a {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.06);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
    max-width: 700px;
}
.hero-badge {
    display: inline-block;
    background: rgba(37,99,235,0.2);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(6,182,212,0.3);
}
.hero h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 35px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 5px;
}
.hero-stat h3 span { color: var(--accent); }
.hero-stat p { color: #94a3b8; font-size: 0.9rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-dark {
    background: var(--secondary);
    color: white;
}
.btn-dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: white; }

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}
.section-header .label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image-box {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 50px;
    color: white;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-image-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.about-image-box i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}
.about-image-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.about-image-box p {
    opacity: 0.9;
    font-size: 1.1rem;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}
.about-badge h4 { font-size: 2rem; color: var(--accent); }
.about-badge p { font-size: 0.85rem; color: #94a3b8; }
.about-content .label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}
.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.about-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.about-feature i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.why-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}
.why-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}
.why-card h3 { color: white; font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: #94a3b8; font-size: 0.95rem; }

/* ===== TECHNOLOGIES ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}
.tech-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.tech-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.tech-item p { font-weight: 500; font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: white; font-size: 2.5rem; margin-bottom: 15px; }
.cta p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.contact-info-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(6,182,212,0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-card h4 { font-size: 1.05rem; margin-bottom: 5px; }
.contact-info-card p { color: var(--text-light); font-size: 0.95rem; }

.contact-form {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg-light);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    background: var(--bg);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== PAGE HEADER (Inner Pages) ===== */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 10px;
    position: relative;
}
.page-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    position: relative;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: #64748b; }

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.team-card-img {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-img i { font-size: 4rem; color: white; opacity: 0.8; }
.team-card-body { padding: 25px; }
.team-card-body h3 { font-size: 1.15rem; margin-bottom: 5px; }
.team-card-body .role { color: var(--primary); font-size: 0.9rem; font-weight: 500; }

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}
.timeline-dot {
    position: absolute;
    left: 21px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: var(--shadow);
}
.timeline-item h4 { font-size: 1.1rem; margin-bottom: 5px; }
.timeline-item .year { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.timeline-item p { color: var(--text-light); margin-top: 5px; }

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 60px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo .logo-text { color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; }
.footer-logo .logo-icon {
    width: 38px; height: 38px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i { color: var(--accent); margin-top: 4px; font-size: 0.9rem; }
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.9rem;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.value-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.93rem; }

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-detail-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.service-detail-top {
    background: var(--gradient);
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}
.service-detail-top i { font-size: 2.5rem; opacity: 0.9; }
.service-detail-top h3 { color: white; font-size: 1.3rem; }
.service-detail-body {
    padding: 30px;
}
.service-detail-body p {
    color: var(--text-light);
    margin-bottom: 15px;
}
.service-detail-body ul {
    list-style: none;
}
.service-detail-body ul li {
    padding: 6px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-detail-body ul li i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    counter-reset: process;
}
.process-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-card::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    opacity: 0.8;
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-card p { color: var(--text-light); font-size: 0.93rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 30px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 15px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }
    .nav-menu.active { display: flex; }
    .hero { padding: 70px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2rem; }
    .cta h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-buttons { flex-direction: column; }
    .section-header h2 { font-size: 1.6rem; }
    .container { padding: 0 15px; }
}
