/* ============================================
   FNQ Controls Tech — Shared Styles
   ============================================ */

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

:root {
    --navy: #0a1628;
    --navy-mid: #111e36;
    --charcoal: #1a2744;
    --slate: #2a3a5c;
    --accent: #0091ff;
    --accent-glow: #339dff;
    --accent-dark: #0070cc;
    --amber: #f59e0b;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --section-pad: 80px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-glow); }

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

/* ============================================
   Navigation
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-cta-btn {
    background: var(--accent);
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.nav-cta-btn:hover {
    background: var(--accent-dark);
    color: var(--white) !important;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(10, 22, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 4px;
    list-style: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--gray-300);
    border-radius: 0;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 22, 40, 0.98);
        padding: 12px 0;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .nav-links > li {
        padding: 0;
    }

    .nav-links a {
        padding: 14px 24px;
        display: block;
        font-size: 1rem;
        border-radius: 0;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-cta-btn {
        margin: 8px 24px 4px;
        text-align: center;
        border-radius: 8px !important;
    }

    .nav-dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0 0 0 16px;
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 12px 24px;
        font-size: 0.925rem;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.78) 40%, rgba(10, 22, 40, 0.35) 65%, rgba(10, 22, 40, 0.1) 100%);
}

@media (max-width: 768px) {
    .hero-overlay {
        background:
            linear-gradient(to bottom, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.7) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    text-align: left;
}

.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-actions,
.hero-content .hero-note {
    max-width: 90%;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 6px 14px;
    background: rgba(0, 145, 255, 0.1);
    border: 1px solid rgba(0, 145, 255, 0.25);
    border-radius: 100px;
}

.hero h1 {
    font-size: clamp(1.87rem, 4.25vw, 2.975rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    color: var(--accent);
    font-size: 0.8em;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    color: var(--gray-300);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 24px;
    margin-left: 8px;
    transition: color 0.2s;
}

.btn-secondary:hover {
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.hero-note {
    margin-top: 48px;
    font-size: 0.85rem;
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-note .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   Section Bases
   ============================================ */
.section {
    padding: var(--section-pad) 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-alt {
    background: var(--gray-100);
}

.section-header {
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

.section-dark .section-header p {
    color: var(--gray-400);
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumb {
    padding: 80px 0 16px;
    background: var(--navy);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.breadcrumb-list li a {
    color: var(--gray-400);
}

.breadcrumb-list li a:hover {
    color: var(--accent);
}

.breadcrumb-list li:last-child {
    color: var(--gray-300);
}

.breadcrumb-list li + li::before {
    content: '/';
    color: var(--gray-500);
}

/* ============================================
   Page Hero (for subpages)
   ============================================ */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 32px 0 64px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 680px;
    line-height: 1.7;
}

/* ============================================
   About / Problem Cards
   ============================================ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(0, 145, 255, 0.08);
}

.problem-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 145, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   Service Cards (Homepage Grid)
   ============================================ */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(0, 145, 255, 0.08);
    transform: translateY(-2px);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 145, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card h3 a {
    color: var(--text-primary);
    transition: color 0.2s;
}

.service-card h3 a:hover {
    color: var(--accent);
}

.service-card p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 16px;
}

.service-card .card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .card-link:hover {
    gap: 10px;
}

/* Featured Service Cards (homepage flagship tier) */
.service-cards-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card-featured {
    border-width: 2px;
    padding: 40px 32px;
}

.service-card-featured .service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 145, 255, 0.1);
    margin-bottom: 24px;
}

.service-card-featured .service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-card-featured h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.service-card-featured p {
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .service-cards-featured {
        grid-template-columns: 1fr;
    }
}

/* Section-alt service cards need white background */
.section-alt .service-card {
    background: var(--white);
}

/* ============================================
   Service Page Content
   ============================================ */
.service-content {
    padding: var(--section-pad) 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

@media (max-width: 900px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.service-main h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
    letter-spacing: -0.01em;
}

.service-main h2:first-child {
    margin-top: 0;
}

.service-main p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.service-main ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-main ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.service-main .brands-box {
    background: var(--gray-100);
    border-radius: 10px;
    padding: 24px;
    margin: 24px 0;
}

.service-main .brands-box strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-main .brands-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.service-note-box {
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.08);
    border-left: 3px solid var(--amber);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Service Image */
.service-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 88px;
}

.sidebar-card {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card ul li {
    margin-bottom: 8px;
}

.sidebar-card ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.sidebar-card ul li a:hover,
.sidebar-card ul li a.current {
    background: var(--white);
    color: var(--accent);
}

.sidebar-cta {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============================================
   Services (dark section - used on subpages)
   ============================================ */
.service-block {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-block > p {
    color: var(--gray-300);
    margin-bottom: 20px;
    max-width: 720px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.service-list li {
    font-size: 0.925rem;
    color: var(--gray-300);
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.service-brands {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.service-brands strong {
    color: var(--gray-300);
    font-weight: 600;
}

.service-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--amber);
    font-style: italic;
}

/* Collaboration banner */
.collab-banner {
    margin-top: 48px;
    padding: 28px 32px;
    background: rgba(0, 145, 255, 0.06);
    border: 1px solid rgba(0, 145, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.collab-banner svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.collab-banner p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.65;
}

.collab-banner strong {
    color: var(--white);
}

/* ============================================
   Industries
   ============================================ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    transition: border-color 0.2s;
}

.industry-item:hover {
    border-color: var(--accent);
}

.industry-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 145, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   Service Area
   ============================================ */
.area-intro {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 800px;
}

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

.area-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px;
}

.area-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
}

.area-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Light-themed area cards for service-area page */
.area-card-light {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px;
}

.area-card-light h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
}

.area-card-light p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.area-wide {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(0, 145, 255, 0.05);
    border: 1px solid rgba(0, 145, 255, 0.12);
    border-radius: 10px;
    text-align: center;
}

.area-wide p {
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 500;
}

.area-wide-light {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(0, 145, 255, 0.04);
    border: 1px solid rgba(0, 145, 255, 0.12);
    border-radius: 10px;
    text-align: center;
}

.area-wide-light p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   Process
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: step-counter;
}

.process-step {
    position: relative;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    counter-increment: step-counter;
}

.process-step::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 18px;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail div {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-detail strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail a {
    color: var(--accent);
}

.contact-form {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 32px;
}

.contact-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 145, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit:hover {
    background: var(--accent-dark);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    margin-right: 12px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--navy);
    color: var(--gray-400);
    padding: 48px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-about .footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-about .footer-brand span {
    color: var(--accent);
}

.footer-about p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.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 p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-bottom a {
    font-size: 0.85rem;
    color: var(--gray-400);
}

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

/* ============================================
   Utility
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Founder Profile
   ============================================ */
.founder-profile {
    max-width: 760px;
}

.founder-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-content p:last-child {
    margin-bottom: 0;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn-secondary {
        margin-left: 0;
        padding-left: 0;
    }

    .cta-banner .btn-primary,
    .cta-banner .btn-secondary {
        display: block;
        margin: 0 auto 12px;
    }

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

@media (max-width: 480px) {
    :root {
        --section-pad: 56px;
    }

    .hero {
        padding: 130px 0 72px;
        min-height: 480px;
    }

    .hero-bg img {
        object-position: 65% top;
    }

    .hero h1 {
        font-size: 1.7rem;
    }
}
