/* ==========================================================================
   AK88 – Ultra Modern 3D Design v2
   ========================================================================== */

:root {
    --navy: #1A3A5C;
    --navy-dark: #0A1628;
    --navy-mid: #132D4A;
    --gold: #C8901A;
    --gold-light: #E8A020;
    --gold-bright: #F5B83D;
    --cream: #F7F4EE;
    --cream-dark: #EDE8DD;
    --white: #ffffff;
    --text: #1C1C1C;
    --text-muted: #6B7280;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-number: 'Bebas Neue', Impact, sans-serif;
    --container: 1220px;
    --radius: 20px;
    --radius-sm: 12px;
    --ease: cubic-bezier(.4,0,.2,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
    --ease-spring: cubic-bezier(.22,1,.36,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.12; }
h2 em, h1 em { color: var(--gold); font-style: italic; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ==========================================================================
   SECTION BASE
   ========================================================================== */
.section { padding: 140px 0; position: relative; overflow: hidden; }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section__header { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.section__header--light .section__title { color: var(--white); }
.section__tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding: 6px 28px;
    background: rgba(200,144,26,.08);
    border-radius: 50px;
    border: 1px solid rgba(200,144,26,.15);
}
.section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    letter-spacing: -.02em;
}
.section__subtitle {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative section dividers */
.section--dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section--dark::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,144,26,.3), transparent);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .4s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: .02em;
}
.btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,.3), transparent, rgba(255,255,255,.1));
    opacity: 0;
    transition: opacity .4s;
}
.btn:hover::after { opacity: 1; }
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-bright));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: var(--white);
    border-color: rgba(200,144,26,.4);
    box-shadow: 0 4px 24px rgba(200,144,26,.3), inset 0 1px 0 rgba(255,255,255,.2);
    text-shadow: 0 1px 2px rgba(0,0,0,.15);
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.btn--gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(200,144,26,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn--outline {
    background: rgba(255,255,255,.05);
    color: var(--white);
    border-color: rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
}
.btn--outline:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255,255,255,.1);
}
.btn--lg { padding: 20px 48px; font-size: 1.08rem; }
.btn--sm { padding: 10px 24px; font-size: .85rem; }
.btn--full { width: 100%; }

/* ==========================================================================
   1. NAV
   ========================================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,22,40,.4);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: all .5s var(--ease);
}
.nav.scrolled {
    background: rgba(10,22,40,.92);
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
    border-bottom-color: rgba(200,144,26,.1);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 120px;
    position: relative;
}
.nav__logo {
    position: absolute;
    left: 28px;
    top: -10px;
    z-index: 1002;
}
.nav__logo-img {
    height: 180px;
    width: 180px;
    background: var(--white);
    border-radius: 50%;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2), 0 0 0 4px rgba(255,255,255,.15);
    transition: all .5s var(--ease);
    object-fit: contain;
}
.nav__logo-img:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.25), 0 0 0 5px rgba(200,144,26,.3);
    transform: scale(1.06);
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 38px;
}
.nav__menu a {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    transition: all .4s var(--ease);
    position: relative;
    letter-spacing: .03em;
}
.nav__menu a:not(.btn):hover,
.nav__menu a:not(.btn).active { color: var(--white); }
.nav__menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: all .4s var(--ease);
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav__menu a:not(.btn):hover::after,
.nav__menu a:not(.btn).active::after { width: 100%; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .4s var(--ease);
    transform-origin: center;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-dark);
    color: var(--white);
    overflow: visible;
    padding: 100px 0;
}

/* Animated gradient mesh */
.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4;
}
.hero__orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, rgba(200,144,26,.3) 40%, transparent 70%);
    top: -15%; right: -8%;
    animation: orb1 18s ease-in-out infinite;
}
.hero__orb--2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #2563EB 0%, rgba(37,99,235,.2) 50%, transparent 70%);
    bottom: -15%; left: 5%;
    animation: orb2 22s ease-in-out infinite;
}
.hero__orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--gold-bright) 0%, transparent 70%);
    top: 35%; left: 35%;
    animation: orb3 15s ease-in-out infinite;
}
@keyframes orb1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .4; }
    33% { transform: translate(40px, -60px) scale(1.1); opacity: .5; }
    66% { transform: translate(-30px, 30px) scale(.9); opacity: .35; }
}
@keyframes orb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -30px) scale(1.05); }
    66% { transform: translate(50px, 40px) scale(.95); }
}
@keyframes orb3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .3; }
    50% { transform: translate(30px, -40px) scale(1.15); opacity: .45; }
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,144,26,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,144,26,.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 20%, transparent 70%);
    animation: gridPan 30s linear infinite;
}
@keyframes gridPan {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

/* Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-light);
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: .6; }
    90% { opacity: .6; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,144,26,.1);
    color: var(--gold-light);
    padding: 10px 24px;
    border-radius: 60px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    border: 1px solid rgba(200,144,26,.2);
    backdrop-filter: blur(8px);
}
.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}

.hero__title {
    font-size: clamp(30px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.hero__title em {
    color: var(--gold-bright);
    font-style: italic;
    position: relative;
}
.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 3px;
    opacity: .5;
}

.hero__sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.55);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero__cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Floating cards - glassmorphism */
.hero__visual {
    position: relative;
    height: 450px;
    perspective: 1200px;
}
.hero__float-card {
    position: absolute;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 30px 36px;
    transition: all .5s var(--ease);
    transform-style: preserve-3d;
    overflow: hidden;
}
/* Card shine effect */
.hero__float-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, transparent 0%, rgba(200,144,26,.08) 10%, transparent 20%);
    animation: cardShine 8s linear infinite;
}
@keyframes cardShine { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.hero__float-card:hover {
    border-color: rgba(200,144,26,.5);
    box-shadow: 0 0 60px rgba(200,144,26,.2), 0 20px 60px rgba(0,0,0,.3);
}
.hero__float-card--1 {
    top: 5%; right: 0;
    animation: float1 7s ease-in-out infinite;
}
.hero__float-card--2 {
    top: 38%; right: 22%;
    animation: float2 8s ease-in-out infinite;
    animation-delay: -2.5s;
}
.hero__float-card--3 {
    bottom: 3%; right: 3%;
    animation: float3 9s ease-in-out infinite;
    animation-delay: -5s;
}
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    25% { transform: translateY(-18px) rotateX(4deg) rotateY(-4deg); }
    75% { transform: translateY(8px) rotateX(-2deg) rotateY(2deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    30% { transform: translateY(-22px) rotateX(-3deg) rotateY(5deg); }
    70% { transform: translateY(10px) rotateX(2deg) rotateY(-3deg); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    40% { transform: translateY(-14px) rotateX(5deg) rotateY(-3deg); }
    80% { transform: translateY(6px) rotateX(-3deg) rotateY(4deg); }
}

.hero__float-num {
    font-family: var(--font-number);
    font-size: 3.2rem;
    color: var(--gold-bright);
    display: block;
    line-height: 1;
    letter-spacing: .03em;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(200,144,26,.4);
}
.hero__float-label {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-top: 6px;
    display: block;
    position: relative;
    z-index: 1;
    letter-spacing: .03em;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}
.hero__scroll span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,255,255,.25);
    display: block;
    margin-bottom: 10px;
}
.hero__scroll-line {
    width: 1px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    background: rgba(200,144,26,.15);
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold-bright));
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ==========================================================================
   3. STATS
   ========================================================================== */
.stats {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
    position: relative;
}
.stats::before,
.stats::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats::before { top: 0; }
.stats::after { bottom: 0; }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.stats__card { perspective: 1000px; }
.stats__card-inner {
    background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 44px 28px;
    text-align: center;
    transition: all .5s var(--ease);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}
/* Hover glow ring */
.stats__card-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold-light));
    opacity: 0;
    transition: opacity .5s;
    z-index: -1;
}
.stats__card-inner:hover::before { opacity: 1; }
.stats__card-inner::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius) - 1px);
    background: var(--navy-mid);
    z-index: -1;
    transition: background .5s;
}
.stats__card-inner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(200,144,26,.15);
}

.stats__number {
    font-family: var(--font-number);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    color: var(--gold-bright);
    line-height: 1;
    display: block;
    letter-spacing: .04em;
    text-shadow: 0 0 40px rgba(200,144,26,.3);
    position: relative;
    z-index: 1;
}
.stats__label {
    display: block;
    margin-top: 10px;
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .03em;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   4. SPECJALIZACJE
   ========================================================================== */
.spec {
    background: var(--cream);
    position: relative;
}
/* Decorative circles */
.spec::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,144,26,.06) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.spec::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,58,92,.04) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    pointer-events: none;
}

.spec__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.spec__card { perspective: 1000px; }
.spec__card-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    transition: all .5s var(--ease);
    transform-style: preserve-3d;
    border: 1px solid rgba(26,58,92,.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}
/* Gold gradient border on hover */
.spec__card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 0 0 4px 0;
    transition: height .5s var(--ease);
}
.spec__card-inner:hover::before { height: 100%; }
.spec__card-inner:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0,0,0,.1), 0 0 0 1px rgba(200,144,26,.15);
}

.spec__icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(200,144,26,.08);
    border-radius: 14px;
    transition: all .5s var(--ease);
}
.spec__card-inner:hover .spec__icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(200,144,26,.3);
}
.spec__icon svg { width: 100%; height: 100%; }

.spec__card-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}
.spec__range {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.spec__amount {
    font-family: var(--font-number);
    font-size: 1.4rem;
    color: var(--navy);
    margin: 6px 0 14px;
    letter-spacing: .03em;
}
.spec__desc {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   5. PROCESS
   ========================================================================== */
.process__timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.process__line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(200,144,26,.05));
}
/* Animated dash on line */
.process__line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-bright), transparent);
    animation: lineGlow 3s ease-in-out infinite;
}
@keyframes lineGlow {
    0% { top: -60px; }
    100% { top: calc(100% + 60px); }
}

.process__step {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 44px;
    position: relative;
}
.process__step:last-child { margin-bottom: 0; }
.process__dot {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(200,144,26,.15), 0 4px 24px rgba(200,144,26,.3);
    transition: all .5s var(--ease);
}
.process__step:hover .process__dot {
    box-shadow: 0 0 0 10px rgba(200,144,26,.2), 0 8px 40px rgba(200,144,26,.4);
    transform: scale(1.1);
}
.process__dot span {
    font-family: var(--font-number);
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: .03em;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.process__card {
    flex: 1;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 32px 36px;
    transition: all .5s var(--ease);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}
.process__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity .5s;
}
.process__card:hover::before { opacity: 1; }
.process__card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(200,144,26,.3);
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(200,144,26,.1);
}
.process__card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 8px;
}
.process__card p {
    font-size: .92rem;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
}

/* ==========================================================================
   6. TIMELINE / TERMINY
   ========================================================================== */
.timeline {
    background: var(--cream);
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,144,26,.04) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.timeline__track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}
.timeline__line {
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(200,144,26,.1));
}
.timeline__item {
    display: flex;
    gap: 44px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.timeline__item:last-child { margin-bottom: 0; }
.timeline__item::before {
    content: '';
    position: absolute;
    left: 93px;
    top: 22px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--cream);
    z-index: 2;
    transition: all .5s var(--ease);
    box-shadow: 0 0 0 3px rgba(200,144,26,.2);
}
.timeline__item:hover::before {
    box-shadow: 0 0 0 6px rgba(200,144,26,.3), 0 0 20px rgba(200,144,26,.4);
    transform: scale(1.2);
}
.timeline__item--highlight::before {
    background: var(--gold-bright);
    box-shadow: 0 0 0 4px rgba(200,144,26,.3), 0 0 25px rgba(200,144,26,.5);
    animation: pulseHighlight 2s ease-in-out infinite;
}
@keyframes pulseHighlight {
    0%, 100% { box-shadow: 0 0 0 4px rgba(200,144,26,.3), 0 0 15px rgba(200,144,26,.3); }
    50% { box-shadow: 0 0 0 8px rgba(200,144,26,.15), 0 0 35px rgba(200,144,26,.5); }
}
.timeline__date {
    flex-shrink: 0;
    width: 80px;
    font-family: var(--font-number);
    font-size: 1.05rem;
    color: var(--gold);
    padding-top: 18px;
    letter-spacing: .05em;
}
.timeline__card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(26,58,92,.04);
    transition: all .5s var(--ease);
    margin-left: 32px;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}
.timeline__card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, rgba(200,144,26,.06), transparent 70%);
    pointer-events: none;
}
.timeline__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
    border-color: rgba(200,144,26,.2);
}
.timeline__badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.timeline__badge--hot {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200,144,26,.3);
    animation: badgeGlow 2s ease-in-out infinite;
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(200,144,26,.3); }
    50% { box-shadow: 0 4px 24px rgba(200,144,26,.5); }
}
.timeline__card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.timeline__card p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   7. ACHIEVEMENTS
   ========================================================================== */
.achievements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.achievements__card { perspective: 1000px; }
.achievements__card-inner {
    background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    transition: all .5s var(--ease);
    transform-style: preserve-3d;
    height: 100%;
    position: relative;
    overflow: hidden;
}
/* Animated border gradient */
.achievements__card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, var(--gold) 50%, transparent 70%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s;
    animation: borderRotate 4s linear infinite paused;
}
.achievements__card-inner:hover::before {
    opacity: 1;
    animation-play-state: running;
}
@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
.achievements__card-inner:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(200,144,26,.12);
}

.achievements__num {
    font-family: var(--font-number);
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    color: var(--gold-bright);
    display: block;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: .04em;
    text-shadow: 0 0 40px rgba(200,144,26,.3);
}
.achievements__card-inner h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .02em;
}
.achievements__card-inner p {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
}

/* ==========================================================================
   8. CONTACT
   ========================================================================== */
.contact {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: start;
}
.contact__form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,.06);
    border: 1px solid rgba(26,58,92,.04);
    position: relative;
    overflow: hidden;
}
.contact__form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200%;
    animation: gradientShift 4s ease infinite;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: .82rem;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(26,58,92,.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: all .4s var(--ease);
    background: var(--cream);
    color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 5px rgba(200,144,26,.08);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,114,128,.5); }
.form-group textarea { resize: vertical; min-height: 110px; }

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact__info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(26,58,92,.04);
    transition: all .5s var(--ease);
}
.contact__info-card:hover {
    transform: translateY(-6px) translateX(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.08);
    border-color: rgba(200,144,26,.15);
}
.contact__info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200,144,26,.25);
    transition: all .5s var(--ease);
}
.contact__info-card:hover .contact__info-icon {
    transform: rotate(-8deg) scale(1.1);
}
.contact__info-icon svg { width: 22px; height: 22px; }
.contact__info-card h4 {
    font-family: var(--font-body);
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.contact__info-card a,
.contact__info-card > div > p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}
.contact__info-card a:hover { color: var(--gold); }

.contact__info-card--cta {
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}
.contact__info-card--cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,144,26,.15), transparent 70%);
    pointer-events: none;
}
.contact__info-card--cta h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-bright);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
.contact__info-card--cta p {
    font-size: .92rem;
    color: rgba(255,255,255,.55) !important;
    font-weight: 400 !important;
    line-height: 1.65;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.5);
    padding: 72px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,144,26,.3), transparent);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(200,144,26,.2));
    margin-bottom: 16px;
}
.footer__brand p {
    font-size: .92rem;
    max-width: 320px;
    line-height: 1.6;
}
.footer__links h4 {
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.footer__links li { padding: 6px 0; }
.footer__links a {
    font-size: .9rem;
    transition: all .4s var(--ease);
    position: relative;
}
.footer__links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .4s var(--ease);
}
.footer__links a:hover { color: var(--gold-bright); }
.footer__links a:hover::after { width: 100%; }
.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: .78rem;
    opacity: .35;
}

/* ==========================================================================
   CHATBOT
   ========================================================================== */
.chat {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9997;
}
.chat__toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(200,144,26,.4), 0 0 0 0 rgba(200,144,26,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s var(--ease);
    position: relative;
    animation: chatPulse 3s ease-in-out infinite;
}
@keyframes chatPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(200,144,26,.4), 0 0 0 0 rgba(200,144,26,.3); }
    50% { box-shadow: 0 8px 32px rgba(200,144,26,.4), 0 0 0 12px rgba(200,144,26,0); }
}
.chat.open .chat__toggle { animation: none; }
.chat__toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(200,144,26,.55);
}
.chat__toggle-icon {
    width: 26px;
    height: 26px;
    color: var(--white);
    position: absolute;
    transition: all .4s var(--ease);
}
.chat__toggle-icon--close { opacity: 0; transform: rotate(-90deg) scale(.5); }
.chat.open .chat__toggle-icon--open { opacity: 0; transform: rotate(90deg) scale(.5); }
.chat.open .chat__toggle-icon--close { opacity: 1; transform: rotate(0) scale(1); }

.chat__window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    max-height: 540px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,.2), 0 0 0 1px rgba(26,58,92,.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px) scale(.9);
    pointer-events: none;
    transition: all .4s var(--ease-spring);
}
.chat.open .chat__window {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.chat__header {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.chat__header-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(200,144,26,.3));
}
.chat__header strong { font-size: .92rem; display: block; }
.chat__header span { font-size: .72rem; opacity: .5; }
.chat__messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 380px;
    min-height: 220px;
    scrollbar-width: thin;
    scrollbar-color: rgba(26,58,92,.1) transparent;
}
.chat__msg {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: .88rem;
    line-height: 1.55;
    animation: msgIn .4s var(--ease-spring);
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(12px) scale(.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat__msg--bot {
    background: var(--cream);
    color: var(--text);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.chat__msg--user {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.chat__msg--typing {
    background: var(--cream);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    display: flex;
    gap: 5px;
    padding: 18px 22px;
}
.chat__msg--typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .4;
    animation: typeDot 1.4s ease-in-out infinite;
}
.chat__msg--typing span:nth-child(2) { animation-delay: .15s; }
.chat__msg--typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typeDot {
    0%, 60%, 100% { transform: translateY(0); opacity: .3; }
    30% { transform: translateY(-8px); opacity: 1; }
}
.chat__input {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid rgba(26,58,92,.06);
    background: var(--white);
}
.chat__input input {
    flex: 1;
    border: 2px solid rgba(26,58,92,.08);
    border-radius: 50px;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: .88rem;
    outline: none;
    transition: all .4s var(--ease);
    background: var(--cream);
}
.chat__input input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200,144,26,.08);
}
.chat__input button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s var(--ease);
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(200,144,26,.2);
}
.chat__input button:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(200,144,26,.4); }
.chat__input button svg { width: 18px; height: 18px; color: var(--white); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
[data-anim] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s var(--ease), transform .8s var(--ease-spring);
}
[data-anim="fade-left"] { transform: translateX(50px); }
[data-anim="fade-right"] { transform: translateX(-50px); }
[data-anim="scale-up"] { transform: scale(.9); }
[data-anim].visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Magnetic cursor effect placeholder */
[data-tilt] {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Custom cursor */
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform .15s var(--ease);
    mix-blend-mode: difference;
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(200,144,26,.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: all .2s var(--ease);
    mix-blend-mode: difference;
}
.cursor-ring.hovering {
    width: 56px; height: 56px;
    border-color: var(--gold);
    background: rgba(200,144,26,.06);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .nav__logo { left: 20px; top: -5px; }
    .nav__logo-img { height: 140px; width: 140px; padding: 18px; }
    .nav__inner { height: 100px; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { height: 300px; }
    .spec__grid { grid-template-columns: repeat(2, 1fr); }
    .achievements__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 768px) {
    /* Hide top nav completely */
    .nav {
        top: auto;
        bottom: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
        height: auto;
    }
    .nav.scrolled { background: none; box-shadow: none; border-bottom-color: transparent; }
    .nav__inner { height: auto; justify-content: center; flex-direction: column; padding: 0; }
    .nav__logo { display: none; }
    .nav__toggle { display: none; }

    /* Bottom tab bar */
    .nav__menu {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        width: 100%;
        background: rgba(10,22,40,.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 10px 4px;
        padding-bottom: max(14px, env(safe-area-inset-bottom, 14px));
        border-top: 1px solid rgba(200,144,26,.15);
        box-shadow: 0 -4px 30px rgba(0,0,0,.4);
    }
    .nav__menu li { flex: 1; text-align: center; }
    .nav__menu a {
        font-size: .6rem !important;
        color: rgba(255,255,255,.5) !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 4px 0 !important;
        letter-spacing: .03em;
        transition: color .3s;
        border: none !important;
        background: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .nav__menu a:not(.btn)::after { display: none !important; }
    .nav__menu a.active,
    .nav__menu a:hover { color: var(--gold-bright) !important; }

    /* Tab icons */
    .nav__menu a::before {
        content: '' !important;
        display: block !important;
        width: 22px;
        height: 22px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: .55;
        transition: opacity .3s;
    }
    .nav__menu a:hover::before,
    .nav__menu a.active::before { opacity: 1; }
    .nav__menu li:nth-child(1) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E8A020' stroke-width='2'%3E%3Cpath d='M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6'/%3E%3C/svg%3E");
    }
    .nav__menu li:nth-child(2) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E8A020' stroke-width='2'%3E%3Cpath d='M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z'/%3E%3C/svg%3E");
    }
    .nav__menu li:nth-child(3) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E8A020' stroke-width='2'%3E%3Cpath d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4'/%3E%3C/svg%3E");
    }
    .nav__menu li:nth-child(4) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E8A020' stroke-width='2'%3E%3Cpath d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E");
    }
    .nav__menu li:nth-child(5) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E8A020' stroke-width='2'%3E%3Cpath d='M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z'/%3E%3C/svg%3E");
    }
    /* CTA button - raised circle */
    .nav__menu li:nth-child(6) a {
        background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
        color: var(--white) !important;
        border-radius: 50% !important;
        width: 48px;
        height: 48px;
        margin: -18px auto 0;
        padding: 0 !important;
        justify-content: center;
        font-size: 0 !important;
        box-shadow: 0 4px 20px rgba(200,144,26,.4) !important;
    }
    .nav__menu li:nth-child(6) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
        opacity: 1 !important;
    }

    /* Content - no top padding needed, hero starts from top */
    .hero { padding: 40px 0 60px; min-height: auto; }
    .hero__visual { display: none; }
    .hero__title { font-size: clamp(24px, 7vw, 40px); }
    .section { padding: 70px 0; }
    .section__header { margin-bottom: 48px; }
    .spec__grid, .achievements__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .process__line { left: 32px; }
    .timeline__line { display: none; }
    .timeline__item { flex-direction: column; gap: 8px; }
    .timeline__item::before { display: none; }
    .timeline__date { width: auto; }
    .timeline__card { margin-left: 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__logo { height: 40px; width: 40px; padding: 4px; border-radius: 50%; background: var(--white); }
    .footer { padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
    .chat__window { width: calc(100vw - 32px); right: -8px; max-height: 55vh; bottom: 68px; }
    .chat { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); right: 16px; }
    .chat__toggle { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
    .nav__inner { height: 60px; }
    .nav__logo-img { height: 46px; width: 46px; padding: 5px; }
    .hero { padding: 76px 0 48px; }
    .hero__sub { font-size: 1rem; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .stats__grid { grid-template-columns: 1fr; }
    .stats__card-inner { padding: 28px 20px; }
    .process__step { flex-direction: column; align-items: center; text-align: center; }
    .process__line { display: none; }
    .process__card { width: 100%; }
    .contact__form { padding: 24px 16px; }
    .section { padding: 56px 0; }
    .container { padding: 0 16px; }
}
