:root {
    --navy: #1a2a3a;
    --navy-deep: #0f1a24;
    --burgundy: #8b2635;
    --burgundy-dark: #6d1f2a;
    --burgundy-light: #a63344;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --warm-white: #fffdfb;
    --gold: #c9a962;
    --gold-light: #d4b978;
    --text-dark: #2a2a2a;
    --text-muted: #5a5a5a;
    --text-light: #8a8a8a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
}

p {
    max-width: 65ch;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 251, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 42, 58, 0.06);
    transition: all 0.4s ease;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--burgundy);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--burgundy);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease !important;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 50%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(139, 38, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--burgundy);
}

.hero h1 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--burgundy);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--burgundy);
    color: white;
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

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

.btn svg {
    width: 18px;
    height: 18px;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 42, 58, 0.15);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-dark) 100%);
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-stats-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1;
}

.hero-stats-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

/* Problem Section */
.problem {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.problem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/truestudy-hero-image.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(139, 38, 53, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.problem-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.problem-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.problem-text p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
}

.problem-list li::before {
    content: '\2192';
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
}

.problem-quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--burgundy);
    padding: 2.5rem;
    border-radius: 0 8px 8px 0;
}

.problem-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.problem-quote cite {
    font-style: normal;
    color: var(--gold);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background: var(--cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a2a3a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(26, 42, 58, 0.1);
    border-color: rgba(139, 38, 53, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 1.5;
    fill: none;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--burgundy);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* About Section */
.about {
    background: var(--navy);
    color: white;
}

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

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.1) 0%, rgba(250, 248, 245, 0.05) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--burgundy);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.2;
}

.about-credentials {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--cream);
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--burgundy);
    fill: none;
}

.credential-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.credential-text strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
}

.about-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.about-text > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 2rem 0;
}

.about-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--burgundy);
    border-radius: 0 8px 8px 0;
}

.about-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-quote cite {
    font-style: normal;
    color: var(--gold);
    font-size: 0.9rem;
}

.about-insight {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--gold);
}

.about-difference h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-comparison {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

.comparison-icon.muted {
    background: var(--burgundy);
    color: white;
}

.comparison-icon.accent {
    background: var(--gold);
    color: white;
}

.comparison-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.comparison-item strong {
    color: white;
}

/* Process Section */
.process {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(139, 38, 53, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -0.75rem;
    width: calc(100% - 70px);
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: white;
    border: 2px solid var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--burgundy);
    color: white;
}

.process-step h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 180px;
    margin: 0 auto;
}

/* Insight Banner Section */
.insight-banner {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.insight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.15) 0%, transparent 50%, rgba(201, 169, 98, 0.1) 100%);
    pointer-events: none;
}

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

.insight-banner-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.insight-banner-content p em {
    color: var(--gold);
    font-style: italic;
}

.insight-banner-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto 0;
}

/* Packages Section */
.packages {
    background: var(--cream);
}

.packages .section-header h2 {
    color: var(--navy);
}

.packages .section-header p {
    color: var(--text-muted);
}

.packages .section-eyebrow {
    color: var(--burgundy);
}

/* Service Selector */
.service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-option {
    background: white;
    border: 2px solid rgba(26, 42, 58, 0.1);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.service-option:hover {
    border-color: var(--burgundy);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-option.active {
    border-color: var(--burgundy);
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.03) 0%, rgba(201, 169, 98, 0.03) 100%);
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.1);
}

.service-option-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-option.active .service-option-icon {
    background: var(--burgundy);
}

.service-option-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--burgundy);
}

.service-option.active .service-option-icon svg {
    stroke: white;
}

.service-option-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
}

/* Service Details */
.service-details {
    display: none;
    margin-top: 3rem;
    animation: fadeIn 0.4s ease;
}

.service-details.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-info {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(26, 42, 58, 0.08);
}

.service-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-highlights li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 600;
}

/* Pricing Options */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(26, 42, 58, 0.08);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border: 2px solid var(--burgundy);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
}

.pricing-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-sessions {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.packages-note, .packages-notes {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.packages-notes p {
    margin: 0.5rem 0;
}

/* Testimonials */
.testimonials {
    background: var(--cream);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 5%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 400px;
    color: rgba(26, 42, 58, 0.03);
    line-height: 1;
    pointer-events: none;
}

.testimonials .section-header h2 {
    color: var(--navy);
}

.testimonials .section-header p {
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(26, 42, 58, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

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

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.author-info {
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--navy);
}

.author-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* CTA Section */
.cta {
    background: var(--navy);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 2rem;
    max-width: 500px;
    font-size: 1.1rem;
}

.cta .btn-primary {
    background: var(--burgundy);
    color: white;
    border: 2px solid var(--burgundy);
}

.cta .btn-primary:hover {
    background: var(--burgundy-light);
    border-color: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--navy-deep);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-column h4 {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 2rem;
}

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

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

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

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image {
        height: 400px;
    }

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

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

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

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(3)::after {
        display: none;
    }

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

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

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding-top: 5rem;
    }

    .hero-stats {
        left: 0;
        bottom: -20px;
    }

    .hero-accent {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }

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

    .about-image-main {
        height: 450px;
    }

    .about-credentials {
        left: 0;
        bottom: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step::after {
        display: none;
    }

    .service-selector {
        grid-template-columns: 1fr;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .pricing-options {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Animations on scroll - content always visible, animation is enhancement */
.fade-in {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
