/* =========================================
   VSeeKY Website Styles
   ========================================= */

:root {
    --burgundy: #8B1538;
    --burgundy-dark: #6B0F2A;
    --burgundy-light: #A91D45;
    --gold: #E8A838;
    --gold-light: #F4C76B;
    --navy: #1A1A2E;
    --navy-light: #2D2D44;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --white: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A5A;
    --text-muted: #7A7A8A;
}

/* =========================================
   Reset & Base
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* =========================================
   Utility Classes
   ========================================= */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* =========================================
   Navigation
   ========================================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(139, 21, 56, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    padding: 100px 24px 24px;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
    overflow-y: auto;
}

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

/* Ensure nav has solid background when mobile menu is open */
nav.menu-open {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mobile-menu a {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}

/* =========================================
   Buttons
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.3);
}

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

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

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 0;
}

.btn-ghost:hover {
    color: var(--burgundy);
}

.btn-ghost .arrow {
    transition: transform 0.3s ease;
}

.btn-ghost:hover .arrow {
    transform: translateX(4px);
}

/* =========================================
   Hero Section
   ========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(250, 248, 245, 0.9) 50%, var(--cream) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.15), transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

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

.hero h1 {
    font-size: clamp(48px, 6vw, 80px);
    color: var(--navy);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

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

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.6s;
}

.hero-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 40px 100px rgba(26, 26, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.hero-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.hero-card-question-burgundy {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: bold;
    color: var(--burgundy-dark);
    line-height: 1.4;
    margin-bottom: 32px;
}
.hero-card-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 32px;
}

.hero-card-list {
    list-style: none;
}

.hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-card-list li:last-child {
    border-bottom: none;
}

.hero-card-list .marker {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.2);
}

.floating-badge span {
    color: var(--gold);
    font-weight: 600;
}

/* =========================================
   Sections Common Styles
   ========================================= */

section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    max-width: 720px;
    margin-bottom: 80px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 24px;
}

.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(36px, 4vw, 56px);
    color: var(--navy);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* =========================================
   Why Section
   ========================================= */

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.why-content .section-header {
    margin-bottom: 48px;
}

.why-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
    margin-bottom: 40px;
}

.why-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.why-cards {
    display: grid;
    gap: 24px;
}

.why-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--burgundy);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
    transform: translateX(8px);
    background: var(--cream-dark);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.why-card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =========================================
   Image Break Section
   ========================================= */

.image-break {
    padding: 0;
    height: 50vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.image-break-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-break-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.image-break-alt .image-break-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(139, 21, 56, 0.85) 100%);
}

.image-break-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.image-break-stat {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}

.image-break-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* =========================================
   Who Section
   ========================================= */

.who-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

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

.who-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.who-card:hover::before {
    transform: translateY(0);
}

.who-card-content {
    position: relative;
    z-index: 1;
}

.who-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-card:hover .who-card-icon {
    background: var(--white);
}

.who-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--burgundy);
    transition: stroke 0.5s ease;
}

.who-card:hover .who-card-icon svg {
    stroke: var(--burgundy);
}

.who-card h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.who-card:hover h3 {
    color: var(--white);
}

.who-card-list {
    list-style: none;
}

.who-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    transition: all 0.5s ease;
}

.who-card:hover .who-card-list li {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

.who-card-list li:last-child {
    border-bottom: none;
}

.who-card-list .check {
    width: 18px;
    height: 18px;
    background: rgba(139, 21, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.5s ease;
}

.who-card:hover .who-card-list .check {
    background: rgba(255, 255, 255, 0.2);
}

.who-card-list .check svg {
    width: 10px;
    height: 10px;
    stroke: var(--burgundy);
    transition: stroke 0.5s ease;
}

.who-card:hover .who-card-list .check svg {
    stroke: var(--gold);
}

/* =========================================
   Services Section
   ========================================= */

.services-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.services-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.85) 100%);
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    border-color: rgba(232, 168, 56, 0.3);
    transform: translateY(-8px);
}

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

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.service-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(232, 168, 56, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.service-outcomes {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.service-outcomes-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.service-outcomes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-outcomes-list span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================================
   Carousel Section (Convention Photos)
   ========================================= */

.carousel-section {
    background: var(--white);
    padding-bottom: 100px;
}

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

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(26, 26, 46, 0.12);
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 48px 48px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 50%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide.active .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.caption-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
}

.caption-text {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(26, 26, 46, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-btn:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy);
    transition: stroke 0.3s ease;
}

.carousel-btn:hover svg {
    stroke: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot:hover {
    background: rgba(139, 21, 56, 0.4);
}

.carousel-dot.active {
    background: var(--burgundy);
    transform: scale(1.2);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(26, 26, 46, 0.1);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    width: 0%;
    transition: width 0.1s linear;
}

/* Pause on hover indicator */
.carousel-container::after {
    content: 'Paused';
    position: absolute;
    top: 24px;
    right: 48px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(26, 26, 46, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.carousel-container.paused::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .carousel-slide {
        aspect-ratio: 4 / 3;
    }
    
    .carousel-caption {
        padding: 40px 24px 32px;
    }
    
    .caption-title {
        font-size: 24px;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-controls {
        gap: 16px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* =========================================
   Method Section
   ========================================= */

.method-section {
    background: var(--cream);
}

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

.method-card {
    background: var(--white);
    border-radius: 20px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.06);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
}

.method-card.gold::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.method-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--burgundy);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 32px;
}

.method-card.gold .method-card-number {
    background: var(--gold);
    color: var(--navy);
}

.method-card h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 20px;
}

.method-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.method-list {
    list-style: none;
}

.method-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    font-size: 15px;
    color: var(--text-primary);
}

.method-list li:last-child {
    border-bottom: none;
}

.method-list .bullet {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.method-card.gold .method-list .bullet {
    background: var(--gold);
}

.method-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--burgundy);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(139, 21, 56, 0.15);
}

.method-card.gold .method-quote {
    color: var(--navy);
    border-color: rgba(232, 168, 56, 0.3);
}

/* =========================================
   Thinking Section
   ========================================= */

.thinking-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.thinking-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.thinking-flow {
    background: var(--white);
    border-radius: 20px;
    padding: 56px;
    box-shadow: 0 40px 100px rgba(26, 26, 46, 0.06);
    position: relative;
}

.thinking-flow::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 80px;
    width: 2px;
    background: linear-gradient(180deg, var(--burgundy), var(--gold));
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.flow-step-marker {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border: 2px solid var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow-step:nth-child(even) .flow-step-marker {
    border-color: var(--gold);
}

.flow-step-marker svg {
    width: 18px;
    height: 18px;
    stroke: var(--burgundy);
}

.flow-step:nth-child(even) .flow-step-marker svg {
    stroke: var(--gold);
}

.flow-step-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.flow-step-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.thinking-text h3 {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 24px;
}

.thinking-text > p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.thinking-list {
    list-style: none;
    margin-top: 40px;
}

.thinking-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.thinking-list li:last-child {
    border-bottom: none;
}

.thinking-list .vs {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(232, 168, 56, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
}

/* =========================================
   Differentiator Section
   ========================================= */

.diff-section {
    background: var(--burgundy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.diff-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(232, 168, 56, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.diff-text h2 {
    font-size: clamp(40px, 5vw, 60px);
    color: var(--white);
    margin-bottom: 32px;
}

.diff-negative {
    margin-bottom: 40px;
}

.diff-negative-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-negative-item:last-child {
    border-bottom: none;
}

.diff-negative-item .x {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-negative-item .x svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255, 255, 255, 0.5);
}

.diff-positive {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.diff-positive-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.diff-positive-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.diff-positive-item:last-child {
    border-bottom: none;
}

.diff-positive-item .check {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-positive-item .check svg {
    width: 12px;
    height: 12px;
    stroke: var(--navy);
    stroke-width: 3;
}

.diff-positive-item-text h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.diff-positive-item-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   CTA Section
   ========================================= */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.97) 0%, rgba(240, 237, 232, 0.95) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.2), transparent);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--navy);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

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

.cta-use-cases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.cta-use-case {
    font-size: 14px;
    color: var(--text-muted);
    padding: 12px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(26, 26, 46, 0.06);
}

/* =========================================
   Footer
   ========================================= */

footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .logo-img {
    height: 56px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
}

.footer-links h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   Animations
   ========================================= */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive Design
   ========================================= */

@media (max-width: 1200px) {
    .method-grid {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        order: -1;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .thinking-content {
        grid-template-columns: 1fr;
    }

    .thinking-flow {
        order: 2;
    }

    .diff-content {
        grid-template-columns: 1fr;
    }

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

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

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

    section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

    .hero-card {
        padding: 32px;
    }

    .floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 24px;
        display: inline-block;
    }

    .method-card {
        padding: 40px;
    }

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

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

    .image-break {
        height: 40vh;
        min-height: 300px;
    }

    .image-break-stat {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        padding: 32px;
    }

    .service-number {
        font-size: 48px;
    }
}
