/* ==========================================================
   AGI Automations — main.css
   Single source of truth for all shared styles.
   v1 — Phase 1: CSS extraction + variable migration
   ========================================================== */

/* ----------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------- */
:root {
  --color-navy:         #0F172A;
  --color-navy-mid:     #1E293B;
  --color-blue-cta:     #6430EC;
  --color-blue-hover:   #5528CC;
  --color-purple:       #6430EC;
  --color-purple-dark:  #5528CC;
  --color-purple-light: #f0ebff;
  --color-bg:           #F8FAFC;
  --color-surface:      #ffffff;
  --color-border:       #E2E8F0;
  --color-text-dark:    #1a202c;
  --color-text-body:    #4a5568;
  --color-text-muted:   #718096;
  --color-success:      #10b981;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s;
}

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

/* ----------------------------------------------------------
   ACCESSIBILITY
   ---------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-navy);
    color: white;
    padding: 12px 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-blue-cta);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue-cta);
    box-shadow: 0 0 0 3px rgba(3,105,161,0.2);
}

/* ----------------------------------------------------------
   GLOBAL
   ---------------------------------------------------------- */
body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text-dark);
    overflow-x: hidden;
    background: #ffffff;
}

/* ----------------------------------------------------------
   HEADER / NAVIGATION
   ---------------------------------------------------------- */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-purple);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

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

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

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition);
    position: relative;
}

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

.nav-links a.active {
    color: var(--color-purple);
    font-weight: 600;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-purple);
    border-radius: 1px;
}

.nav-links a.cta-button {
    color: white;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.cta-button {
    background: var(--color-blue-cta);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: var(--color-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.4);
}

.cta-button-secondary {
    background: white;
    color: var(--color-blue-cta);
    border: 2px solid var(--color-blue-cta);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    display: inline-block;
    text-align: center;
}

.cta-button-secondary:hover {
    background: #EFF6FF;
}

.cta-button-white {
    background: white;
    color: var(--color-blue-cta);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all var(--transition);
}

.cta-button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ----------------------------------------------------------
   MOBILE MENU — Toggle style (index, blog pages)
   ---------------------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-navy);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 15px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.mobile-menu a:hover {
    background: var(--color-bg);
    color: var(--color-purple);
}

.mobile-menu a.cta-button {
    background: var(--color-blue-cta);
    color: white;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
}

/* ----------------------------------------------------------
   MOBILE MENU — Button/overlay style (services, about, how-it-works)
   ---------------------------------------------------------- */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-navy);
    margin: 5px 0;
    transition: var(--transition);
}

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

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

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay ~ .mobile-menu,
.mobile-menu-button ~ .mobile-menu {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 100px 30px 30px;
    overflow-y: auto;
    display: block;
}

.mobile-menu-overlay ~ .mobile-menu.active,
.mobile-menu-button ~ .mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: color var(--transition);
}

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

.mobile-nav-links .cta-button {
    background: var(--color-blue-cta);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
    display: block;
}

.mobile-nav-links .cta-button:hover {
    background: var(--color-purple-dark);
}

/* ----------------------------------------------------------
   HERO SECTION (homepage)
   ---------------------------------------------------------- */
.hero {
    background: var(--color-navy);
    color: white;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-eyebrow {
    display: inline-block;
    color: #60A5FA;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 4px 12px;
    border: 1px solid rgba(96,165,250,0.4);
    border-radius: var(--radius-sm);
}

.hero-ctas, .hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-ctas .cta-button {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-ctas .cta-button-secondary {
    padding: 18px 40px;
    font-size: 18px;
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-ctas .cta-button-secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* Primary CTA button — blue */
.btn-primary {
    background: var(--color-blue-cta);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: var(--color-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3,105,161,0.35);
}
.btn-primary:focus-visible {
    outline: 3px solid var(--color-blue-cta);
    outline-offset: 3px;
}

/* Ghost button (hero secondary) */
.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}

/* Guarantee badge */
.guarantee-badge {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-left: 3px solid var(--color-success);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-top: 16px;
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.guarantee-badge svg { color: #34D399; flex-shrink: 0; margin-top: 2px; }
.guarantee-badge strong { display: block; color: white; font-size: 14px; margin-bottom: 2px; }
.guarantee-badge span { color: rgba(255,255,255,0.7); font-size: 13px; }

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    opacity: 0.85;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ----------------------------------------------------------
   PAGE HEADERS (inner pages — navy)
   ---------------------------------------------------------- */
.page-hero {
    background: var(--color-navy);
    color: white;
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Services page uses light page-hero (not gradient) */
.page-hero.light {
    background: var(--color-bg);
    color: var(--color-text-dark);
    padding: 80px 40px;
}

.page-hero.light h1 {
    color: var(--color-text-dark);
}

.page-hero.light p {
    color: var(--color-text-body);
    opacity: 1;
}

/* Blog index page-header */
.page-header {
    background: var(--color-navy);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ----------------------------------------------------------
   CONTAINER / SECTIONS
   ---------------------------------------------------------- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-bg);
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 20px;
    color: var(--color-text-body);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----------------------------------------------------------
   PROBLEM SECTION
   ---------------------------------------------------------- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(3, 105, 161, 0.15);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    color: white;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   SOLUTION / PILLARS SECTION
   ---------------------------------------------------------- */
.solution-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--color-blue-cta);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.solution-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
}

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

.pillar-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition);
    border-top: 4px solid var(--color-blue-cta);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 105, 161, 0.2);
}

.pillar-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.pillar-card p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   COMPARISON TABLE
   ---------------------------------------------------------- */
.comparison-table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #2d3748;
    color: white;
    padding: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
}

.comparison-table th.highlight {
    background: var(--color-navy);
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
    color: var(--color-text-body);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight {
    background: var(--color-purple-light);
    font-weight: 600;
    color: var(--color-text-dark);
}

.check {
    color: var(--color-success);
    font-weight: bold;
}

/* Comparison section wrapper */
.comparison-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.comparison-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.comparison-section p {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-body);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------
   SERVICE CARDS
   ---------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition);
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--color-blue-cta);
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(100, 48, 236, 0.2);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.service-badge {
    background: var(--color-purple);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-blue-cta);
    margin-bottom: 8px;
}

.service-duration,
.service-meta {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.service-card ul {
    list-style: none;
    margin: 24px 0;
}

.service-card li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--color-text-body);
    line-height: 1.6;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 18px;
}

.service-card .cta-button,
.service-card .cta-button-secondary {
    width: 100%;
    text-align: center;
    margin-top: 24px;
}

/* Services page-specific */
.service-detail {
    padding: 100px 0;
}

.service-detail:nth-child(even) {
    background: var(--color-bg);
}

.service-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.service-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 30px;
}

.service-header .cta-button {
    padding: 18px 40px;
    font-size: 18px;
    margin-right: 15px;
}

.image-placeholder {
    background: var(--color-bg);
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple);
    font-size: 18px;
    font-weight: 600;
}

.diagram-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
}

/* Phase Cards (services page) */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.phase-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.phase-card h3 {
    background: var(--color-navy);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.phase-card ul {
    list-style: none;
}

.phase-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--color-text-body);
    line-height: 1.6;
}

.phase-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-blue-cta);
    font-weight: bold;
    font-size: 20px;
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, #fff3cd 0%, #fef3c7 100%);
    border-left: 6px solid #f59e0b;
    padding: 50px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
}

.guarantee-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #78350f;
    margin-bottom: 15px;
}

/* Fit Grid */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.fit-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.fit-card.perfect {
    background: #EFF6FF;
    border: 2px solid var(--color-blue-cta);
}

.fit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.fit-card ul {
    list-style: none;
}

.fit-card li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--color-text-body);
    line-height: 1.6;
}

.fit-card.perfect li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 18px;
}

.fit-card:not(.perfect) li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 18px;
}

.fit-card.included-features li::before {
    content: none;
}

.fit-card.included-features li {
    padding-left: 0;
}

/* Service Toggle */
.service-toggle-wrapper {
    text-align: center;
    margin-bottom: 48px;
}

.toggle-context {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.service-toggle {
    display: flex;
    gap: 0;
    margin: 0 auto;
    width: fit-content;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--color-blue-cta);
}

.toggle-btn {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: white;
    color: var(--color-purple);
    transition: all 0.2s;
    letter-spacing: -0.01em;
}

.toggle-btn.active {
    background: var(--color-purple);
    color: white;
}

.toggle-btn:not(.active):hover {
    background: var(--color-purple-light);
}

.toggle-price-hint {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.75;
    margin-top: 2px;
}

/* ----------------------------------------------------------
   STATS SECTION
   ---------------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.stat-card {
    background: var(--color-navy);
    color: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    transition: transform var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.5;
}

/* ----------------------------------------------------------
   TESTIMONIAL
   ---------------------------------------------------------- */
.testimonial {
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 40px 0;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 120px;
    color: #e0d9ff;
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-purple);
    text-align: right;
}

/* ----------------------------------------------------------
   ASSESSMENT / CTA BOXES
   ---------------------------------------------------------- */
.assessment-cta-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.assessment-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.assessment-content p {
    font-size: 18px;
    color: #2d3748;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.assessment-content ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 15px auto 25px;
}

.assessment-content ul li {
    padding: 5px 0;
    font-size: 16px;
}

.instruments-cta-box {
    background: linear-gradient(135deg, #e6f2ff 0%, #cce4ff 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(70, 130, 236, 0.1);
}

.instruments-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.instruments-content p {
    font-size: 18px;
    color: #2d3748;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.instruments-content ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 15px auto 25px;
}

.instruments-content ul li {
    padding: 5px 0;
    font-size: 16px;
}

/* Reassurance box (contact page) */
.reassurance-box {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    margin: 80px 0;
}

.reassurance-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.reassurance-box p {
    font-size: 18px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ----------------------------------------------------------
   FINAL CTA / CTA SECTION
   ---------------------------------------------------------- */
.final-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .cta-button {
    padding: 20px 50px;
    font-size: 20px;
}

.final-cta-secondary {
    margin-top: 24px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.final-cta-secondary a {
    color: white;
    text-decoration: underline;
}

/* CTA Section (how-it-works, about) */
.cta-section {
    background: var(--color-navy);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ----------------------------------------------------------
   INFO BOX
   ---------------------------------------------------------- */
.info-box {
    background: var(--color-purple-light);
    border-left: 4px solid var(--color-blue-cta);
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 40px 0;
}

.info-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
}

.info-box strong {
    color: var(--color-blue-cta);
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
}

.info-box ul {
    list-style: none;
    margin-left: 0;
}

.info-box li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #2d3748;
    line-height: 1.7;
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 18px;
}

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */
.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.path-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition);
}

.path-card.featured {
    border: 3px solid var(--color-blue-cta);
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(100, 48, 236, 0.2);
}

.path-badge {
    background: var(--color-purple);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.path-badge.alt {
    background: #2d3748;
}

.path-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.path-card p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 30px;
}

.path-card .cta-button,
.path-card .cta-button-secondary {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    margin-top: 20px;
}

.calendly-section {
    text-align: center;
    margin: 80px 0;
}

.calendly-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 40px;
}

.calendly-embed {
    background: white;
    min-height: 700px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(100, 48, 236, 0.15);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
}

.contact-card a {
    color: var(--color-blue-cta);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   HOW IT WORKS — PROCESS
   ---------------------------------------------------------- */
.process-overview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.process-overview h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.process-overview > p {
    font-size: 20px;
    color: var(--color-text-body);
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(100, 48, 236, 0.15);
}

.step-number {
    background: var(--color-navy);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.process-step p {
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-duration {
    background: #EFF6FF;
    color: var(--color-blue-cta);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
}

/* Detailed Process */
.detailed-process {
    background: var(--color-bg);
    padding: 100px 40px;
}

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

.detailed-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: var(--color-text-dark);
}

.detail-step {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.detail-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-number {
    background: var(--color-navy);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
}

.detail-step-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.detail-content {
    padding-left: 80px;
}

.detail-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    margin-top: 24px;
}

.detail-content ul {
    list-style: none;
    padding: 0;
}

.detail-content li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--color-text-body);
    font-size: 16px;
}

.detail-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-blue-cta);
    font-weight: 700;
    font-size: 18px;
}

.detail-meta {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--color-border);
}

.meta-item {
    flex: 1;
}

.meta-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.meta-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
}

/* Timeline */
.timeline-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.timeline-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-text-dark);
}

.timeline-section > p {
    font-size: 18px;
    color: var(--color-text-body);
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-blue-cta);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--color-blue-cta);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #E9D8FD;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--color-text-body);
    font-size: 16px;
}

.timeline-week {
    background: var(--color-blue-cta);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

/* FAQ (how-it-works style) */
.faq-section {
    background: white;
    padding: 100px 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: var(--color-text-dark);
}

.faq-container .faq-item {
    margin-bottom: 30px;
    background: var(--color-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-purple);
    box-shadow: none;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------- */
.origin-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.origin-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-text-dark);
    text-align: center;
}

.origin-quote {
    background: var(--color-bg);
    padding: 50px;
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--color-purple);
    font-size: 20px;
    line-height: 1.8;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 40px;
}

.origin-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.different-section {
    background: white;
    padding: 100px 40px;
}

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

.different-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: var(--color-text-dark);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.principle-card {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--color-purple);
    transition: all var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 48, 236, 0.15);
}

.principle-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.principle-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
}

.core-belief {
    background: var(--color-navy);
    color: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 60px;
}

.core-belief h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.core-belief p {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.expertise-section {
    background: var(--color-bg);
    padding: 100px 40px;
}

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

.expertise-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: var(--color-text-dark);
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.expertise-column h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text-dark);
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.7;
}

.expertise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: 700;
    font-size: 18px;
}

.frameworks-section {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.frameworks-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text-dark);
    text-align: center;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.framework-item {
    background: var(--color-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    border: 2px solid var(--color-border);
    transition: all var(--transition);
}

.framework-item:hover {
    border-color: var(--color-purple);
    background: white;
    transform: translateY(-3px);
}

.framework-category {
    font-size: 12px;
    color: var(--color-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.team-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.team-highlight {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 40px;
    border-left: 6px solid var(--color-purple);
}

.team-highlight p {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    font-style: italic;
}

/* ----------------------------------------------------------
   BLOG INDEX
   ---------------------------------------------------------- */
.blog-section {
    padding: 80px 0;
    background: var(--color-bg);
}

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

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(100, 48, 236, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.blog-card-image--data     { background: #0D2137; }
.blog-card-image--ai       { background: #0C1A35; }
.blog-card-image--strategy { background: #142234; }
.blog-card-image--growth   { background: #0A1628; }

.blog-card-content {
    padding: 30px;
}

.blog-card-category {
    display: inline-block;
    background: var(--color-purple-light);
    color: var(--color-purple);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card h2 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card h2 a:hover {
    color: var(--color-purple);
}

.blog-card p {
    color: var(--color-text-body);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 14px;
}

.read-more {
    color: var(--color-blue-cta);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color var(--transition);
}

.read-more:hover {
    color: var(--color-blue-hover);
}

.read-time {
    color: var(--color-text-muted);
    font-size: 13px;
}

.coming-soon {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.coming-soon h2 {
    font-size: 28px;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.coming-soon p {
    color: var(--color-text-body);
    font-size: 18px;
    margin-bottom: 24px;
}

/* ----------------------------------------------------------
   BLOG ARTICLES
   ---------------------------------------------------------- */
.article-header {
    background: var(--color-bg);
    padding: 60px 40px;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-category {
    display: inline-block;
    background: var(--color-purple-light);
    color: var(--color-purple);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.article-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    color: var(--color-text-muted);
    font-size: 15px;
}

.article-meta span {
    margin-right: 20px;
}

/* Article layout — 2-col with sidebar */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 40px;
    align-items: start;
}

.article-content {
    min-width: 0;
    padding: 0;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-content ul, .article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 12px;
}

.article-content blockquote {
    border-left: 4px solid var(--color-purple);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--color-text-body);
    font-size: 20px;
    line-height: 1.7;
}

.article-content a {
    color: var(--color-purple);
    text-decoration: underline;
    transition: color var(--transition);
}

.article-content a:hover {
    color: var(--color-purple-dark);
}

.article-content strong {
    font-weight: 700;
    color: var(--color-text-dark);
}

.article-cta {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-blue-cta);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.article-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    margin-top: 0;
}

.article-cta p {
    font-size: 16px;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.article-cta .cta-button {
    padding: 14px 32px;
    font-size: 16px;
    color: white;
}

.back-to-blog {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.back-to-blog a {
    color: var(--color-blue-cta);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition);
}

.back-to-blog a:hover {
    color: var(--color-blue-hover);
}

/* Article sidebar */
.article-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-cta {
    background: var(--color-navy);
    color: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 24px;
}
.sidebar-cta h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}
.sidebar-cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 0;
}

.sidebar-related {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.sidebar-related h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}
.sidebar-related li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
}
.sidebar-related li:last-child { border-bottom: none; }
.sidebar-related a {
    color: var(--color-text-dark);
    text-decoration: none;
}
.sidebar-related a:hover { color: var(--color-blue-cta); }
.sidebar-related ul { padding: 0; margin: 0; }

/* Article FAQ (inline, no background section) */
.article-content .faq-section {
    background: none;
    padding: 0;
    margin-top: 48px;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.article-content .faq-item {
    margin-bottom: 24px;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
}

.article-content .faq-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

/* Data table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
}

.data-table th, .data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.data-table th {
    background: var(--color-bg);
    font-weight: 600;
    color: var(--color-text-dark);
}

.data-table tr:hover {
    background: var(--color-bg);
}

/* ----------------------------------------------------------
   CONTACT FORM
   ---------------------------------------------------------- */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
}

.form-group textarea {
    resize: vertical;
}

#formStatus {
    font-weight: 600;
}

#formStatus.success {
    color: #48bb78;
}

#formStatus.error {
    color: #f56565;
}

/* ----------------------------------------------------------
   MODAL
   ---------------------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #a0aec0;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: #2d3748;
}

.modal h2 {
    margin-bottom: 16px;
    color: var(--color-text-dark);
    font-size: 28px;
}

.modal p {
    margin-bottom: 24px;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* ----------------------------------------------------------
   ANIMATIONS
   ---------------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Simple footer variant (how-it-works, about) */
.footer p {
    font-size: 14px;
    opacity: 0.7;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 42px; }

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

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

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

    .service-header,
    .fit-grid,
    .expertise-grid { grid-template-columns: 1fr; }

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

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

    .paths-grid,
    .faq-grid,
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-container { padding: 0 20px; height: 60px; }
    .logo-img { height: 38px; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .mobile-menu-button { display: block; }

    /* Hero */
    .hero { padding: 80px 20px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 18px; }
    .hero-ctas { flex-direction: column; }

    /* Page headers */
    .page-hero { padding: 60px 20px; }
    .page-hero h1 { font-size: 32px; }
    .page-hero p { font-size: 18px; }
    .page-header { padding: 60px 20px; }
    .page-header h1 { font-size: 32px; }

    /* Sections */
    .section { padding: 60px 0; }
    .container { padding: 0 20px; }
    .section-header h2 { font-size: 32px; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 40px; }

    /* Service */
    .service-card.featured { transform: scale(1); }
    .service-header h2 { font-size: 32px; }

    /* Process */
    .process-overview h2,
    .detailed-container h2,
    .timeline-section h2,
    .faq-container h2 { font-size: 32px; }
    .process-steps { grid-template-columns: 1fr; }
    .detail-step { padding: 30px 20px; }
    .detail-content { padding-left: 0; }
    .detail-meta { flex-direction: column; gap: 20px; }
    .cta-section h2 { font-size: 32px; }

    /* About */
    .origin-section h2,
    .different-container h2,
    .expertise-container h2,
    .team-section h2 { font-size: 32px; }
    .origin-quote { padding: 30px; font-size: 18px; }
    .principles-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; gap: 40px; }
    .frameworks-grid { grid-template-columns: 1fr; }
    .core-belief { padding: 40px 30px; }
    .core-belief p { font-size: 22px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }

    /* Article */
    .article-header { padding: 40px 20px; }
    .article-header h1 { font-size: 28px; }
    .article-layout {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    .article-content { padding: 0; }
    .article-sidebar { position: static; }
    .article-content h2 { font-size: 26px; }
    .article-content h3 { font-size: 20px; }
    .back-to-blog { padding: 0 20px 40px; }

    /* Data table */
    .data-table { font-size: 14px; }
    .data-table th, .data-table td { padding: 8px 12px; }
}

/* ----------------------------------------------------------
   FOUNDER BLOCK (about page)
   ---------------------------------------------------------- */
.founder-block {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
    padding: 20px 0;
}

.founder-photo-placeholder {
    aspect-ratio: 3/4;
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.founder-bio h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.founder-tagline {
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 500;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-body);
}

@media (max-width: 768px) {
    .founder-block {
        grid-template-columns: 1fr;
    }
    .founder-photo-placeholder {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ----------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
