/* ===== CSS Variables & Reset ===== */
:root {
    --navy: #1a2744;
    --navy-dark: #0f1a2e;
    --navy-light: #243352;
    --blue: #2d5f8a;
    --blue-light: #3a7cb8;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-soft: #f5e6c4;
    --amber: #c4863b;
    --warm-white: #faf8f5;
    --warm-gray: #f0ece6;
    --gray-100: #f7f5f2;
    --gray-200: #e8e4de;
    --gray-300: #d1cbc2;
    --gray-400: #a89f94;
    --gray-500: #7a7269;
    --gray-600: #5c554d;
    --gray-700: #3d3832;
    --gray-800: #2a2520;
    --text-primary: #1a1815;
    --text-secondary: #5c554d;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.1);
    --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 39, 68, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::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: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 83, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    background: transparent;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--gold);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}
.btn-nav:hover {
    background: var(--amber);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 39, 68, 0.06);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.2;
}

.logo-sub {
    display: block;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--navy);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(165deg, var(--warm-white) 0%, var(--white) 40%, var(--gray-100) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--blue);
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--navy);
    top: 50%;
    left: 40%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 420px;
}

.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 39, 68, 0.06);
}

.hero-card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 40px;
    animation: float 6s ease-in-out infinite;
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    color: var(--navy);
}
.hero-card-icon.small {
    width: 32px;
    height: 32px;
}

.hero-card-label {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
}

.hero-card-status {
    font-size: 0.8rem;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

.hero-card-float-1 {
    top: 8%;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 5s ease-in-out infinite 0.5s;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.hero-card-float-2 {
    bottom: 15%;
    left: 0;
    text-align: center;
    animation: float 7s ease-in-out infinite 1s;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-card-float-3 {
    top: 10%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite 1.5s;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
}

.mini-chart .bar {
    width: 10px;
    background: linear-gradient(to top, var(--navy), var(--blue-light));
    border-radius: 3px 3px 0 0;
    transition: height 1s ease;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-card-main {
    animation-name: floatCenter;
}

@keyframes floatCenter {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}

/* Hero Trust Bar */
.hero-trust {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 2;
}

.trust-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-400);
    opacity: 0.7;
    transition: opacity var(--transition);
}

.trust-logo-item:hover {
    opacity: 1;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    opacity: 0;
    transition: opacity var(--transition);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    grid-column: span 3;
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
    border-color: transparent;
    color: rgba(255, 255, 255, 0.85);
}

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

.service-card.featured .service-icon {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold);
}

.service-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.service-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(15, 26, 46, 0.4);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--navy);
    padding: 12px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-soft);
    color: var(--amber);
}

.service-card.featured:hover .service-icon {
    background: rgba(212, 168, 83, 0.25);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.88rem;
    font-weight: 500;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

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

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

/* ===== Approach ===== */
.approach {
    padding: 120px 0;
    background: var(--warm-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.approach-step {
    position: relative;
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.approach-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-soft);
}

.approach-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.approach-step:hover .approach-number {
    opacity: 0.6;
}

.approach-step h3 {
    margin-bottom: 12px;
}

.approach-step p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Problems & Solutions ===== */
.problems-solutions {
    padding: 120px 0;
    background: var(--white);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.ps-column {
    padding: 40px 36px;
    border-radius: var(--radius-lg);
}

.ps-problems {
    background: linear-gradient(145deg, #fef8f0, #fdf2e4);
    border: 1px solid #f0d9b5;
}

.ps-solutions {
    background: linear-gradient(145deg, #f0f6f3, #e4f0ea);
    border: 1px solid #b5d9c5;
}

.ps-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0,0,0,0.08);
}

.ps-problems .ps-heading { color: var(--amber); }
.ps-solutions .ps-heading { color: #2d7a52; }

.ps-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.ps-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.ps-icon-problem {
    background: #fde2c8;
    color: #b8611a;
}

.ps-icon-solution {
    background: #d4eddf;
    color: #1a7a3a;
}

/* ===== Who We Serve ===== */
.who-we-serve {
    padding: 120px 0;
    background: linear-gradient(165deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden;
}

.who-we-serve::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.06), transparent 70%);
}

.who-we-serve .section-label {
    color: var(--gold);
}

.who-we-serve h2 {
    color: var(--white);
}

.who-we-serve .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.serve-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.serve-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.serve-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    color: var(--gold);
    padding: 8px;
}

.serve-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.serve-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--warm-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 16px;
}

.about-content h2 {
    margin-top: 8px;
}

.about-credentials {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.credential {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credential strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
}

.credential span {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 500;
}

.about-systems {
    margin-top: 28px;
}

.systems-label {
    font-size: 0.85rem !important;
    font-weight: 600;
    color: var(--gray-500) !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.system-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
}

.tag:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
    color: var(--amber);
}

.about-highlights {
    position: sticky;
    top: 100px;
}

.highlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}

.highlight-card h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.highlight-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-card li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.highlight-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    opacity: 0.7;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-soft);
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote svg {
    position: absolute;
    top: -8px;
    left: -4px;
    color: var(--navy);
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-top: 32px;
}

.testimonial-attribution {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-attribution strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.testimonial-attribution span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 95, 138, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-800);
    padding: 64px 0 32px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-brand .logo-mark {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.footer-brand .logo-text {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-400);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-links a {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        position: static;
    }

    .testimonial-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    h1 { font-size: 2.2rem; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .ps-grid {
        grid-template-columns: 1fr;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .about-credentials {
        flex-direction: column;
        gap: 20px;
    }

    .trust-logos {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.92rem;
        width: 100%;
    }
}
