/* ============================================================
   RCC LLC — Premium B2B Corporate Stylesheet
   ============================================================ */

:root {
    --navy-900: #061a34;
    --navy-800: #0B2545;
    --navy-700: #13315C;
    --navy-600: #1a3a6b;
    --navy-500: #24507f;
    --gold-600: #b88913;
    --gold-500: #D4A017;
    --gold-400: #e3b03a;
    --gold-100: rgba(212, 160, 23, 0.12);
    --white: #FFFFFF;
    --gray-50: #F7F9FC;
    --gray-100: #EEF2F7;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --gray-500: #718096;
    --gray-600: #4A5568;
    --gray-700: #2D3748;
    --ink: #0F1A2E;
    --danger: #C62828;
    --success: #2E7D32;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-xs: 0 1px 2px rgba(11, 37, 69, 0.05);
    --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
    --shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.12);
    --shadow-xl: 0 30px 80px rgba(11, 37, 69, 0.18);
    --shadow-gold: 0 10px 30px rgba(212, 160, 23, 0.35);

    --container: 1240px;
    --header-h: 76px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold-500); color: var(--navy-800); }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    color: var(--navy-800);
    letter-spacing: -0.02em;
    font-weight: 800;
    line-height: 1.15;
}
h1 { font-size: clamp(40px, 5.5vw, 68px); letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 3.8vw, 46px); }
h3 { font-size: 20px; letter-spacing: -0.01em; }
h4 { font-size: 15px; font-weight: 700; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-500);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.kicker::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold-500);
    display: inline-block;
}

.section-sub {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 640px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 0;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    color: var(--navy-800);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.5);
    color: var(--navy-800);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}
.btn-dark {
    background: var(--navy-800);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--navy-700);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--navy-800);
}
.logo-img { height: 56px; width: auto; flex-shrink: 0; display: block; }
.footer .logo-img { height: 64px; filter: brightness(0) invert(1); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-sub {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-500);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}
.hero-logo {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(11, 37, 69, 0.15));
}
.about-visual-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
}

.nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
}
.nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 14px;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s var(--ease);
}
.nav a:hover { color: var(--navy-800); background: var(--gray-50); }

.header-right { display: flex; align-items: center; gap: 20px; }

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    background: var(--gray-100);
    border-radius: 10px;
    gap: 2px;
}
.lang-switch a {
    padding: 7px 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gray-500);
    border-radius: 7px;
    letter-spacing: 0.8px;
    transition: all 0.2s var(--ease);
}
.lang-switch a.active {
    background: var(--navy-800);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(11, 37, 69, 0.2);
}
.lang-switch a:not(.active):hover { color: var(--navy-800); }

.header-cta { display: none; }
@media (min-width: 1100px) { .header-cta { display: inline-flex; } }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy-800);
    margin: 6px 0;
    transition: 0.3s var(--ease);
    border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 140px 0 120px;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.22) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(52, 100, 175, 0.35) 0%, transparent 50%);
    z-index: -2;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    z-index: -1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
.hero-copy { max-width: 720px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    background: rgba(212, 160, 23, 0.12);
    color: var(--gold-400);
    border: 1px solid rgba(212, 160, 23, 0.28);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.hero-badge-dot {
    width: 22px;
    height: 22px;
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .accent {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-meta-item { color: rgba(255, 255, 255, 0.7); font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.hero-meta-item svg { width: 16px; height: 16px; color: var(--gold-500); }

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-shield {
    position: relative;
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 20px 60px rgba(212, 160, 23, 0.4));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.hero-orbit {
    position: absolute;
    inset: -20%;
    border: 1px dashed rgba(212, 160, 23, 0.25);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}
.hero-orbit::before, .hero-orbit::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold-500);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold-500);
}
.hero-orbit::before { top: -6px; left: 50%; }
.hero-orbit::after { bottom: -6px; right: 30%; opacity: 0.5; }
@keyframes rotate { to { transform: rotate(360deg); } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--navy-900);
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.trust-industries {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.trust-industries span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.trust-industries svg { width: 20px; height: 20px; color: var(--gold-500); opacity: 0.8; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 64px 32px;
    gap: 32px;
    position: relative;
}
.stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child { border-right: none; }
.stat-num {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 120px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-head .section-sub { margin: 0 auto; }
.section-alt { background: var(--gray-50); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-copy h2 { margin-bottom: 24px; }
.about-copy p {
    color: var(--gray-600);
    font-size: 16.5px;
    margin-bottom: 18px;
    line-height: 1.75;
}
.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 160, 23, 0.18) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
}
.about-visual-content {
    position: relative;
    text-align: center;
    z-index: 1;
}
.about-visual-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.4);
}
.about-visual-icon svg { width: 48px; height: 48px; color: var(--navy-900); }
.about-visual h3 { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.about-visual p { color: rgba(255, 255, 255, 0.75); font-size: 15px; }

.about-points {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.25s var(--ease);
}
.point:hover {
    border-color: var(--gold-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.point-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gold-100);
    color: var(--gold-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.point-icon svg { width: 16px; height: 16px; }
.point-text { font-size: 14.5px; font-weight: 500; color: var(--navy-800); line-height: 1.5; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 140px; height: 140px;
    background: radial-gradient(circle at top right, var(--gold-100) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    z-index: -1;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 20px rgba(11, 37, 69, 0.2);
}
.service-icon svg { width: 30px; height: 30px; color: var(--gold-500); }
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    transform: scale(1.05) rotate(-4deg);
}
.service-card:hover .service-icon svg { color: var(--navy-900); }

.service-card h3 {
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}
.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gold-500);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s var(--ease);
}
.service-card:hover .learn-more { opacity: 1; transform: translateX(0); }
.service-card .learn-more svg { width: 14px; height: 14px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-500) 100%);
    opacity: 0.25;
    z-index: 0;
}
.process-step { position: relative; text-align: center; }
.process-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--white);
    border: 2px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy-800);
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.15);
}
.process-step:hover .process-num {
    background: var(--gold-500);
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}
.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.process-step p {
    color: var(--gray-600);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-500);
}
.why-num {
    flex-shrink: 0;
    font-size: 40px;
    font-weight: 800;
    color: var(--gold-500);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    opacity: 0.85;
}
.why-body h3 { margin-bottom: 8px; font-size: 19px; }
.why-body p { color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 40%);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    flex-wrap: wrap;
}
.cta-copy h2 { color: var(--white); margin-bottom: 8px; }
.cta-copy p { color: rgba(255, 255, 255, 0.7); font-size: 16px; margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 56px;
    align-items: start;
}
.contact-info { padding-top: 20px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info .section-sub { margin-bottom: 40px; }

.info-list { list-style: none; display: grid; gap: 16px; }
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.25s var(--ease);
}
.info-list li:hover {
    border-color: var(--gold-500);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}
.info-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    color: var(--gold-500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-label { font-size: 11.5px; color: var(--gray-500); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-value { font-size: 15.5px; color: var(--navy-800); font-weight: 600; }

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    position: relative;
}
.contact-form::before {
    content: '';
    position: absolute;
    top: -1px; left: 40px; right: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    border-radius: 3px;
}
.form-title {
    font-size: 20px;
    color: var(--navy-800);
    margin-bottom: 6px;
    font-weight: 700;
}
.form-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}
.form-field { display: block; margin-bottom: 18px; }
.form-field-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-field-label .required { color: var(--gold-500); }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--navy-800);
    background: var(--gray-50);
    border: 1.5px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.25s var(--ease);
    resize: vertical;
    font-weight: 500;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-300);
    font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
    background: var(--white);
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; }
.alert-success { background: #E8F5E9; color: var(--success); border-left: 3px solid var(--success); }
.alert-error { background: #FFEBEE; color: var(--danger); border-left: 3px solid var(--danger); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.4;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer .logo { margin-bottom: 20px; }
.footer .logo-sub { color: var(--white); }
.footer h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.footer ul { list-style: none; display: grid; gap: 12px; font-size: 14.5px; }
.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s var(--ease);
}
.footer ul a:hover { color: var(--gold-500); }
.footer-tag { font-size: 14.5px; line-height: 1.7; max-width: 340px; color: rgba(255, 255, 255, 0.65); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s var(--ease);
}
.footer-social a:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in,
.no-js .reveal {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .hero-shield, .hero-orbit { animation: none !important; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-points { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s var(--ease);
        box-shadow: var(--shadow-lg);
    }
    .nav.open { transform: translateY(0); opacity: 1; }
    .nav a { padding: 14px; font-size: 16px; }
    .burger { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 48px 32px; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 32px; }
    .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 20px; }
    .section { padding: 80px 0; }
    .hero { padding: 90px 0 80px; }
    .why-grid { grid-template-columns: 1fr; }
    .trust-inner { flex-direction: column; gap: 24px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 580px) {
    .container { padding: 0 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .why-card { padding: 28px; }
    .stat-num { font-size: 40px; }
    .hero-meta { gap: 20px; }
}
