/* ═══════════════════════════════════════════════════════
   GS NexaTech — Classic Professional Theme
   Clean light design with navy blue accent
═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --bg:              #ffffff;
    --bg-alt:          #f5f7fc;
    --bg-section:      #eef2fb;
    --surface:         #ffffff;
    --surface-2:       #f9fafb;
    --accent:          #1e40af;
    --accent-mid:      #2563eb;
    --accent-light:    #eff6ff;
    --accent-glow:     rgba(37, 99, 235, 0.12);
    --green:           #059669;
    --cyan:            #0891b2;
    --purple:          #6d28d9;
    --orange:          #d97706;
    --red:             #dc2626;
    --border:          #e2e8f0;
    --border-hover:    #2563eb;
    --muted:           #64748b;
    --muted-2:         #94a3b8;
    --text:            #0f172a;
    --text-secondary:  #1e293b;
    --text-light:      #334155;
    --radius-xl:       24px;
    --radius-lg:       18px;
    --radius-md:       12px;
    --radius-sm:       8px;
    --shadow-sm:       0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-card:     0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-hover:    0 12px 36px rgba(37,99,235,0.14), 0 4px 12px rgba(0,0,0,0.06);
    --transition:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ── Subtle background tint ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(37,99,235,0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 5%, rgba(109,40,217,0.04), transparent 50%);
    z-index: -4;
    pointer-events: none;
}

/* ── Noise overlay — hidden on light theme ── */
.noise-overlay { display: none; }

/* ── Background canvas — hidden on light theme ── */
#bgCanvas { display: none; }

/* ── Custom cursor ── */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent-mid);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 99, 235, 0.35);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.glass-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition);
}

.glass-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 68px;
}

nav { flex: 1; }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
}

.brand-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--accent-mid);
    background: var(--accent-light);
}

/* Active page link */
.nav-link.active-page {
    color: var(--accent-mid) !important;
    background: var(--accent-light) !important;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
    border-radius: var(--radius-md);
    padding: 11px 26px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.btn.primary {
    background: var(--accent-mid);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn.primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn.primary:hover .btn-shine { left: 150%; }

.btn.ghost {
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
}

.btn.ghost:hover {
    border-color: var(--accent-mid);
    color: var(--accent-mid);
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.glow { box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35) !important; }
.pulse-glow { animation: pulse-glow-anim 3s ease-in-out infinite; }

.nav-wrapper .btn.primary { padding: 9px 20px; font-size: 0.85rem; }

/* ── Mobile nav toggle ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover { background: var(--bg-alt); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Scroll indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--border);
    overflow: hidden;
}

.scroll-indicator span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--accent-mid);
    transition: width 0.1s linear;
}

/* ── Main ── */
main { position: relative; z-index: 2; }

/* ── Section base ── */
.section {
    padding: 100px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Eyebrow ── */
.eyebrow {
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--accent-mid);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

/* ── Section heading ── */
.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    margin: 10px 0 18px;
    line-height: 1.18;
    font-weight: 700;
    color: var(--text);
}

.section-heading p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.02rem;
}

/* ── Gradient text — classic navy-to-blue ── */
.gradient-text {
    background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 50%, #1e40af 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.animated-gradient { animation: gradient-shift 6s ease infinite; }
.delay-1 { animation-delay: 0.5s; }

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
.hero {
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 24px 70px;
    background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 55%, #f8faff 100%);
}

.hero-sheen { display: none; }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orb-float 14s ease-in-out infinite;
}

.hero-orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.07), transparent 65%);
    top: -150px; right: -100px;
}

.hero-orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(109,40,217,0.05), transparent 65%);
    bottom: -80px; left: -80px;
    animation-delay: -7s;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 16px; }

.hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.lead {
    color: var(--muted);
    max-width: 500px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-stat { padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }

.hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-mid);
    line-height: 1;
    margin-bottom: 2px;
}

.hero-stat span {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #2563eb 100%);
    border: 1px solid #c7d7ff;
    box-shadow: 0 24px 64px rgba(30,64,175,0.2), 0 4px 16px rgba(0,0,0,0.08);
}

.hero-visual canvas {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.9;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-meta {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.hero-meta p { font-size: 0.7rem; color: var(--muted); margin-bottom: 2px; }
.hero-meta strong { display: block; color: var(--accent); font-size: 0.82rem; }

.hero-badges {
    position: absolute;
    top: 18px; right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.9);
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
    cursor: default;
}

.hero-badge:hover { transform: translateX(-4px); }

.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-dot.online  { background: #10b981; box-shadow: 0 0 6px #10b981; }
.badge-dot.pulse   { background: var(--accent-mid); box-shadow: 0 0 6px var(--accent-mid); animation: dot-pulse 2s ease-in-out infinite; }
.badge-dot.secure  { background: #0891b2; box-shadow: 0 0 6px #0891b2; }

/* ══════════════════════════════════════════════════════
   DETAILS SECTION
══════════════════════════════════════════════════════ */
.details-section {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: 70px 48px 60px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.details-section::after { display: none; }

.details-heading {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 1;
}

.details-heading h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 14px;
    color: var(--text);
    font-weight: 700;
}

.details-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.details-grid article {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.details-grid article:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.details-grid h3 { margin: 0 0 10px; font-size: 1rem; color: var(--text); font-weight: 600; }
.details-grid p  { margin: 0; color: var(--muted); line-height: 1.7; font-size: 0.9rem; }

.details-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.details-footer h4 { margin-bottom: 10px; font-size: 1rem; color: var(--text); font-weight: 600; }
.details-footer p  { max-width: 420px; color: var(--muted); line-height: 1.7; font-size: 0.9rem; }

.details-footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.details-footer li {
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ══════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════ */
.section-services {
    background: var(--bg-section);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 230px;
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-light), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.service-icon {
    font-size: 2rem;
    display: inline-block;
    animation: icon-bounce 5s ease-in-out infinite;
    line-height: 1;
}

.service-card h3 { font-size: 1.05rem; color: var(--text); font-weight: 600; }
.service-card p  { color: var(--muted); line-height: 1.65; font-size: 0.88rem; flex: 1; }

.service-card-arrow {
    font-size: 1rem;
    color: var(--accent-mid);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--transition), transform var(--transition);
    font-weight: 700;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.service-card:hover .service-card-glow  { opacity: 1; }
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════════════ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.feature-icon-wrap {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    border: 1px solid #c7d7ff;
    margin-bottom: 18px;
}

.feature-card h3 { margin-bottom: 10px; font-size: 1rem; color: var(--text); font-weight: 600; }
.feature-card p  { color: var(--muted); line-height: 1.65; font-size: 0.88rem; }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.section-about {
    background: var(--bg-section);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.about-copy h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    margin: 10px 0 18px;
    line-height: 1.25;
    color: var(--text);
    font-weight: 700;
}

.about-copy p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }

.about-copy ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-copy ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.about-copy ul li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-mid);
    flex-shrink: 0;
}

.about-visual {
    position: relative;
    animation: float 9s ease-in-out infinite;
}

.about-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
}

.about-badge {
    position: absolute;
    bottom: 22px; left: 22px;
    background: rgba(255, 255, 255, 0.96);
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.section-testimonials {
    max-width: 1280px;
    margin: 0 auto;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.quote-mark {
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(37, 99, 235, 0.12);
    position: absolute;
    top: 10px; right: 24px;
    line-height: 1;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-style: italic;
    font-size: 0.92rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card cite {
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.cite-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-mid), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-card cite strong { display: block; color: var(--text); font-size: 0.88rem; }
.testimonial-card cite span   { font-size: 0.75rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════ */
.section-contact {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 44px;
    padding: 44px 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.contact-info-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.contact-info-card span { font-size: 1.7rem; }
.contact-info-card h3  { margin: 0; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-info-card p   { margin: 0; color: var(--text-secondary); font-size: 0.9rem; }
.contact-info-card a   { color: var(--accent-mid); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color var(--transition); }
.contact-info-card a:hover { color: var(--accent); }

.contact-form { display: grid; gap: 16px; }

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 500;
    font-size: 0.88rem;
}

.contact-form label span { color: var(--text-light); }

.contact-form input,
.contact-form textarea {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-mid);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-2); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
    background: var(--text);
    position: relative;
    padding: 0 24px 40px;
    margin-top: 60px;
}

.footer-gradient-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-mid), #6d28d9, var(--accent));
    margin-bottom: 48px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand { max-width: 340px; }

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.65; }

.footer-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 8px;
}

/* ══════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════ */
@keyframes wave-bg {
    0%   { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, -14px) scale(1.04); }
    66%       { transform: translate(-14px, 8px) scale(0.97); }
}

@keyframes pulse-glow-anim {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,99,235,0.3); }
    50%       { box-shadow: 0 8px 32px rgba(37,99,235,0.5), 0 0 0 6px rgba(37,99,235,0.08); }
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.7; }
}

/* ══════════════════════════════════════════════════════
   PAGE HERO  (sub-pages)
══════════════════════════════════════════════════════ */
.page-hero {
    min-height: 54vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 24px 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(160deg, #eef2ff 0%, #ffffff 55%, #f5f7ff 100%);
}

.page-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orb-float 14s ease-in-out infinite;
}

.page-hero-orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.07), transparent 65%);
    top: -130px; right: -70px;
}

.page-hero-orb--2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(109,40,217,0.05), transparent 65%);
    bottom: -90px; left: -60px;
    animation-delay: -5s;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero-content .eyebrow { margin-bottom: 16px; }

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.page-hero-content .lead {
    max-width: 560px;
    margin: 0 auto 30px;
}

.page-hero-content .hero-ctas { justify-content: center; }

/* Page hero stats */
.page-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    gap: 0;
}

.page-hero-stat { padding: 0 28px; }
.page-hero-stat:first-child { padding-left: 0; }

.page-hero-stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent-mid);
    line-height: 1;
    margin-bottom: 3px;
}

.page-hero-stat span { font-size: 0.76rem; color: var(--muted); }

.page-hero-stat-divider {
    width: 1px; height: 40px;
    background: var(--border);
}

/* ══════════════════════════════════════════════════════
   FEATURES PAGE
══════════════════════════════════════════════════════ */
.section-features-page { max-width: 1280px; margin: 0 auto; }

.features-pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pillar-card {
    position: relative;
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pillar-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    border-radius: var(--radius-xl);
}

.pillar-card--blue   { border-top: 3px solid var(--accent-mid); }
.pillar-card--blue:hover  { border-color: var(--accent-mid); }
.pillar-card--blue   .pillar-card-glow { background: linear-gradient(160deg, var(--accent-light), transparent 50%); }

.pillar-card--purple { border-top: 3px solid var(--purple); }
.pillar-card--purple:hover { border-color: var(--purple); }
.pillar-card--purple .pillar-card-glow { background: linear-gradient(160deg, rgba(109,40,217,0.07), transparent 50%); }

.pillar-card--cyan   { border-top: 3px solid var(--cyan); }
.pillar-card--cyan:hover   { border-color: var(--cyan); }
.pillar-card--cyan   .pillar-card-glow { background: linear-gradient(160deg, rgba(8,145,178,0.07), transparent 50%); }

.pillar-card--green  { border-top: 3px solid var(--green); }
.pillar-card--green:hover  { border-color: var(--green); }
.pillar-card--green  .pillar-card-glow { background: linear-gradient(160deg, rgba(5,150,105,0.07), transparent 50%); }

.pillar-card:hover .pillar-card-glow { opacity: 1; }

.pillar-header { display: flex; align-items: center; justify-content: space-between; }

.pillar-icon { font-size: 2rem; line-height: 1; }

.pillar-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent-light);
    border: 1px solid #c7d7ff;
    color: var(--accent-mid);
    letter-spacing: 0.05em;
}

.pillar-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.pillar-card > p { color: var(--muted); line-height: 1.7; font-size: 0.9rem; }

.pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.pillar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-light);
}

.pillar-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-mid);
    flex-shrink: 0;
}

.pillar-metric {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.metric-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-mid);
}

.metric-label { font-size: 0.75rem; color: var(--muted); }

/* Comparison table */
.section-comparison { max-width: 900px; margin: 0 auto; }

.comparison-table-wrap {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.comparison-table { width: 100%; border-collapse: collapse; }

.comparison-table th {
    padding: 18px 24px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    background: var(--bg-alt);
}

.comparison-table th:first-child { text-align: left; }

.comparison-table .col-us {
    background: var(--accent-light);
    border-left: 1px solid #c7d7ff;
    border-right: 1px solid #c7d7ff;
}

.th-logo {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.th-badge {
    display: inline-block;
    font-size: 0.62rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(37,99,235,0.1);
    color: var(--accent-mid);
    border: 1px solid #c7d7ff;
}

.comparison-table td {
    padding: 13px 24px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--bg-alt); }
.comparison-table .col-us td { background: rgba(239,246,255,0.5); }

.check   { font-size: 1.1rem; color: var(--green); font-weight: 700; }
.cross   { font-size: 1.1rem; color: var(--red); font-weight: 700; }
.partial { font-size: 1.1rem; color: var(--orange); font-weight: 700; }

/* Extra features */
.section-extra-features { max-width: 1280px; margin: 0 auto; }

.extra-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* CTA Banner */
.cta-banner-section { max-width: 1280px; margin: 0 auto; }

.cta-banner {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid #c7d7ff;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30,64,175,0.25);
}

.cta-banner-orb {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,255,255,0.12), transparent 60%);
    pointer-events: none;
}

.cta-banner-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner-content .eyebrow { color: rgba(255,255,255,0.7); }
.cta-banner-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 12px 0 16px; font-weight: 700; color: #fff; }
.cta-banner-content p { color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 28px; }

.cta-banner-content .btn.primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.cta-banner-content .btn.primary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}

/* ══════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════ */
.service-detail-section { max-width: 1280px; margin: 0 auto; }

.service-detail-section--alt {
    background: var(--bg-section);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    border: 1px solid var(--border);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail-grid--reverse { direction: rtl; }
.service-detail-grid--reverse > * { direction: ltr; }

.service-detail-copy .eyebrow { margin-bottom: 12px; }

.service-detail-copy h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.4rem);
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.22;
    color: var(--text);
    letter-spacing: -0.01em;
}

.service-detail-copy > p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.service-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.service-feature-list li { display: flex; gap: 14px; align-items: flex-start; }

.sfl-icon {
    font-size: 1.3rem;
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    border: 1px solid #c7d7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-list li > div strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 4px; font-weight: 600; }
.service-feature-list li > div p { font-size: 0.83rem; color: var(--muted); line-height: 1.55; margin: 0; }

.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-card {
    width: 100%;
    max-width: 320px;
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    animation: float 8s ease-in-out infinite;
    box-shadow: var(--shadow-hover);
}

.sv-blue   { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.sv-purple { background: linear-gradient(135deg, #4c1d95, #6d28d9); }
.sv-cyan   { background: linear-gradient(135deg, #164e63, #0891b2); }
.sv-green  { background: linear-gradient(135deg, #064e3b, #059669); }

.sv-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.service-visual-card h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 16px; }

.sv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.sv-tags span {
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
}

.sv-stat strong { display: block; font-size: 2rem; font-weight: 800; color: #fff; }
.sv-stat span   { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

@media (max-width: 900px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-detail-grid--reverse { direction: ltr; }
    .service-detail-section--alt  { padding: 50px 24px; }
    .service-detail-visual { order: -1; }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-channels-section { max-width: 1280px; margin: 0 auto; }

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contact-channel-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 30px 26px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-channel-card:hover {
    transform: translateY(-7px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.ccc-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.ccc-icon--blue   { background: var(--accent-light); border: 1px solid #c7d7ff; }
.ccc-icon--green  { background: rgba(5,150,105,0.08);  border: 1px solid rgba(5,150,105,0.2); }
.ccc-icon--purple { background: rgba(109,40,217,0.07); border: 1px solid rgba(109,40,217,0.18); }
.ccc-icon--cyan   { background: rgba(8,145,178,0.07);  border: 1px solid rgba(8,145,178,0.18); }

.contact-channel-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.contact-channel-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.6; flex: 1; }

.ccc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-mid);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color var(--transition), gap var(--transition);
}

.ccc-link:hover { color: var(--accent); gap: 10px; }

/* Contact main grid */
.contact-main-section { max-width: 1280px; margin: 0 auto; }

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.contact-form-panel {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 44px;
    box-shadow: var(--shadow-card);
}

.cfp-header { margin-bottom: 30px; }
.cfp-header h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin: 10px 0 12px; font-weight: 700; color: var(--text); }
.cfp-header p  { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

.contact-form { display: grid; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 500;
    font-size: 0.88rem;
}

.contact-form label span { color: var(--text-light); }
.contact-form label em   { color: var(--red); font-style: normal; }

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
    appearance: none;
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-mid);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--surface);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-2); }

.form-note { font-size: 0.75rem; color: var(--muted-2); text-align: center; margin-top: 4px; }

/* Contact info panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 90px;
}

/* Map placeholder */
.map-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 220px;
    background: var(--bg-alt);
    box-shadow: var(--shadow-card);
    position: relative;
}

.map-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background:
        radial-gradient(circle at 50% 50%, rgba(37,99,235,0.06), transparent 60%),
        repeating-linear-gradient(0deg,  rgba(37,99,235,0.05) 0, rgba(37,99,235,0.05) 1px, transparent 1px, transparent 44px),
        repeating-linear-gradient(90deg, rgba(37,99,235,0.05) 0, rgba(37,99,235,0.05) 1px, transparent 1px, transparent 44px);
}

.map-pin { font-size: 2.2rem; animation: float 4s ease-in-out infinite; }

.map-label { text-align: center; }
.map-label strong { display: block; font-size: 0.92rem; color: var(--text); margin-bottom: 3px; font-weight: 600; }
.map-label span   { font-size: 0.78rem; color: var(--muted); }

/* Quick facts */
.contact-quick-facts {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 26px;
    box-shadow: var(--shadow-card);
}

.contact-quick-facts h3 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 18px; }

.quick-facts-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.quick-facts-list li { display: flex; align-items: flex-start; gap: 12px; }

.qf-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-mid);
    flex-shrink: 0;
    margin-top: 6px;
}

.quick-facts-list li strong { display: block; font-size: 0.86rem; color: var(--text); margin-bottom: 3px; font-weight: 600; }
.quick-facts-list li p      { font-size: 0.79rem; color: var(--muted); line-height: 1.5; margin: 0; }

@media (max-width: 1000px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-info-panel { position: static; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
    .hero-visual { min-height: 300px; }
    .hero { padding: 70px 24px 60px; background: linear-gradient(160deg, #eef2ff, #ffffff); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 12px 16px;
        gap: 2px;
        z-index: 100;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .nav-links.open { display: flex; }

    .nav-links li a {
        display: block;
        padding: 11px 16px;
        border-radius: var(--radius-sm);
        color: var(--text-secondary);
    }

    .nav-toggle { display: flex; }

    .cursor,
    .cursor-follower { display: none; }

    nav { position: static; }

    .section { padding: 70px 16px; }

    .details-section { padding: 48px 20px; }

    .service-grid,
    .feature-grid,
    .testimonial-slider { grid-template-columns: 1fr; }

    .about-grid { padding: 0; }

    .contact-wrapper { padding: 28px 20px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-brand { max-width: 100%; }

    .hero-stats { gap: 4px; }
    .hero-stat  { padding: 0 14px; }

    .features-pillar-grid { grid-template-columns: 1fr; }

    .cta-banner { padding: 48px 22px; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form-panel { padding: 26px 18px; }

    .page-hero { padding: 90px 20px 55px; }
}

@media (max-width: 500px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .page-hero-content h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .page-hero-stats { flex-direction: column; gap: 14px; }
    .page-hero-stat-divider { display: none; }
}
