/* ============================================
   Alan Hunte & Associates - Premium Design System
   Fortune 500 Quality Financial Services Site
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Color System */
    --navy-900: #0a1628;
    --navy-800: #0f2042;
    --navy-700: #142d5c;
    --navy-600: #1a3a6e;
    --navy-500: #1e4d8f;
    --navy-400: #2b6cb0;
    --navy-300: #4a90d9;
    --navy-200: #90bef0;
    --navy-100: #dbeafe;
    --navy-50: #eff6ff;

    --gold-500: #d4a843;
    --gold-400: #e5bc5a;
    --gold-300: #f0d078;
    --gold-200: #fae8a0;
    --gold-100: #fdf6e3;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    --white: #ffffff;
    --black: #000000;

    --success: #10b981;
    --error: #ef4444;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 25px 60px -15px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-700);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
    padding: var(--section-py) 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--navy-800);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-500);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--gold-500);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 3.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    line-height: 1.4;
}

.btn svg {
    transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

.btn-primary:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 32, 66, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--slate-300);
}

.btn-outline-dark:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 32, 66, 0.2);
}

.btn-white {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--slate-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    padding: 0.625rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    transition: color var(--duration-fast);
}

.header.scrolled .logo {
    color: var(--navy-800);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold-500);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-amp {
    color: var(--gold-500);
    margin: 0 0.125rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--duration-fast);
}

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

.header.scrolled .nav-links a {
    color: var(--slate-600);
}

.header.scrolled .nav-links a:hover {
    color: var(--navy-800);
}

.nav-cta {
    padding: 0.5rem 1.25rem !important;
    background: var(--gold-500) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-400) !important;
    transform: translateY(-1px);
}

.header.scrolled .nav-cta {
    background: var(--navy-800) !important;
    color: var(--white) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.header.scrolled .mobile-menu-btn span {
    background: var(--navy-800);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-900);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
}

.mobile-nav.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-link:nth-child(1) { transition-delay: 100ms; }
.mobile-nav.active .mobile-link:nth-child(2) { transition-delay: 150ms; }
.mobile-nav.active .mobile-link:nth-child(3) { transition-delay: 200ms; }
.mobile-nav.active .mobile-link:nth-child(4) { transition-delay: 250ms; }
.mobile-nav.active .mobile-link:nth-child(5) { transition-delay: 300ms; }

.mobile-cta {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: var(--gold-500);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy-900);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(43, 108, 176, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(212, 168, 67, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 4rem;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.125rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.hero-line {
    display: block;
}

.hero-line-accent {
    color: var(--gold-400);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--white);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--slate-100);
    position: relative;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    display: inline;
}

.stat-item > div:first-child {
    display: flex;
    align-items: baseline;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-500);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--slate-200);
}

/* --- About Section --- */
.about-section {
    background: var(--slate-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 40%;
    height: 40%;
    border: 3px solid var(--gold-500);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--navy-800);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl);
}

.experience-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.experience-text {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-content > p {
    color: var(--slate-500);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    transition: all var(--duration-normal) var(--ease-out);
}

.about-feature:hover {
    border-color: var(--navy-200);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
    color: var(--navy-500);
}

.about-feature strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--navy-800);
    margin-bottom: 0.125rem;
}

.about-feature span {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* --- Services Section --- */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-card-inner {
    border-color: var(--navy-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card-featured .service-card-inner {
    background: var(--navy-800);
    border-color: var(--navy-700);
}

.service-card-featured:hover .service-card-inner {
    border-color: var(--navy-600);
    box-shadow: 0 20px 50px rgba(15, 32, 66, 0.3);
}

.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--gold-500);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    z-index: 1;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-200);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-card-featured .service-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 108, 176, 0.08);
    border-radius: var(--radius-md);
    color: var(--navy-500);
    margin-bottom: 1.5rem;
}

.service-card-featured .service-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-400);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.service-card-featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.6);
}

.service-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-from {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-400);
    font-weight: 600;
}

.service-card-featured .service-from {
    color: rgba(255, 255, 255, 0.4);
}

.service-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1;
}

.service-card-featured .service-price {
    color: var(--white);
}

.price-unit {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-400);
}

.service-card-featured .price-unit {
    color: rgba(255, 255, 255, 0.5);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.service-features li {
    position: relative;
    padding: 0.375rem 0 0.375rem 1.5rem;
    font-size: 0.875rem;
    color: var(--slate-600);
}

.service-card-featured .service-features li {
    color: rgba(255, 255, 255, 0.7);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
}

.service-card .btn {
    margin-top: auto;
}

.service-card-featured .btn-primary {
    background: var(--gold-500);
    border-color: var(--gold-500);
}

.service-card-featured .btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
}

/* --- Industries Section --- */
.industries-section {
    background: var(--slate-50);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.industry-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-card:hover {
    border-color: var(--navy-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.industry-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.industry-card:hover .industry-img {
    transform: scale(1.05);
}

.industry-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.industry-content {
    padding: 1.75rem 2rem 2rem;
}

.industry-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
    color: var(--navy-500);
    margin-bottom: 1rem;
    margin-top: -3rem;
    position: relative;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.industry-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
}

.industry-content p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-500);
    transition: all var(--duration-fast) var(--ease-out);
}

.industry-link:hover {
    color: var(--navy-700);
    gap: 0.625rem;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: var(--white);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.testimonials-header .section-title {
    margin-bottom: 1rem;
}

.testimonials-header .section-desc {
    margin-bottom: 2rem;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--gold-500);
}

.testimonials-rating span {
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-weight: 500;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
    border-color: var(--navy-200);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: var(--navy-800);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8125rem;
    font-family: var(--font-sans);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9375rem;
    color: var(--navy-800);
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--navy-800);
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 30% 50%, rgba(43, 108, 176, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact-section {
    background: var(--slate-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.0625rem;
    color: var(--slate-500);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
    color: var(--navy-500);
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--navy-800);
    margin-bottom: 0.125rem;
}

.contact-item span,
.contact-item a {
    font-size: 0.9375rem;
    color: var(--slate-500);
}

.contact-item a:hover {
    color: var(--navy-500);
}

.contact-hours {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
}

.contact-hours strong {
    display: block;
    font-size: 0.875rem;
    color: var(--navy-800);
    margin-bottom: 0.375rem;
}

.contact-hours p {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
    color: var(--success);
}

.form-success strong {
    font-size: 1.25rem;
    color: var(--navy-800);
}

.form-success span {
    color: var(--slate-500);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.3125rem 0;
    transition: color var(--duration-fast);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-location {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .stat-divider {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-experience-badge {
        bottom: -1rem;
        right: -0.5rem;
    }

    .contact-form {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100%;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .hero-scroll-indicator {
        display: none;
    }
}
