/* ==========================================
   ANT STRATEGY - Premium Editorial Design
   ========================================== */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --cream: #FAF9F6;
    --gold: #C9A227;
    --gold-light: #E8D48A;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;

    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --container: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 60px) 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container);
    margin: 0 auto;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge span:last-child {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-italic {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.hero-subtitle em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--black);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.hero-benefits .check {
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
    background: var(--white);
    border-color: var(--gray-300);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.3), transparent 50%);
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 24px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ==========================================
   MARQUEE SECTION
   ========================================== */
.marquee-section {
    background: var(--black);
    padding: 20px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-content span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
}

.marquee-dot {
    color: var(--gold) !important;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   SECTION LABELS & TITLES
   ========================================== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 500px;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.section-problem {
    padding: 120px 0;
    background: var(--cream);
}

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

.problem-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-muted {
    color: var(--gray-400);
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.problem-intro {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-top: 24px;
}

/* ==========================================
   AGITATION SECTION
   ========================================== */
.section-agitation {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.agitation-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 24px;
    color: var(--black);
}

.agitation-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.agitation-text strong {
    color: var(--black);
}

/* ==========================================
   STATEMENT SECTION
   ========================================== */
.section-statement {
    padding: 120px 0;
    background: var(--black);
}

.big-statement {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-intro {
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold) !important;
    margin-bottom: 32px;
    font-family: var(--font-sans) !important;
}

.big-statement p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.5;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.big-statement em {
    font-style: italic;
    color: var(--white);
}

.statement-highlight {
    margin-top: 32px;
    color: var(--white) !important;
    font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
    line-height: 1.3 !important;
}

.statement-highlight span {
    color: var(--gold);
    display: block;
    margin-top: 16px;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.section-solution {
    padding: 120px 0 60px;
    background: var(--cream);
}

.solution-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.solution-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.solution-lead {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 24px;
}

.solution-lead strong {
    color: var(--gold);
}

/* ==========================================
   METHOD SECTION - Premium Editorial Design
   ========================================== */
.section-method {
    padding: 80px 0 120px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.section-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}

.method-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.method-header .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.method-header .section-desc {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-serif);
    font-style: italic;
}

.method-pillars-intro {
    margin-bottom: 80px;
    overflow: visible;
}

.method-pillars-intro h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 48px;
    font-style: italic;
    color: var(--gray-800);
}

.method-three-pillars {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px;
}

.pillar-main {
    flex: 1;
    max-width: 340px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pillar-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.pillar-main:hover::before {
    transform: scaleX(1);
}

.pillar-arrow {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
    width: 64px;
    height: 64px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-main h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--black);
}

.pillar-main p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.method-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.method-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
    padding: 80px;
    border-radius: 32px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 20px 80px rgba(0,0,0,0.04);
}

.method-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.method-circle {
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
    position: relative;
}

.method-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.method-circle::after {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    opacity: 0.15;
}

.circle-number {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    color: var(--gold);
    line-height: 1;
}

.circle-label {
    font-size: 1rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4px;
}

.method-lines {
    display: none;
}

.method-info h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.method-info p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.method-highlight {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    color: var(--gold) !important;
    font-size: 1.5rem !important;
    margin: 32px 0;
    line-height: 1.4;
    position: relative;
    padding-left: 0;
    background: none;
    border: none;
}

.method-results {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    padding: 60px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.method-results::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent 70%);
}

.method-results h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--white);
    position: relative;
}

.results-list {
    list-style: none;
    margin-bottom: 32px;
    position: relative;
}

.results-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.0625rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 20px;
}

.results-list .check {
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.results-highlight {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.method-article-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ==========================================
   9 PILLARS SECTION
   ========================================== */
.section-pillars {
    padding: 120px 0;
    background: var(--white);
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-header .section-desc {
    max-width: 700px;
    margin: 0 auto;
}

.pillars-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.pillar-card-9 {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.pillar-card-9:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: var(--gold);
}

.pillar-card-9 .card-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.pillar-card-9 h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.pillar-card-9 p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    background: var(--cream);
    padding: 60px;
    border-radius: 24px;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 48px;
}

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

.timeline-item {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
}

.timeline-phase {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.timeline-item p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.section-benefits {
    padding: 120px 0;
    background: var(--black);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header .section-label {
    color: var(--gold);
}

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

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

.benefit-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 16px;
}

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

.benefits-cta {
    text-align: center;
}

.benefits-cta .btn-primary {
    background: var(--gold);
    color: var(--black);
}

.benefits-cta .btn-primary:hover {
    background: var(--gold-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.pillar-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-color: var(--gold);
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.pillar-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* ==========================================
   RESULTS / TESTIMONIALS SECTION
   ========================================== */
.section-results {
    padding: 120px 0;
    background: var(--white);
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-masonry {
    columns: 3;
    column-gap: 24px;
}

.testimonial-card {
    break-inside: avoid;
    background: var(--cream);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.testimonial-featured {
    background: var(--black);
    color: var(--white);
    border-color: transparent;
}

.testimonial-featured .testimonial-rating {
    color: var(--gold);
}

.testimonial-featured blockquote {
    color: var(--gray-200);
}

.testimonial-featured .author-name {
    color: var(--white);
}

.testimonial-featured .author-source {
    color: var(--gray-500);
}

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

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
}

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

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--black);
}

.author-source {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    padding: 20px 32px;
    background: var(--cream);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.badge-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-rating {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--black);
}

.badge-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.section-about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.about-role {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 32px;
}

.about-text p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--black);
    line-height: 1;
}

.about-stat .stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.about-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    padding: 12px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    transition: all 0.3s;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.section-cta {
    padding: 120px 0;
    background: var(--black);
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gold {
    color: var(--gold);
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.calendar-embed {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
}

.calendar-embed iframe {
    display: block;
    border-radius: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 60px 0;
    background: var(--gray-900);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

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

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

.footer-copy p {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        min-height: auto;
        padding-top: calc(var(--nav-height) + 40px);
    }

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

    .hero-content {
        order: 0;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 24px;
        justify-content: center;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .method-three-pillars {
        flex-direction: column;
        align-items: center;
    }

    .pillar-main {
        max-width: 400px;
        width: 100%;
    }

    .method-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .method-visual {
        display: flex;
        justify-content: center;
    }

    .method-lines {
        display: none;
    }

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

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

    .timeline-section {
        padding: 40px;
    }

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

    .testimonials-masonry {
        columns: 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 16px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
    }

    .nav-logo img {
        height: 36px;
        width: auto;
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

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

    /* Method Section Mobile */
    .method-header {
        margin-bottom: 48px;
    }

    .method-header .section-title {
        font-size: 2rem;
    }

    .method-header .section-desc {
        font-size: 1.1rem;
    }

    .method-pillars-intro {
        margin-bottom: 48px;
    }

    .method-pillars-intro h3 {
        font-size: 1.25rem;
        margin-bottom: 32px;
    }

    .pillar-main {
        padding: 32px 24px;
    }

    .pillar-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .pillar-main h4 {
        font-size: 1.25rem;
    }

    .method-main {
        padding: 32px 24px;
    }

    .method-circle {
        width: 140px;
        height: 140px;
    }

    .method-circle::before {
        inset: -15px;
    }

    .method-circle::after {
        inset: -30px;
    }

    .circle-number {
        font-size: 3rem;
    }

    .circle-label {
        font-size: 0.875rem;
    }

    .method-info h3 {
        font-size: 1.5rem;
    }

    .method-highlight {
        font-size: 1.25rem !important;
        margin: 24px 0;
    }

    .method-results {
        padding: 32px 24px;
    }

    .method-results h3 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .results-list li {
        font-size: 1rem;
    }

    .results-highlight {
        font-size: 1.25rem;
    }

    .pillars-grid-9 {
        grid-template-columns: 1fr;
    }

    .testimonials-masonry {
        columns: 1;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .calendar-embed iframe {
        height: 500px;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-problem,
    .section-agitation,
    .section-solution,
    .section-method,
    .section-pillars,
    .section-benefits,
    .section-results,
    .section-about,
    .section-cta {
        padding: 60px 0;
    }

    /* Method article mobile */
    .method-article-image {
        max-width: 100%;
    }

    /* Problem cards mobile */
    .problem-card {
        padding: 24px;
    }

    /* Benefits mobile */
    .benefit-card {
        padding: 28px;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 1.75rem;
    }

    .section-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-benefits li {
        font-size: 0.875rem;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .timeline-section {
        padding: 24px;
    }

    .benefit-card {
        padding: 20px;
    }

    /* Method Mobile 480 */
    .method-circle {
        width: 120px;
        height: 120px;
    }

    .method-circle::before {
        inset: -12px;
    }

    .method-circle::after {
        inset: -24px;
    }

    .circle-number {
        font-size: 2.5rem;
    }

    .method-info h3 {
        font-size: 1.25rem;
    }

    .method-highlight {
        font-size: 1.125rem !important;
    }

    .results-highlight {
        font-size: 1.125rem;
    }

    .pillar-main {
        padding: 24px 20px;
    }

    .pillar-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .pillar-main h4 {
        font-size: 1.125rem;
    }

    /* Big statement mobile */
    .big-statement p {
        font-size: 1rem;
    }

    .statement-highlight {
        font-size: 1.25rem !important;
    }

    .statement-highlight span {
        font-size: 1.125rem;
    }

    /* Timeline mobile */
    .timeline-title {
        font-size: 1.5rem;
    }

    .timeline-item h4 {
        font-size: 1.125rem;
    }

    /* Nav mobile */
    .nav-cta {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }

    .nav-logo img {
        height: 32px;
    }
}
