/* ═══════════════════════════════════════════
   VISHVAURA — Professional Glassmorphism
   Light theme · Colors from reference image
   ═══════════════════════════════════════════ */

:root {
    /* Accent — violet from image's periwinkle-lavender tones */
    --accent:          #7c6fe0;
    --accent-2:        #c46fb8;
    --accent-rgb:      124, 111, 224;
    /* Backgrounds */
    --bg:              #f6f5ff;
    /* Glass surfaces */
    --glass-bg:        rgba(255, 255, 255, 0.55);
    --glass-hover:     rgba(255, 255, 255, 0.72);
    --glass-border:    rgba(255, 255, 255, 0.90);
    --glass-shadow:    0 4px 28px rgba(100, 80, 200, 0.09), 0 1px 4px rgba(0,0,0,0.04);
    --glass-shadow-h:  0 12px 44px rgba(100, 80, 200, 0.15), 0 2px 8px rgba(0,0,0,0.06);
    /* Borders */
    --border:          rgba(120, 100, 200, 0.12);
    /* Typography */
    --text:            #120c2e;
    --text-mid:        #3d3465;
    --text-muted:      #7a7098;
    /* Fonts */
    --font-brand:      'Orbitron', sans-serif;
    --font-display:    'Rajdhani', sans-serif;
    --font-body:       'Inter', system-ui, sans-serif;
    /* Elevation + motion */
    --elev-4:          0 22px 70px rgba(124,111,224,0.22), 0 4px 14px rgba(0,0,0,0.07);
    --rim-glow:        0 0 0 1px rgba(124,111,224,0.18), 0 18px 60px rgba(124,111,224,0.22);
    --ease-out-quart:  cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(120,100,200,0.22); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(120,100,200,0.38); }

/* ── Flowing aurora background (colors from reference image) ─────────
   Two oversized gradient layers drift in opposite directions so the
   color field never repeats — the glass cards refract this moving
   color through their saturate() filter. GPU-only (transform).      */
body::before,
body::after {
    content: '';
    position: fixed;
    inset: -25%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

/* Layer 1 — periwinkle-blue + lavender-violet, drifts clockwise-ish.
   Kept subtle (~40% presence): colour pools softly in the corners so
   most of the page stays clean light lavender. */
body::before {
    background:
        radial-gradient(ellipse 48% 48% at 20% 26%, rgba(99,  118, 220, 0.26) 0%, transparent 52%),
        radial-gradient(ellipse 44% 44% at 80% 20%, rgba(160, 120, 240, 0.22) 0%, transparent 52%);
    animation: auroraFlowA 26s ease-in-out infinite alternate;
}

/* Layer 2 — rose-pink + soft-pink, drifts the other way */
body::after {
    background:
        radial-gradient(ellipse 48% 48% at 82% 80%, rgba(220,  80, 140, 0.24) 0%, transparent 52%),
        radial-gradient(ellipse 44% 44% at 22% 84%, rgba(240,  90, 160, 0.18) 0%, transparent 52%);
    animation: auroraFlowB 32s ease-in-out infinite alternate;
}

@keyframes auroraFlowA {
    0%   { transform: translate3d(0, 0, 0)        scale(1)    rotate(0deg); }
    50%  { transform: translate3d(4%, 3%, 0)      scale(1.15) rotate(4deg); }
    100% { transform: translate3d(-3%, 5%, 0)     scale(1.08) rotate(-3deg); }
}

@keyframes auroraFlowB {
    0%   { transform: translate3d(0, 0, 0)        scale(1.05) rotate(0deg); }
    50%  { transform: translate3d(-5%, -3%, 0)    scale(1.18) rotate(-5deg); }
    100% { transform: translate3d(4%, -4%, 0)     scale(1.1)  rotate(3deg); }
}

/* ── Glass utility · CRYSTAL ───────────────────────────────────────────
   Transparent, see-through glass: low white fill so the flowing aurora
   reads clearly THROUGH the card, high saturate() to intensify that
   colour, a crisp bright rim + inner specular highlight so the edge
   still catches light. This is the single glass style used site-wide.
   (No ::before here — contact-glass owns its ::before.)               */
.glass-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.60);
    box-shadow:
        0 10px 36px rgba(80, 60, 160, 0.10),
        inset 0 1px 1.5px rgba(255, 255, 255, 0.90),
        inset 0 -10px 26px rgba(255, 255, 255, 0.04);
    border-radius: 20px;
}

/* ── Layout ───────────────────────────────────────────────────────── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ═══════ NAVBAR ═══════ */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.85rem 0;
    background: rgba(246, 245, 255, 0.82);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom-color: var(--border);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-svg-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(140deg, #6366f1 0%, #a78bfa 50%, #e879a8 100%);
    padding: 9px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124, 111, 224, 0.35);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.logo:hover .logo-svg-container {
    box-shadow: 0 6px 28px rgba(124, 111, 224, 0.55);
    transform: translateY(-1px);
}

.logo-icon { width: 100%; height: 100%; color: #fff; display: block; }

.logo-text {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #a78bfa 50%, #e879a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-text {
    opacity: 0.85;
}


/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    color: #fff !important;
    background: var(--accent) !important;
    padding: 9px 22px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(124, 111, 224, 0.30);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
    opacity: 0.88 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 24px rgba(124, 111, 224, 0.44) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* ═══════ BUTTONS ═══════ */
.btn {
    padding: 13px 28px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    letter-spacing: 0.1px;
    transition: all 0.22s ease;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(124, 111, 224, 0.30);
}

.btn-primary:hover {
    background: #6a5cd8;
    border-color: #6a5cd8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 111, 224, 0.44);
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--text-mid);
    border-color: var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    border-color: rgba(124,111,224,0.32);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(100,80,200,0.10);
}

/* ═══════ HERO ═══════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* "Available" pill badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    background: rgba(124, 111, 224, 0.08);
    border: 1px solid rgba(124, 111, 224, 0.22);
    padding: 6px 16px 6px 10px;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s ease backwards;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
    flex-shrink: 0;
    animation: livePulse 2.4s ease-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 1.75rem;
    letter-spacing: -2.5px;
    color: var(--text);
    animation: fadeUp 0.6s ease 0.08s backwards;
}

.hero-title span { display: block; }

.text-gradient {
    background: linear-gradient(130deg, #6366f1 0%, #a78bfa 30%, #e879a8 55%, #a78bfa 80%, #6366f1 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 7s linear infinite;
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.85;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.6s ease 0.16s backwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeUp 0.6s ease 0.24s backwards;
}

/* ═══════ SECTIONS ═══════ */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-last { padding-bottom: 140px; }

.section-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 0.85rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
    color: var(--text);
}

/* ═══════ SERVICES ═══════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 44px 40px;
    transition: box-shadow 0.25s ease, transform 0.18s var(--ease-out-quart);
}

/* No flat background on hover — the variant's own translucent fill must
   persist so the glass never flattens. Feedback comes from lift + glow. */
.service-card:hover {
    box-shadow: var(--elev-4), var(--rim-glow);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(124, 111, 224, 0.10);
    border: 1px solid rgba(124, 111, 224, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    transition: background 0.2s, border-color 0.2s;
}

.service-card:hover .service-icon {
    background: rgba(124, 111, 224, 0.17);
    border-color: rgba(124, 111, 224, 0.40);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--text);
    letter-spacing: -0.2px;
}

.service-card p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.78;
}

/* ═══════ OUR WORK / APPS ═══════ */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-card {
    border-radius: 20px;
    padding: 40px 36px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.18s var(--ease-out-quart);
}

/* Keep the transparent glass on hover — only lift + violet glow, no opaque fill */
.app-card:hover {
    box-shadow: var(--elev-4), var(--rim-glow);
    transform: translateY(-4px);
}

.app-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(124,111,224,0.08);
    border: 1px solid rgba(124,111,224,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.app-card:hover .app-icon-box {
    color: var(--accent);
    background: rgba(124,111,224,0.14);
    border-color: rgba(124,111,224,0.38);
}

.app-platform {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.app-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text);
    letter-spacing: -0.2px;
}

.app-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.75;
    flex: 1;
}

.app-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.badge {
    font-family: var(--font-body);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(120,100,200,0.05);
}

.app-arrow {
    position: absolute;
    top: 28px; right: 28px;
    width: 26px; height: 26px;
    color: var(--text-muted);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.25s ease;
}

.app-card:hover .app-arrow {
    opacity: 1;
    transform: translate(0, 0);
    color: var(--accent);
}

/* ═══════ CAREERS ═══════ */
.careers-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 52px;
    align-items: start;
}

.careers-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 8px;
}

.careers-lead {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.85;
    font-weight: 400;
}

.careers-sub {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.80;
}

.careers-status {
    border-radius: 20px;
    padding: 36px;
}

.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    margin-bottom: 12px;
    box-shadow: 0 0 0 3px rgba(120,100,180,0.15);
}

.status-label {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.openings-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 10px;
    border: 1px dashed rgba(120,100,200,0.22);
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: 0.93rem;
    font-weight: 500;
    background: rgba(120,100,200,0.03);
}

.openings-empty svg { flex-shrink: 0; width: 20px; height: 20px; opacity: 0.45; }

.careers-roles { display: flex; flex-direction: column; gap: 12px; }

.roles-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.roles-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ═══════ CONTACT ═══════ */
.contact-glass {
    border-radius: 24px;
    padding: 72px;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 80px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.contact-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(124,111,224,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.contact-left { position: relative; z-index: 1; }

.contact-tag {
    text-align: left !important;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.08;
    margin: 0.85rem 0 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text);
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-email-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email-link:hover { color: var(--accent); }

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 200px;
}

.contact-orb {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124,111,224,0.22), rgba(196,111,184,0.16));
    filter: blur(50px);
}

.contact-icon-stack {
    position: relative;
    width: 160px;
    height: 160px;
}

.ci {
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.ci-1 { top: 0; left: 50%; transform: translateX(-50%); }
.ci-2 { bottom: 0; left: 0; }
.ci-3 { bottom: 0; right: 0; }

/* ═══════ FOOTER ═══════ */
.footer {
    padding: 60px 0 36px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

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

.footer-brand p {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    line-height: 1.75;
}

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

.footer-link-group h4 {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link-group a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.93rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-link-group a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Gradient headline shimmer */
@keyframes textShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hover light-catch sweep */
@keyframes sheenSweep {
    0%   { opacity: 0; transform: skewX(-18deg) translateX(0); }
    15%  { opacity: 1; }
    100% { opacity: 0; transform: skewX(-18deg) translateX(360%); }
}

/* Live status pulse (hero "Available" dot) */
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Diagonal sheen band — parked off-card, swept across on hover */
.service-card::after, .app-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}
.service-card:hover::after, .app-card:hover::after { animation: sheenSweep 0.9s ease forwards; }
/* keep real content above the sheen band */
.service-card > *, .app-card > * { position: relative; z-index: 3; }

/* Signature scroll reveal — crisp + scale, staggered per grid */
.reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.965);
    transition:
        opacity 0.7s var(--ease-out-quart),
        transform 0.7s var(--ease-out-quart);
    transition-delay: var(--reveal-delay, 0s);
    will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: none; }
/* full-width panel: no special blur */
.contact-glass.reveal { }


/* ═══════ REDUCED MOTION — kill ambient motion, keep all content visible ═══════ */
@media (prefers-reduced-motion: reduce) {
    body::before, body::after { animation: none; }
    .text-gradient { animation: none; background-position: 0% center; }
    .badge-dot { animation: none; }
    .service-card:hover::after, .app-card:hover::after { animation: none; opacity: 0; }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: opacity 0.3s ease;
        will-change: auto;
    }
    .service-card:hover, .app-card:hover { transform: none; }
}

/* ═══════ RESPONSIVE: 1024px ═══════ */
@media (max-width: 1024px) {
    .hero-title { font-size: 5.2rem; letter-spacing: -2px; }
    .apps-grid { grid-template-columns: 1fr; }
    .careers-layout { grid-template-columns: 1fr; gap: 36px; }
    .contact-glass { grid-template-columns: 1fr; padding: 56px; }
    .contact-right { display: none; }
}

/* ═══════ RESPONSIVE: 768px ═══════ */
@media (max-width: 768px) {
    .container { padding: 0 24px; }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(246, 245, 255, 0.96);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid var(--border);
        padding: 0.5rem 0;
    }

    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.9rem 24px; }
    .nav-cta {
        background: none !important;
        color: var(--accent) !important;
        box-shadow: none !important;
        padding: 0.9rem 24px !important;
        border-radius: 0 !important;
    }

    .nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

    .hero-title { font-size: 3.6rem; letter-spacing: -1.5px; }
    .hero-desc { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
    .btn { justify-content: center; }

    .section { padding: 80px 0; }
    .section-title { font-size: 2.4rem; }

    .services-grid { grid-template-columns: 1fr; gap: 16px; }

    .contact-glass { padding: 40px 28px; }
    .contact-title { font-size: 2.1rem; }
    .contact-actions { flex-direction: column; align-items: flex-start; }

    .footer-content { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.9rem; letter-spacing: -1px; }
    .section-title { font-size: 2rem; }
}
