/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AMERITECHWEBS HOSTING — MARKETING SITE
   Premium concierge aesthetic
   Dark navy + cream + warm gold
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,400;9..144,0,500;9..144,0,600;9..144,0,700;9..144,0,900;9..144,1,400;9..144,1,500;9..144,1,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Brand — same as dashboard */
    --nav-bg: #0f1f2e;
    --nav-bg-dark: #0a1620;
    --nav-bg-light: #1a2d3e;

    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;

    --cream: #f5f1e8;
    --cream-100: #ede7d8;
    --cream-200: #e3dcc7;
    --paper: #faf7ef;

    --gold-light: #e8d5a8;
    --gold: #c9a86a;
    --gold-dark: #a58144;
    --gold-deep: #7d5e2f;

    --plum: #7c2d6e;
    --plum-light: #f3e8f0;

    --ink: #1a1f2e;
    --ink-soft: #334155;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --border: #d8d2c1;
    --border-soft: #e8e2d1;

    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', Menlo, monospace;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.14);
    --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.18);

    --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ━━━ Typography ━━━ */

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.08;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 600;
    font-variation-settings: "opsz" 144;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-variation-settings: "opsz" 96;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-variation-settings: "opsz" 36;
}

h4 { font-size: 1.2rem; font-weight: 600; }

em {
    font-style: italic;
    color: var(--gold-dark);
    font-variation-settings: "opsz" 144;
}

p { color: var(--ink-soft); }

a {
    color: var(--teal-700);
    text-decoration: none;
    transition: color 0.15s;
}
a:hover { color: var(--teal-800); }

::selection { background: var(--gold); color: var(--ink); }

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

/* ━━━ Buttons ━━━ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font: 600 0.98rem var(--font-body);
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--nav-bg);
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 168, 106, 0.5);
    color: var(--nav-bg);
}

.btn-dark {
    background: var(--nav-bg);
    color: white;
    box-shadow: 0 2px 8px rgba(15, 31, 46, 0.25);
}
.btn-dark:hover {
    background: var(--nav-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 31, 46, 0.35);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: white;
}

.btn-ghost-dark {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
}
.btn-ghost-dark:hover {
    background: var(--paper);
    border-color: var(--gold);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ━━━ Navigation ━━━ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 31, 46, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(15, 31, 46, 0.95);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.25);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-brand .mark {
    background: none;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    height: auto;
    display: inline-block;
    margin-right: 2px;
}

.nav-brand .name {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    line-height: 1;
    border-left: 1px solid var(--gold);
    padding-left: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
}
.nav-brand small {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.94rem;
    font-weight: 500;
    transition: color 0.15s;
    position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--nav-bg) !important;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.3);
}
.nav-links a.cta:hover { transform: translateY(-1px); }

.lang-switch {
    color: var(--gold) !important;
    border: 1px solid rgba(201, 168, 106, 0.3);
    padding: 6px 12px !important;
    border-radius: 100px;
    font-size: 0.78rem !important;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.lang-switch:hover { background: rgba(201, 168, 106, 0.1); }

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    padding: 8px;
    cursor: pointer;
}

/* ━━━ Hero ━━━ */

.hero {
    background: linear-gradient(135deg, var(--nav-bg) 0%, var(--nav-bg-dark) 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 106, 0.15), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(15, 118, 110, 0.25), transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 106, 0.15);
    pointer-events: none;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 106, 0.12);
    border: 1px solid rgba(201, 168, 106, 0.25);
    color: var(--gold);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease-out;
}

/* Verse-specific variant: wider, italic, softer */
.hero-eyebrow.hero-verse {
    border-radius: 100px;
    padding: 9px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    max-width: 100%;
    line-height: 1.5;
}

.hero-eyebrow.hero-verse em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

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

.hero h1 {
    color: white;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease-out 0.1s both;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
    display: inline-block;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    max-width: 540px;
    animation: fadeUp 0.7s ease-out 0.2s both;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease-out 0.3s both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    animation: fadeUp 0.7s ease-out 0.4s both;
}

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

.hero-trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

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

/* Hero Visual — Floating Dashboard Mockup */

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.5s both;
}

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

.hero-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotate(-2deg);
    color: var(--ink);
    position: relative;
    animation: hover-card 6s ease-in-out infinite;
}

@keyframes hover-card {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-12px); }
}

.hero-card::before {
    content: '— LIVE PREVIEW';
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--gold);
    color: var(--nav-bg);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 16px;
}

.hero-card-dots {
    display: flex;
    gap: 5px;
}
.hero-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hero-card-dots span:nth-child(1) { background: #ff5f57; }
.hero-card-dots span:nth-child(2) { background: #febc2e; }
.hero-card-dots span:nth-child(3) { background: #28c840; }

.hero-card-url {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--muted);
    background: var(--cream-100);
    padding: 4px 12px;
    border-radius: 100px;
    margin-left: auto;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.hero-stat {
    background: var(--cream-100);
    padding: 12px;
    border-radius: var(--radius-sm);
    border-top: 2px solid var(--teal-600);
}
.hero-stat:nth-child(2) { border-top-color: var(--gold); }
.hero-stat:nth-child(3) { border-top-color: var(--plum); }

.hero-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    margin-top: 2px;
}

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

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-soft);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list .domain {
    font-family: var(--font-display);
    font-weight: 600;
}
.hero-card-list .badge {
    margin-left: auto;
    background: #d1fae5;
    color: #064e3b;
    padding: 3px 9px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ━━━ Section base ━━━ */

section { padding: 100px 0; }

.section-eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

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

.section-header p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-top: 16px;
}

/* ━━━ Migration Banner (#2) ━━━ */

.migration-banner {
    background: linear-gradient(135deg, var(--teal-800), var(--teal-950));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.migration-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.2), transparent 70%);
    pointer-events: none;
}

.migration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.migration-grid h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
}
.migration-grid h2 em { color: var(--gold); }
.migration-grid p {
    color: rgba(255,255,255,0.85);
    margin: 20px 0 30px;
    font-size: 1.1rem;
}

.migration-steps {
    display: grid;
    gap: 16px;
}

.migration-step {
    display: flex;
    align-items: start;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 18px;
    transition: all 0.2s;
}

.migration-step:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201, 168, 106, 0.3);
    transform: translateX(4px);
}

.migration-step-num {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--nav-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.migration-step-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: white;
}

.migration-step-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 3px;
}

/* ━━━ Features Grid (#3) ━━━ */

.features-section { background: var(--paper); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

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

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nav-bg), var(--nav-bg-light));
    color: var(--gold);
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(15, 31, 46, 0.2);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.feature-card p {
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ━━━ Pricing (#4) ━━━ */

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: var(--paper);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-card.popular {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 30px 60px rgba(201, 168, 106, 0.15);
    transform: scale(1.05);
}

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

.plan-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--nav-bg);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.4);
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nav-bg);
    margin-bottom: 6px;
}

.plan-tagline {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    min-height: 40px;
}

.plan-price {
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.plan-price .currency {
    font-size: 1.4rem;
    margin-right: 4px;
    color: var(--muted);
    align-self: flex-start;
    margin-top: 8px;
}

.plan-price .amount {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1;
}

.plan-price .period {
    font-size: 0.95rem;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 24px 0 30px;
    padding: 0;
}

.plan-features li {
    padding: 9px 0;
    color: var(--ink-soft);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-soft);
}
.plan-features li:last-child { border-bottom: none; }

.plan-features li svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.plan-cta {
    display: block;
    text-align: center;
    width: 100%;
}

/* ━━━ Comparison Table (#5) ━━━ */

.compare-section { background: var(--paper); }

.compare-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    min-width: 700px;
}

.compare-table th {
    padding: 22px 18px;
    text-align: left;
    background: var(--cream-100);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}

.compare-table th.us {
    background: var(--nav-bg);
    color: white;
    position: relative;
}

.compare-table th.us::before {
    content: '⭐';
    margin-right: 6px;
}

.compare-table td {
    padding: 18px;
    font-size: 0.94rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--ink-soft);
}

.compare-table td.us {
    background: rgba(201, 168, 106, 0.06);
    color: var(--ink);
    font-weight: 500;
}

.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: var(--danger); font-weight: 700; }
.compare-table .price { font-family: var(--font-display); font-weight: 600; }

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

/* ━━━ Testimonials (#6) ━━━ */

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.2s;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -16px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
}

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

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
}

.testimonial-role {
    color: var(--muted);
    font-size: 0.82rem;
}

/* ━━━ Final CTA (#7) ━━━ */

.cta-section {
    background: linear-gradient(135deg, var(--nav-bg) 0%, var(--nav-bg-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 106, 0.15), transparent 60%);
}

.cta-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 20px;
}
.cta-section h2 em { color: var(--gold); }
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 36px;
}
.cta-section .btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ━━━ Footer (#8) ━━━ */

footer {
    background: var(--nav-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    color: white;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--nav-bg);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-brand small {
    display: block;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-parent {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}

.footer-parent a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px dotted rgba(201,168,106,0.4);
}

.footer-col h4 {
    color: white;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: var(--font-body);
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.84rem;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ━━━ WhatsApp Float Button ━━━ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 50;
    transition: all 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ━━━ Inner page hero (for pricing, features, about, etc.) ━━━ */

.inner-hero {
    background: linear-gradient(135deg, var(--nav-bg), var(--nav-bg-dark));
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 106, 0.15), transparent 60%);
}

.inner-hero h1 {
    color: white;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 16px;
    position: relative;
}
.inner-hero h1 em { color: var(--gold); }

.inner-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

/* ━━━ FAQ ━━━ */

.faq-section { background: var(--paper); }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item[open] {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.2s;
    font-family: var(--font-body);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    padding: 0 24px 22px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ━━━ About Page ━━━ */

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid h2 {
    margin-bottom: 20px;
}

.about-grid p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-image {
    background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201, 168, 106, 0.3), transparent 50%);
}

.about-image-content {
    position: absolute;
    inset: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.about-image h3 {
    color: white;
    font-size: 1.8rem;
}
.about-image h3 em { color: var(--gold); }
.about-image p {
    color: rgba(255,255,255,0.85);
    margin-top: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.value-card {
    background: var(--paper);
    border-left: 3px solid var(--gold);
    padding: 24px;
    border-radius: var(--radius);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

/* ━━━ Animations on scroll ━━━ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━ Responsive ━━━ */

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: inline-flex; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .migration-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .hero { padding: 130px 0 70px; }
    section { padding: 70px 0; }
    .hero-ctas .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .plan-card.popular { transform: none; }
    .plan-card.popular:hover { transform: translateY(-8px); }
    .compare-wrapper { font-size: 0.85rem; }
}

/* ━━━ Mobile menu overlay ━━━ */

.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--nav-bg);
    z-index: 200;
    padding: 70px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
    list-style: none;
}
.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a {
    display: block;
    padding: 18px 0;
    color: white;
    font-size: 1.15rem;
    font-family: var(--font-display);
}
.mobile-menu .close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
/* ═══════════════════════════════════════════════════════════════
   VISUAL ILLUSTRATIONS - Added May 17 2026
   ═══════════════════════════════════════════════════════════════ */
.stats-bar { background: linear-gradient(135deg, #0f1f2e, #1a2f47); padding: 50px 24px; }
.stats-bar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 700px) { .stats-bar-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-block { color: white; }
.stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; text-transform: uppercase; }

.product-showcase { background: var(--cream); padding: 80px 24px; }
.product-showcase-inner { max-width: 1100px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
@media (max-width: 800px) { .product-grid { grid-template-columns: 1fr; } }
.product-card { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(15, 118, 110, 0.15); }
.product-card .preview { background: linear-gradient(135deg, #0f1f2e, #1a2f47); padding: 30px; min-height: 220px; display: flex; align-items: center; justify-content: center; }
.product-card .preview svg { width: 100%; height: auto; max-width: 320px; }
.product-card .body { padding: 24px 28px; }
.product-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.about-image-content svg { width: 100%; height: auto; }

/* Parent company section */
.parent-company {
    background: linear-gradient(135deg, #0f1f2e 0%, #1a2f47 100%);
    color: white;
    padding: 80px 24px;
    margin: 60px 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.parent-company::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.parent-company-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 800px) { .parent-company-inner { grid-template-columns: 1fr; } }
.parent-badge {
    display: inline-block;
    background: rgba(201, 168, 106, 0.15);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.parent-company h2 { color: white; font-family: var(--font-display); font-size: 2.1rem; line-height: 1.15; margin-bottom: 16px; font-weight: 600; }
.parent-company h2 em { color: var(--gold); font-style: normal; }
.parent-company .lead { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.65; margin-bottom: 26px; }
.parent-company .stats { display: flex; gap: 30px; margin-top: 28px; flex-wrap: wrap; }
.parent-company .stats .item { flex: 1; min-width: 100px; }
.parent-company .stats .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); font-weight: 700; line-height: 1; }
.parent-company .stats .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.parent-visual { position: relative; }
.parent-visual img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
.parent-visual::after {
    content: 'PARENT COMPANY';
    position: absolute; top: 14px; right: 14px;
    background: rgba(201, 168, 106, 0.95);
    color: #0f1f2e;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   VISUAL ILLUSTRATIONS - Added May 17 2026
   ═══════════════════════════════════════════════════════════════ */

/* Stats bar (between sections) */
.stats-bar {
    background: linear-gradient(135deg, #0f1f2e, #1a2f47);
    padding: 50px 24px;
}
.stats-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
@media (max-width: 700px) { .stats-bar-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-block { color: white; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Product showcase section */
.product-showcase { background: var(--cream); padding: 80px 24px; }
.product-showcase-inner { max-width: 1100px; margin: 0 auto; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 800px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(15, 118, 110, 0.15); }
.product-card .preview {
    background: linear-gradient(135deg, #0f1f2e, #1a2f47);
    padding: 30px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card .preview svg { width: 100%; height: auto; max-width: 320px; }
.product-card .body { padding: 24px 28px; }
.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.product-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* About illustration wrapper - replaces empty .about-image-content */
.about-image-content svg { width: 100%; height: auto; }

/* Feature illustration */
.feature-illustration {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE SVG FIX - May 17 v2
   Override aspect-ratio for SVG illustrations  
   ═══════════════════════════════════════════════════════════════ */
.about-image:has(svg),
.about-image.svg-mode {
    background: none !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
    box-shadow: none !important;
    border-radius: 14px;
}
.about-image:has(svg)::before,
.about-image.svg-mode::before {
    display: none !important;
}
.about-image:has(svg) .about-image-content,
.about-image.svg-mode .about-image-content {
    position: static !important;
    inset: auto !important;
    display: block !important;
}
.about-image:has(svg) svg,
.about-image.svg-mode svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 31, 46, 0.25);
}

/* For browsers without :has() support - add svg-mode class via JS or HTML */

/* ═══════════════════════════════════════════════════════════════
   WOW EFFECT UPGRADES - May 17 v3
   ═══════════════════════════════════════════════════════════════ */

/* HOUSTON HERO with real photo */
.houston-hero {
    aspect-ratio: auto !important;
    background: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}
.houston-hero::before { display: none !important; }
.houston-photo-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 31, 46, 0.4);
    aspect-ratio: 4/5;
    width: 100%;
}
.houston-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) saturate(1.1);
    transition: transform 0.7s ease;
}
.houston-photo-wrap:hover img { transform: scale(1.04); }
.houston-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 31, 46, 0.4) 0%,
        rgba(15, 31, 46, 0.6) 50%,
        rgba(15, 31, 46, 0.9) 100%);
}
.houston-content {
    position: absolute;
    left: 32px; right: 32px; bottom: 32px;
    color: white;
    z-index: 2;
}
.houston-badge {
    display: inline-block;
    background: rgba(201, 168, 106, 0.95);
    color: #0f1f2e;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}
.houston-city {
    color: white !important;
    font-family: Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 8px;
}
.houston-tagline {
    color: rgba(201, 168, 106, 0.95) !important;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 22px;
}
.houston-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 168, 106, 0.3);
}
.hs-item { text-align: center; }
.hs-num {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a86a;
    line-height: 1;
}
.hs-lbl {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}
.hs-divider {
    width: 1px;
    height: 30px;
    background: rgba(201, 168, 106, 0.3);
}

/* FEATURES PAGE - add WOW illustrations */
.feature-visual-card {
    background: linear-gradient(135deg, #0f1f2e, #1a2f47);
    border-radius: 18px;
    padding: 40px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 50px rgba(15, 31, 46, 0.25);
    position: relative;
    overflow: hidden;
}
.feature-visual-card::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.feature-visual-card svg {
    width: 100%; height: auto;
    max-width: 360px;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   WOW EFFECT - Real Photo + Branded Overlay
   ═══════════════════════════════════════════════════════════════ */
.houston-hero {
    aspect-ratio: auto !important;
    background: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    border-radius: 0 !important;
}
.houston-hero::before { display: none !important; }
.houston-photo-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 31, 46, 0.4);
    aspect-ratio: 4/5;
    width: 100%;
}
.houston-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) saturate(1.15);
    transition: transform 0.7s ease;
}
.houston-photo-wrap:hover img { transform: scale(1.05); }
.houston-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 31, 46, 0.3) 0%,
        rgba(15, 31, 46, 0.6) 55%,
        rgba(15, 31, 46, 0.92) 100%);
}
.houston-content {
    position: absolute;
    left: 32px; right: 32px; bottom: 32px;
    color: white;
    z-index: 2;
}
.houston-badge {
    display: inline-block;
    background: rgba(201, 168, 106, 0.95);
    color: #0f1f2e;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}
.houston-city {
    color: white !important;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 10px !important;
}
.houston-tagline {
    color: rgba(201, 168, 106, 0.95) !important;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 22px !important;
}
.houston-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 168, 106, 0.3);
}
.hs-item { text-align: center; flex: 1; }
.hs-num {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a86a;
    line-height: 1;
}
.hs-lbl {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}
.hs-divider {
    width: 1px;
    height: 28px;
    background: rgba(201, 168, 106, 0.3);
}

/* Features page visual cards */
.feature-visual-card {
    background: linear-gradient(135deg, #0f1f2e, #1a2f47);
    border-radius: 18px;
    padding: 30px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 50px rgba(15, 31, 46, 0.25);
    position: relative;
    overflow: hidden;
}
.feature-visual-card::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.18) 0%, transparent 60%);
    border-radius: 50%;
}
.feature-visual-card svg {
    width: 100%; height: auto;
    max-width: 340px;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   MEDIOS CORPORATIVOS — WOW SECTION
   ═══════════════════════════════════════════════════════════════ */
.medioscorp-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fdebd3 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.medioscorp-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}
.medioscorp-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.12) 0%, transparent 60%);
    border-radius: 50%;
}

.medioscorp-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 31, 46, 0.18);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(201, 168, 106, 0.2);
}
@media (max-width: 800px) {
    .medioscorp-card { grid-template-columns: 1fr; }
}

.mc-photo-wrap {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background: #0f1f2e;
}
.mc-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.mc-photo-wrap:hover img { transform: scale(1.04); }
.mc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 31, 46, 0) 0%,
        rgba(15, 31, 46, 0.1) 50%,
        rgba(15, 31, 46, 0.4) 100%);
    pointer-events: none;
}
.mc-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(201, 168, 106, 0.95);
    color: #0f1f2e;
    padding: 7px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    z-index: 2;
}

.mc-info {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mc-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.mc-pill {
    background: rgba(15, 118, 110, 0.08);
    color: #0f766e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.mc-info h4 {
    font-family: Georgia, serif;
    font-size: 2.1rem;
    color: #1c1917;
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.1;
}
.mc-info p {
    color: #57534e;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 26px;
}
.mc-stats {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid #f0d9b5;
    border-bottom: 1px solid #f0d9b5;
    margin-bottom: 22px;
}
.mc-stat { flex: 1; }
.mc-stat strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.8rem;
    color: #c9a86a;
    line-height: 1;
    font-weight: 700;
}
.mc-stat span {
    display: block;
    font-size: 0.72rem;
    color: #78716c;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}
.mc-link {
    display: inline-flex;
    align-items: center;
    color: #0f766e;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.2s;
    gap: 6px;
}
.mc-link:hover { gap: 12px; color: #c9a86a; }

/* ═══════════════════════════════════════════════════════════════
   MEDIOS CORP HERO IMAGE (in about-grid)
   ═══════════════════════════════════════════════════════════════ */
.medioscorp-hero {
    aspect-ratio: 4/5 !important;
    background: none !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 60px rgba(15, 31, 46, 0.35) !important;
    position: relative;
}
.medioscorp-hero::before { display: none !important; }
.medioscorp-hero .mc-photo-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
}
.medioscorp-hero .mc-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(1.1);
    transition: transform 0.7s ease;
}
.medioscorp-hero .mc-photo-wrap:hover img { transform: scale(1.05); }
.medioscorp-hero .mc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 31, 46, 0.2) 0%,
        rgba(15, 31, 46, 0.5) 50%,
        rgba(15, 31, 46, 0.92) 100%);
}
.medioscorp-hero .mc-content {
    position: absolute;
    left: 28px; right: 28px; bottom: 28px;
    z-index: 2;
    color: white;
}
.medioscorp-hero .mc-badge {
    display: inline-block;
    background: rgba(201, 168, 106, 0.95);
    color: #0f1f2e;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}
.medioscorp-hero .mc-title {
    color: white !important;
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 8px !important;
}
.medioscorp-hero .mc-tagline {
    color: rgba(201, 168, 106, 0.95) !important;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 20px !important;
}
.medioscorp-hero .mc-quick-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 168, 106, 0.3);
}
.medioscorp-hero .mqs { flex: 1; text-align: center; }
.medioscorp-hero .mqs strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: #c9a86a;
    line-height: 1;
}
.medioscorp-hero .mqs span {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}
.medioscorp-hero .mqs-divider {
    width: 1px;
    height: 24px;
    background: rgba(201, 168, 106, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   MC BADGE POSITION FIX
   ═══════════════════════════════════════════════════════════════ */
.medioscorp-hero .mc-content {
    bottom: 24px !important;
}
.medioscorp-hero .mc-badge {
    margin-bottom: 18px !important;
    transform: translateY(0) !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
}
.medioscorp-hero .mc-title {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    padding-right: 0 !important;
}
.medioscorp-hero .mc-tagline {
    margin-bottom: 18px !important;
}
.medioscorp-hero .mc-quick-stats {
    padding-top: 14px !important;
    margin-top: 4px !important;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER MOBILE FIX - Make headings + text actually readable
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Section headings (Product, Company, Legal) - WAS gray/invisible */
    footer h4,
    footer .footer-heading,
    .footer h4,
    .footer-section h4,
    .footer-col h4,
    footer .footer-title,
    footer strong {
        color: #c9a86a !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        margin-bottom: 14px !important;
        margin-top: 24px !important;
        display: block;
    }
    
    /* Tagline / paragraph text in footer - WAS very faded */
    footer p,
    .footer p,
    footer .footer-tagline,
    footer .footer-text {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Brand line "Real hosting · Real humans" */
    footer .footer-brand p,
    footer .footer-tagline,
    .footer-content > div:first-child p {
        color: rgba(255, 255, 255, 0.75) !important;
    }
    
    /* Footer links */
    footer a,
    .footer a,
    .footer-section a,
    .footer-col a {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1rem !important;
        text-decoration: none;
        display: block;
        padding: 6px 0;
    }
    footer a:hover {
        color: #c9a86a !important;
    }
    
    /* Bottom copyright line */
    footer .footer-bottom,
    .footer-bottom,
    footer .footer-copyright {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.85rem !important;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    /* Footer logo (the gold A box) */
    footer .footer-brand {
        margin-bottom: 24px;
    }
    
    /* Tighten section spacing */
    footer .footer-section,
    footer .footer-col,
    .footer-content > div {
        margin-bottom: 8px;
    }
    
    /* Optional: make footer content 2 columns on phones for visual breathing */
    @media (min-width: 480px) {
        .footer-content,
        .footer-grid,
        footer .container > div:first-child {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
    }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER HEADINGS - DESKTOP fix (was invisible gray)
   Applies to ALL screen sizes
   ═══════════════════════════════════════════════════════════════ */
footer h4,
.footer h4,
.footer-section h4,
.footer-col h4,
footer .footer-heading,
.footer-heading {
    color: #c9a86a !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
}

/* ═══════════════════════════════════════════════════════════════
   FIX text getting too close to screen edges on iPhone 17 Pro Max
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .container,
    main > section > .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    footer .container,
    .footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* For very wide phones (iPhone 17 Pro Max = 430px wide) */
@media (min-width: 400px) and (max-width: 768px) {
    .container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER HEADINGS (Product/Company/Legal) - GOLD EVERYWHERE
   Was invisible - now properly highlighted
   ═══════════════════════════════════════════════════════════════ */
.footer-grid h4,
.footer h4,
footer h4 {
    color: var(--gold) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    margin-bottom: 14px !important;
}

/* Footer links readability */
.footer-grid a,
.footer a,
footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    padding: 4px 0;
}
.footer-grid a:hover,
footer a:hover {
    color: var(--gold) !important;
}

/* Mobile - center the footer on small screens */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }
    .footer-grid h4 {
        text-align: center !important;
        margin-top: 18px !important;
    }
    .footer-grid a {
        display: block;
        text-align: center;
        padding: 6px 0;
    }
    .footer-brand {
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-bottom,
    footer .container > div:last-child {
        text-align: center !important;
    }
    /* Edge padding for wide phones (17 Pro Max) */
    footer .container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER HORIZONTAL CENTERING - iPhone 17 Pro Max + all phones
   Adds proper side margins so content centers horizontally
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* The footer outer container - center its content with side padding */
    footer,
    .footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* The inner container - this is what holds the content */
    footer .container,
    .footer .container {
        max-width: 100% !important;
        padding-left: 32px !important;
        padding-right: 32px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* Footer-grid layout - center it on screen */
    .footer-grid {
        max-width: 320px !important;   /* constrain width so it stays centered */
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    /* Every column inside footer-grid gets centered */
    .footer-grid > div,
    .footer-grid > section {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    /* Footer brand block (logo + tagline) centered */
    .footer-brand {
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto 16px !important;
    }
    
    /* Tagline paragraph centered */
    .footer-brand + p,
    .footer-grid p {
        text-align: center !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    /* Bottom copyright line */
    .footer-bottom,
    footer > .container > div:last-child {
        text-align: center !important;
        padding: 20px 32px !important;
    }
}

/* iPhone 17 Pro Max specific (430px wide) - extra padding */
@media (min-width: 410px) and (max-width: 768px) {
    footer .container,
    .footer .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER MOBILE - KEEP HORIZONTAL COLUMNS (override prev stacking)
   User wants Product / Company / Support / Legal SIDE BY SIDE on mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Reset previous centering rules that forced vertical stack */
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        gap: 16px !important;
        text-align: left !important;
    }
    
    /* Each column stays as a column - text-aligned left */
    .footer-grid > div,
    .footer-grid > section {
        text-align: left !important;
        margin: 0 !important;
        width: auto !important;
    }
    
    /* The brand block (logo + tagline) spans full width above the grid */
    .footer-brand,
    .footer-grid > div:first-child {
        grid-column: 1 / -1 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        margin-bottom: 24px !important;
    }
    
    .footer-brand + p,
    .footer-grid > div:first-child p {
        text-align: left !important;
        max-width: none !important;
        margin: 8px 0 !important;
    }
    
    /* Headings left-aligned within each column */
    .footer-grid h4 {
        text-align: left !important;
        font-size: 0.7rem !important;
        margin-bottom: 10px !important;
    }
    
    /* Links left-aligned, smaller font for fitting on mobile */
    .footer-grid a {
        text-align: left !important;
        display: block !important;
        font-size: 0.85rem !important;
        padding: 3px 0 !important;
    }
    
    /* Container padding for edge breathing room */
    footer .container,
    .footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
    }
    
    /* Bottom copyright */
    .footer-bottom {
        text-align: center !important;
        padding-top: 20px !important;
    }
}

/* Very small phones - if 4 columns too tight, drop to 2 */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MIGRATION COMPARISON - PROFESSIONAL MOBILE REDESIGN v3
   Replaces the spammy "DIY MIGRATION:" repeating cards
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .compare-wrap {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 -4px !important;
        overflow: visible !important;
    }
    .compare-table {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .compare-table thead { display: none !important; }
    .compare-table tbody { display: block !important; }
    
    /* Each row = ONE paired comparison card */
    .compare-table tr {
        display: block !important;
        background: white !important;
        border: 1px solid #f0d9b5 !important;
        border-radius: 16px !important;
        margin: 0 0 16px 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 4px 16px rgba(15, 31, 46, 0.06) !important;
    }
    
    /* The "label" column (Cost, Time, etc.) becomes the card HEADER */
    .compare-table td:first-child {
        display: block !important;
        background: linear-gradient(135deg, #0f1f2e, #1a2f47) !important;
        color: white !important;
        font-family: Georgia, serif !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        padding: 14px 20px !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        border: none !important;
    }
    
    /* DIY column - red side */
    .compare-table td.col-diy {
        display: block !important;
        background: white !important;
        padding: 16px 20px !important;
        margin: 0 !important;
        border-left: none !important;
        border-top: 1px solid #fee2e2 !important;
        color: #57534e !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
        position: relative !important;
        padding-left: 56px !important;
    }
    .compare-table td.col-diy::before {
        content: "DIY" !important;
        position: absolute !important;
        left: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: #fee2e2 !important;
        color: #b91c1c !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        padding: 6px 10px !important;
        border-radius: 6px !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }
    
    /* Ameritechwebs column - gold/teal side */
    .compare-table td.col-us {
        display: block !important;
        background: linear-gradient(135deg, #fff7ed, #fdebd3) !important;
        padding: 16px 20px !important;
        margin: 0 !important;
        border-left: none !important;
        border-top: 1px solid #f0d9b5 !important;
        color: #1c1917 !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        font-weight: 600 !important;
        text-align: left !important;
        position: relative !important;
        padding-left: 56px !important;
    }
    .compare-table td.col-us::before {
        content: "✓ US" !important;
        position: absolute !important;
        left: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: #c9a86a !important;
        color: #0f1f2e !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        padding: 6px 10px !important;
        border-radius: 6px !important;
        letter-spacing: 0.05em !important;
        white-space: nowrap !important;
    }
    
    /* Container padding so cards don't touch edges */
    .compare-wrap,
    section .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: hidden !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   Section containing the comparison - safe padding on mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .section-content,
    .compare-section,
    .why-us-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }
}



/* ═══════════════════════════════════════════════════════════════
   MIGRATION COMPARISON - FINAL CLEAN MOBILE DESIGN
   ONE ruleset only. No conflicts. Last in file = wins.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Container - kill all overflow and clean spacing */
    html, body { overflow-x: hidden !important; max-width: 100vw !important; }
    
    .compare-wrap {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* The TABLE element - reset all desktop styling */
    .compare-table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        background: transparent !important;
        border: none !important;
        border-collapse: separate !important;
        box-shadow: none !important;
    }
    .compare-table thead { display: none !important; }
    .compare-table tbody { display: block !important; width: 100% !important; }
    
    /* Each ROW = ONE comparison card */
    .compare-table tr {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        background: white !important;
        border: 1px solid #f0d9b5 !important;
        border-radius: 14px !important;
        margin: 0 0 14px 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 14px rgba(15, 31, 46, 0.06) !important;
    }
    
    /* CARD HEADER (1st td = label like "Cost", "Time invested") */
    .compare-table tr > td:first-child {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #0f1f2e !important;
        color: white !important;
        font-family: Georgia, serif !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        padding: 12px 16px !important;
        margin: 0 !important;
        border: none !important;
        box-sizing: border-box !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    /* DIY ROW - white background, red pill */
    .compare-table tr > td.col-diy {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        background: white !important;
        color: #57534e !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        text-align: left !important;
        padding: 14px 16px !important;
        margin: 0 !important;
        border: none !important;
        border-top: 1px solid #fee2e2 !important;
        box-sizing: border-box !important;
        line-height: 1.5 !important;
    }
    .compare-table tr > td.col-diy::before {
        content: "DIY" !important;
        flex-shrink: 0 !important;
        background: #fee2e2 !important;
        color: #b91c1c !important;
        font-size: 0.6rem !important;
        font-weight: 700 !important;
        padding: 5px 9px !important;
        border-radius: 6px !important;
        letter-spacing: 0.04em !important;
        text-transform: uppercase !important;
        font-family: -apple-system, sans-serif !important;
        line-height: 1 !important;
    }
    
    /* US ROW - cream gradient, gold checkmark */
    .compare-table tr > td.col-us {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        background: linear-gradient(135deg, #fff7ed, #fdebd3) !important;
        color: #1c1917 !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        text-align: left !important;
        padding: 14px 16px !important;
        margin: 0 !important;
        border: none !important;
        border-top: 1px solid #f0d9b5 !important;
        box-sizing: border-box !important;
        line-height: 1.5 !important;
    }
    .compare-table tr > td.col-us::before {
        content: "✓" !important;
        flex-shrink: 0 !important;
        background: #c9a86a !important;
        color: #0f1f2e !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
        font-family: -apple-system, sans-serif !important;
        line-height: 1 !important;
        min-width: 24px !important;
        text-align: center !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MIGRATION COMPARISON - VIEWPORT-LOCKED FINAL
   Forces table to STAY inside screen no matter what
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Lock the WHOLE container chain to viewport width */
    body, html { overflow-x: hidden !important; }
    
    section, .compare-section, .why-have-us {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        box-sizing: border-box !important;
    }
    
    .compare-wrap {
        max-width: calc(100vw - 24px) !important;
        overflow: hidden !important;
        margin: 0 auto !important;
    }
    
    .compare-table {
        max-width: 100% !important;
        width: 100% !important;
        table-layout: fixed !important;
    }
    
    .compare-table tr {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Header cell - locked to row width */
    .compare-table tr > td:first-child {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 14px !important;
        font-size: 0.92rem !important;
        text-align: center !important;
        overflow-wrap: anywhere !important;
    }
    
    /* DIY/US rows - flex with min-width-0 to force shrink */
    .compare-table tr > td.col-diy,
    .compare-table tr > td.col-us {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 12px 14px !important;
        min-width: 0 !important;
    }
    
    /* Pills - shrink-stop, smaller */
    .compare-table tr > td.col-diy::before,
    .compare-table tr > td.col-us::before {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }
    
    /* The text after the pill - allow shrinking */
    .compare-table tr > td.col-diy,
    .compare-table tr > td.col-us {
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON CARDS - CLEAN REBUILD (replaces compare-table)
   Uses unique cmp-* class names - zero conflict with old CSS
   ═══════════════════════════════════════════════════════════════ */
.cmp-stack {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .cmp-stack {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.cmp-card {
    background: white;
    border: 1px solid #f0d9b5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 31, 46, 0.06);
}

.cmp-header {
    background: linear-gradient(135deg, #0f1f2e, #1a2f47);
    color: white;
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding: 12px 14px;
    line-height: 1.3;
    word-wrap: break-word;
}

.cmp-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 0.92rem;
    line-height: 1.5;
    min-width: 0;
}

.cmp-row.cmp-diy {
    background: white;
    color: #57534e;
    border-top: 1px solid #fee2e2;
}

.cmp-row.cmp-us {
    background: linear-gradient(135deg, #fff7ed, #fdebd3);
    color: #1c1917;
    font-weight: 600;
    border-top: 1px solid #f0d9b5;
}

.cmp-tag-diy,
.cmp-tag-us {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    font-family: -apple-system, sans-serif;
}

.cmp-tag-diy {
    background: #fee2e2;
    color: #b91c1c;
}

.cmp-tag-us {
    background: #c9a86a;
    color: #0f1f2e;
    font-size: 0.85rem;
    min-width: 22px;
    padding: 3px 7px;
}

.cmp-text {
    flex: 1 1 auto;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 480px) {
    .cmp-header { font-size: 0.95rem; }
    .cmp-row { padding: 11px 12px; font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON CARDS - Bump font size slightly for readability
   ═══════════════════════════════════════════════════════════════ */
.cmp-header {
    font-size: 1.15rem !important;
}
.cmp-row {
    font-size: 1rem !important;
}

@media (max-width: 480px) {
    .cmp-header { font-size: 1.05rem !important; }
    .cmp-row { font-size: 0.98rem !important; }
}
