/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --radius: 14px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.bg-light { background: var(--bg); }

/* ══════════════════════════════════════════
   GRADIENT TEXT
══════════════════════════════════════════ */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59,130,246,0.35); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: #f0f7ff; transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); }
.btn--sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn--full { width: 100%; justify-content: center; }
.btn--green { background: #10b981; color: #fff; }
.btn--green:hover { background: #059669; }
.btn--orange { background: #f59e0b; color: #fff; }
.btn--orange:hover { background: #d97706; }
.btn--purple { background: #8b5cf6; color: #fff; }
.btn--purple:hover { background: #7c3aed; }
.btn--teal { background: #14b8a6; color: #fff; }
.btn--teal:hover { background: #0d9488; }

/* ══════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}
.nav__logo strong { color: var(--primary); }
.logo-icon { font-size: 1.5rem; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: #eff6ff; }
.nav__link--btn {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 20px;
}
.nav__link--btn:hover { background: var(--primary-dark); }
.nav__link--register {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    padding: 6px 18px;
    border-radius: 8px;
}
.nav__link--register:hover { background: var(--primary); color: #fff !important; }

.nav__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--secondary);
    padding: 6px;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(139,92,246,0.1) 0%, transparent 50%);
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 1.5rem;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    background: rgba(59,130,246,0.2);
    color: #93c5fd;
    border: 1px solid rgba(59,130,246,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero__desc {
    font-size: 1.05rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__stats {
    display: flex;
    gap: 32px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 12px; color: #64748b; }

/* Hero Visual */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__card-wrap { position: relative; width: 320px; height: 320px; }

.hero__circle {
    width: 220px; height: 220px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px rgba(59,130,246,0.4);
    animation: pulse 3s ease-in-out infinite;
}
.circle-inner { text-align: center; }
.circle-icon { font-size: 2.5rem; display: block; }
.circle-text { color: #fff; font-weight: 700; font-size: 1rem; display: block; }
.circle-sub { color: rgba(255,255,255,0.8); font-size: 0.8rem; }

.float-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex; align-items: center; gap: 8px;
    color: #fff; font-size: 13px; font-weight: 600;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}
.float-card i { color: #60a5fa; }
.fc1 { top: 20px; left: -10px; animation-delay: 0s; }
.fc2 { top: 20px; right: -10px; animation-delay: 0.5s; }
.fc3 { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }

.hero__wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
}
.hero__wave svg { display: block; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 60px rgba(59,130,246,0.4); }
    50% { box-shadow: 0 0 80px rgba(59,130,246,0.6); }
}

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
.section__header { text-align: center; margin-bottom: 50px; }
.section__tag {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.section__desc { color: var(--text-light); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    display: block;
    color: var(--text);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.service-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.service-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.service-card__link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.why__item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}
.why__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto 14px;
}
.why__item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.why__item p { font-size: 0.875rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { background: var(--bg); }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-card__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 0.9rem; color: var(--secondary); }
.testimonial-card__author span { font-size: 0.8rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    padding: 70px 0;
}
.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta__text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta__text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { color: #fff !important; }
.footer__brand p { font-size: 0.875rem; margin-top: 14px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    transition: var(--transition);
    font-size: 14px;
}
.footer__social a:hover { background: var(--primary); color: #fff; }
.footer__col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 0.875rem; color: #64748b; transition: var(--transition); }
.footer__col ul li a:hover { color: var(--primary); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; margin-bottom: 12px; }
.footer__contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: #475569;
    flex-wrap: wrap;
    gap: 10px;
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 120px 0 60px;
    text-align: center;
}
.page-hero .section__tag { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { color: #94a3b8; font-size: 1.05rem; }

/* ══════════════════════════════════════════
   SERVICE DETAIL (services page)
══════════════════════════════════════════ */
.service-detail__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}
.service-detail__icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.service-detail__header h2 { font-size: 1.6rem; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.service-detail__header p { color: var(--text-light); }

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.product-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.product-card p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 16px; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about__text .section__tag { margin-bottom: 12px; }
.about__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
.about__text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.about__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.about__stat { text-align: center; background: var(--bg); border-radius: 12px; padding: 16px 8px; }
.about__stat span { display: block; font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.about__stat p { font-size: 0.75rem; color: var(--text-light); margin: 0; }
.about__card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__mini-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}
.about__mini-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.about__mini-card i { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.about__mini-card span { font-size: 0.875rem; font-weight: 600; color: var(--secondary); }

.team__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.3rem; font-weight: 800;
    margin: 0 auto 14px;
}
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 8px; }
.team-card p { font-size: 0.8rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.contact__info h3 { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.contact__info > p { color: var(--text-light); margin-bottom: 28px; line-height: 1.8; }
.contact__items { display: flex; flex-direction: column; gap: 20px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__item-icon {
    width: 44px; height: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact__item h5 { font-size: 0.875rem; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.contact__item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

.contact__form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact__form-wrap h3 { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    outline: none;
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

.map-section { height: 400px; }
.map-section iframe { display: block; }

/* ══════════════════════════════════════════
   HERO ENHANCEMENTS
══════════════════════════════════════════ */
.hero__particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.hero__particles span {
    position:absolute; width:4px; height:4px; background:rgba(96,165,250,0.4);
    border-radius:50%; animation:particleFloat 8s ease-in-out infinite;
}
.hero__particles span:nth-child(1) { top:20%; left:10%; animation-delay:0s; }
.hero__particles span:nth-child(2) { top:60%; left:20%; animation-delay:1.5s; width:6px; height:6px; }
.hero__particles span:nth-child(3) { top:30%; right:15%; animation-delay:3s; }
.hero__particles span:nth-child(4) { top:70%; right:25%; animation-delay:4.5s; width:3px; height:3px; }
.hero__particles span:nth-child(5) { top:50%; left:50%; animation-delay:2s; width:5px; height:5px; }
@keyframes particleFloat {
    0%,100% { transform:translateY(0) scale(1); opacity:0.4; }
    50% { transform:translateY(-30px) scale(1.5); opacity:0.8; }
}

.hero__stat-icon { display:block; font-size:1.2rem; color:#60a5fa; margin-bottom:4px; }

.fc4 { bottom:80px; right:-10px; animation-delay:1.5s; }

.circle-fa-icon { font-size:2.8rem; color:#fff; display:block; margin-bottom:6px; }

/* ══════════════════════════════════════════
   STATS BANNER
══════════════════════════════════════════ */
.stats-banner {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    padding: 40px 0;
}
.stats-banner__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stats-banner__item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stats-banner__item:last-child { border-right: none; }
.stats-banner__icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.stats-banner__num { display:block; font-size:1.5rem; font-weight:800; line-height:1.2; }
.stats-banner__label { font-size:12px; color:rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.how__step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    transition: var(--transition);
}
.how__step:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(59,130,246,0.12); border-color: var(--primary); }
.how__num {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.how__icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 18px;
}
.how__step h4 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.how__step p { font-size: 0.875rem; color: var(--text-light); }
.how__arrow {
    font-size: 1.5rem;
    color: #cbd5e1;
    padding: 0 16px;
    flex-shrink: 0;
}

/* Footer logo */
.footer__logo-wrap { display:inline-block; margin-bottom:14px; }

/* Footer col icon */
.footer__col h4 i { margin-right:6px; color:var(--primary); font-size:13px; }
.footer__col ul li a i { margin-right:6px; font-size:10px; color:#475569; }
.footer__col ul li a:hover i { color:var(--primary); }

@media (max-width: 992px) {
    .stats-banner__grid { grid-template-columns: repeat(2,1fr); }
    .how__grid { flex-direction:column; gap:30px; }
    .how__arrow { transform:rotate(90deg); }
    .how__step { max-width:100%; width:100%; }
}
@media (max-width: 600px) {
    .stats-banner__grid { grid-template-columns: 1fr 1fr; }
    .stats-banner__item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); padding:14px; }
}
@media (max-width: 992px) {
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__visual { display: none; }
    .hero__btns { justify-content: center; }
    .hero__stats { justify-content: center; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about__split { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .nav__menu.open { transform: translateY(0); }
    .nav__toggle { display: block; }
    .section { padding: 60px 0; }
    .footer__grid { grid-template-columns: 1fr; }
    .cta__inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .about__stats { grid-template-columns: repeat(2, 1fr); }
    .hero__stats { gap: 20px; }
}

@media (max-width: 480px) {
    .services__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr 1fr; }
    .contact__form-wrap { padding: 24px 18px; }
}
