/* ============================================================
   QROWN ENGINEERING — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --orange: #F7941D;
    --orange-dark: #E07A00;
    --navy: #1B3A5C;
    --navy-light: #2A5080;
    --navy-dark: #0F2440;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-800: #1E293B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Background ─────────────────────────────────────────── */
.bg-pattern {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(247,148,29,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(42,80,128,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(247,148,29,0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.grid-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

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

/* ── Announcement Banner ────────────────────────────────── */
.site-announcement {
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 201;
    position: relative;
}
.site-announcement a {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
    opacity: 0.9;
}
.site-announcement a:hover { opacity: 1; }

/* ── Navigation ─────────────────────────────────────────── */

/* Real logo image in nav */
.logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.top-bar {
    background: rgba(15,36,64,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-wordmark {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    user-select: none;
}
.logo-wordmark em {
    font-style: normal;
    color: var(--orange);
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-top: 3px;
}
.gear-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}
.logo-text .name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.2;
}
.logo-text .name span { color: var(--orange); }
.logo-text .tagline {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: 7px !important;
    margin-left: 8px;
    letter-spacing: 0.2px;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--gray-400);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 20px;
    background: rgba(15,36,64,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); }
.mobile-nav .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 12px 20px !important;
    border-radius: 7px !important;
    font-weight: 700 !important;
    text-align: center;
    margin-top: 8px;
    border-bottom: none !important;
}
.mobile-nav.open { display: flex; }

/* ── Typography ─────────────────────────────────────────── */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.section-sub {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.65;
    max-width: 580px;
}
.highlight {
    background: linear-gradient(135deg, var(--orange) 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--gray-400);
}
.mono strong { color: var(--orange); }

/* ── Video Intro Splash ─────────────────────────────────── */
#video-intro {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}
#video-intro.intro-fade-out {
    opacity: 0;
    pointer-events: none;
}
#intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}
#intro-skip {
    position: absolute;
    bottom: 36px;
    right: 36px;
    background: rgba(15,36,64,0.08);
    border: 1px solid rgba(15,36,64,0.2);
    color: var(--navy-dark);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#intro-skip:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
    padding: 72px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Atmospheric background image overlay inside hero */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(30px, 5.5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.page-hero .subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--gray-400);
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    margin-bottom: 64px;
}
.stat-item {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-item .label {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── Sections ───────────────────────────────────────────── */
.section {
    padding: 72px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.section-header {
    margin-bottom: 40px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 12px auto 0; }
.section-header .section-sub { margin-top: 12px; }

/* ── Grids ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.grid-2-fixed { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }

/* ── Service Cards ──────────────────────────────────────── */
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(247,148,29,0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(247,148,29,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}
.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}
.service-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}
.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── Detail Card (service pages) ────────────────────────── */
.detail-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 16px;
}
.detail-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.detail-block p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}
.scope-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.scope-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
}
.scope-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── Tag / Code chips ───────────────────────────────────── */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.tag {
    background: rgba(247,148,29,0.08);
    border: 1px solid rgba(247,148,29,0.18);
    color: var(--orange);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    font-family: 'JetBrains Mono', monospace;
}
.tag.gray {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    color: var(--gray-400);
}
.cred-chip {
    background: rgba(247,148,29,0.08);
    border: 1px solid rgba(247,148,29,0.2);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    font-family: 'JetBrains Mono', monospace;
    display: inline-block;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247,148,29,0.25);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}
.btn-sm {
    font-size: 13px !important;
    padding: 10px 20px !important;
}

/* ── CTA Block ──────────────────────────────────────────── */
.cta-block {
    background: linear-gradient(135deg, rgba(247,148,29,0.09), rgba(27,58,92,0.35));
    border: 1px solid rgba(247,148,29,0.22);
    border-radius: 16px;
    padding: 60px 48px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.cta-block h2 {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.cta-block p {
    color: var(--gray-400);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

/* ── Info Card ──────────────────────────────────────────── */
.info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px;
}
.info-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

/* ── Contact Form ───────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-600); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(247,148,29,0.5); }
.form-group select { cursor: pointer; }
.form-group select option { background: #0F2440; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Contact Info Items ─────────────────────────────────── */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-item .icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(247,148,29,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item .info .label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.contact-item .info a,
.contact-item .info span {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: block;
}
.contact-item .info a:hover { color: var(--orange); }

/* ── States Grid ────────────────────────────────────────── */
.state-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.state-card .abbr {
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 6px;
    font-family: 'JetBrains Mono', monospace;
}
.state-card .full-name {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 8px;
}
.state-card .license {
    font-size: 11px;
    color: var(--gray-600);
    font-family: 'JetBrains Mono', monospace;
}

/* ── Profile Block ──────────────────────────────────────── */
.profile-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}
.profile-info h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}
.profile-info .title {
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
}
.profile-info p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ── Contact Info Block (contact.html) ──────────────────── */
.contact-info-block { display: flex; flex-direction: column; gap: 20px; margin-bottom: 8px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(247,148,29,0.1);
    border: 1px solid rgba(247,148,29,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--orange);
}
.contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}
a.contact-value:hover { color: var(--orange); }

/* ── Section Photo Strip ────────────────────────────────── */
.section-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: brightness(0.78) saturate(0.9);
    display: block;
}
.section-photo .photo-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px;
    background: linear-gradient(to right, rgba(15,36,64,0.7) 0%, rgba(15,36,64,0.2) 50%, rgba(15,36,64,0.7) 100%);
}
.section-photo .photo-caption .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
}
.section-photo .photo-caption p {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--white);
    max-width: 600px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* ── Project Samples Gallery ────────────────────────────── */
.project-samples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 8px;
}
.sample-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    transition: border-color 0.2s;
}
.sample-card:hover { border-color: rgba(247,148,29,0.3); }
.sample-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #0a1628;
}
.sample-card .sample-caption {
    padding: 14px 16px;
}
.sample-card .sample-caption h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}
.sample-card .sample-caption p {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ── Related Services ───────────────────────────────────── */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}
.related-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 18px 20px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.related-card:hover {
    border-color: rgba(247,148,29,0.25);
    background: rgba(255,255,255,0.05);
}
.related-card .icon { font-size: 18px; }
.related-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-200);
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-600); }
.breadcrumb .current { color: var(--white); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    padding: 48px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 36px;
}
.footer-brand .name {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.footer-brand .name span { color: var(--orange); }
.footer-brand p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 300px;
}
.footer-nav {
    display: flex;
    gap: 48px;
}
.footer-nav-group h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.footer-nav-group a {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-nav-group a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom .copyright {
    font-size: 12px;
    color: var(--gray-600);
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}
.social-links a:hover {
    background: rgba(247,148,29,0.12);
    border-color: var(--orange);
    color: var(--orange);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-nav { gap: 32px; }
    .grid-2-fixed { grid-template-columns: 1fr; }
    .stats-bar .stat-item { padding: 0 24px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .profile-block { flex-direction: column; gap: 20px; }
    .stats-bar { gap: 0; }
    .stats-bar .stat-item {
        flex: 1 1 50%;
        padding: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .stats-bar .stat-item:nth-child(2) { border-right: none; }
    .stats-bar .stat-item:last-child { border-bottom: none; border-right: none; }
}
@media (max-width: 640px) {
    .page-hero { padding: 52px 0 44px; }
    .cta-block { padding: 40px 24px; }
    .section { padding: 52px 0; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-nav { flex-direction: column; gap: 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
}
