/* ══════════════════════════════
   WHITE BUNNIE BRAND SYSTEM
   Font: Poppins (exact match)
   Colors: #1a1a1a, #ff4500 (orange-red), #ffffff
   Style: Clean, professional, conversion-first
══════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --wb-black: #1a1a1a;
    --wb-dark: #111111;
    --wb-surface: #f7f7f7;
    --wb-white: #ffffff;
    --wb-orange: #5478d1;
    /* --wb-orange: #ff4500; */
    --wb-orange-light: rgba(255, 69, 0, 0.08);
    --wb-orange-mid: rgba(255, 69, 0, 0.18);
    --wb-orange-glow: rgba(255, 69, 0, 0.28);
    --wb-gray: #6b7280;
    --wb-gray-lt: #9ca3af;
    --wb-border: #e5e7eb;
    --wb-blue: #1d4ed8;
    --wb-green: #15803d;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
    --spacing-3xl: 100px;


    --sidebar-w: 380px;
    --sidebar-gap: 40px;


    --muted: #8a7a65;

    --primary-blue: #42b0ff;
    --deep-blue: #29a5e8;

    --blue: #5478d1;

}

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

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

body {
    font-family: "Lato", sans-serif, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--wb-white);
    color: var(--wb-black);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    margin-top: 68px;
    padding: 12px 60px;
    background: var(--wb-surface);
    border-bottom: 1px solid var(--wb-border);
}

.breadcrumb {
    font-size: 12px;
    color: var(--wb-gray-lt);
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--wb-gray);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--wb-orange);
}

.breadcrumb span {
    font-size: 10px;
}


.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--spacing-xl) var(--spacing-3xl);
    width: 100%;
    background-color: #00131b;
    /* background-image: url("../images/herobg.png"); */
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-sm);
    align-items: center;
}


.page-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 24px;
    display: flex;
    gap: var(--sidebar-gap);
    align-items: flex-start;
}


.main-content {
    /* flex: 1; */
    max-width: 100%;
    /* max-width: 200px; */
}


.sidebar {
    width: var(--sidebar-w);
    flex-shrink: 0;
    position: sticky;
    top: 12px;
    margin-top: 52px;
    align-self: flex-start;
}
.seo-audit-form {
    max-width: 600px;
    margin: 0px auto;
    background: #d0daff!important;
	padding: 20px 30px 0px!important;
}


/* ── Sidebar Form ── */
.sidebar-form {
    margin-top: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 15, 0, 0.07);
}

.sidebar-form-header {
    /* background: linear-gradient(135deg, #e76f34, var(--wb-orange)); */

    background: linear-gradient(90deg, #6189ef, #4a88ec);
    padding: 12px;
    /* text-align: center; */
    color: #fff;
}

.sidebar-form-header h3 {
    font-size: 1rem;
    line-height: 1.3;
}

.sidebar-form-header p {
    font-size: 0.78rem;
    opacity: 0.9;
    color: white;
    margin-top: 8px;
}

.sidebar-form-body {
    padding: 18px 22px 22px;
    background: #d0daff;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgb(59, 59, 59);
    /* color: var(--muted); */
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.form-group label span.req {
    color: var(--orange);
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.83rem;
    color: var(--dark);
    /* background: var(--bg); */
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus {
    border-color: var(--orange);
    background: #fff;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--orange);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.73rem;
    /* color: var(--muted); */

    color: rgb(59, 59, 59);
    line-height: 1.4;
}

.form-checkbox label a {
    color: var(--orange);
}

.btn-submit {
    width: 100%;
    padding: 10px;
    /* background: linear-gradient(135deg, var(--orange-light), var(--orange)); */

    background: linear-gradient(90deg, #6189ef, #4a88ec);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity 0.2s, transform 0.15s;

    /* background: linear-gradient(135deg, #e76f34, var(--wb-orange)); */
}

.btn-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}



.hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    z-index: 10;
}

/* Diagonal accent line */
/* .hero::before {
      content: "";
      position: absolute;
      top: 0;
      right: 400px;
      width: 4px;
      height: 100%;
      background: var(--wb-orange);
      opacity: 0.6;
    } */


.hero-left {
    /* padding: 72px 80px 72px 80px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Industry tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wb-orange-light);
    border: 1px solid rgba(255, 69, 0, 0.25);
    padding: 7px 16px;
    border-radius: 100px;
    width: fit-content;
    font-size: 11px;
    font-weight: 500;
    color: var(--wb-orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}


.hero-tag::before {
    content: "●";
    font-size: 7px;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero h1 {
    font-size: clamp(42px, 4vw, 46px);
    font-weight: 800;
    color: var(--wb-white);
    line-height: 1.2;
    /* letter-spacing: -1.5px; */
    margin-bottom: 20px;

}

/* The big orange number in the headline */
.hero h1 .hero-stat {
    /* color: var(--wb-orange);
    line-height: 1; */
    /* display: block; */


    font-size: clamp(52px, 6vw, 70px);
    background: linear-gradient(135deg, var(--primary-blue), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 10px;



}

/* H2 for SEO: keyword-rich subheading visible on page */
.hero-h2 {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 26px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-h2 strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* KPI strip */
.hero-kpis {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 36px;
    margin-top: 8px;
}

.hero-kpi {
    flex: 1;
}

.hero-kpi+.hero-kpi {
    padding-left: 28px;
    margin-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.kpi-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--wb-white);
    display: block;
    line-height: 1;
    letter-spacing: -1px;
}

.kpi-num em {
    /* color: var(--wb-orange);
    font-style: normal; */

    background: linear-gradient(135deg, var(--primary-blue), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: inline-block;

}

.kpi-label {
    font-size: 18px;
    color: rgba(246, 246, 246, 0.668);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.kpi-detail {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.641);
    margin-top: 2px;
}

/* ── FORM PANEL ── */
.hero-form {
    background: var(--wb-white);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    overflow-y: auto;
}

.form-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wb-orange);
    margin-bottom: 6px;
}

.form-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--wb-black);
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.form-sub {
    font-size: 13px;
    color: var(--wb-gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Free value box */
.form-value-box {
    background: #fffbf5;
    border: 1px solid #fde8cc;
    border-left: 3px solid var(--wb-orange);
    padding: 12px 14px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.form-value-box p {
    font-size: 12px;
    color: #92400e;
    font-weight: 500;
    line-height: 1.5;
}

.form-value-box strong {
    color: var(--wb-orange);
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--wb-black);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--wb-border);
    border-radius: 6px;

    font-size: 13px;
    color: var(--wb-black);
    background: var(--wb-white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--wb-orange);
    box-shadow: 0 0 0 3px var(--wb-orange-light);
}

.field textarea {
    resize: none;
    height: 80px;
}

.field select {
    -webkit-appearance: none;
    cursor: pointer;
}

.btn-form {
    width: 100%;
    padding: 14px;
    background: var(--wb-orange);
    color: white;
    border: none;

    font-size: 16px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 6px 24px var(--wb-orange-mid);
    transition: all 0.2s;
    letter-spacing: 0.2px;
    margin-top: 4px;
}

.btn-form:hover {
    background: #e03d00;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px var(--wb-orange-glow);
}

.form-privacy {
    font-size: 11px;
    color: var(--wb-gray-lt);
    text-align: center;
    margin-top: 10px;
}

.form-trust-strip {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--wb-border);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--wb-gray);
}

.trust-badge::before {
    font-size: 13px;
}

.trust-badge.stars::before {
    content: "⭐";
}

.trust-badge.clients::before {
    content: "🏢";
}

.trust-badge.years::before {
    content: "🏆";
}

.form-success-msg {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success-msg .big-check {
    font-size: 52px;
    display: block;
    margin-bottom: 12px;
}

.form-success-msg h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--wb-black);
    margin-bottom: 8px;
}

.form-success-msg p {
    font-size: 13px;
    color: var(--wb-gray);
    line-height: 1.6;
}

/* ── SECTION SYSTEM ── */
.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 48px;
}



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

.section-wide-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 48px;
}

.divider {
    border: none;
    border-top: 1px solid var(--wb-border);
}

.divider-wide {
    max-width: 1160px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid var(--wb-border);
    padding: 0 48px;
    height: 1px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wb-orange);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--wb-orange);
}

h2.sh2 {
    font-size: clamp(36px, 3vw, 48px);
    font-weight: 800;
    color: var(--wb-black);
    text-wrap: balance;
    /* letter-spacing: -1px; */
    line-height: 1.15;
    margin-bottom: 16px;
}

h2.sh2 em {
    color: var(--wb-orange);
    font-style: normal;

    /* background: linear-gradient(135deg, var(--primary-blue), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; */
}

.section-lead {
    font-size: 16px;
    color: var(--wb-gray);
    line-height: 1.8;
    max-width: 760px;
}

.section-lead+.section-lead {
    margin-top: 14px;
}

/* ── PROBLEM CARDS ── */
.prob-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.prob-card {
    padding: 28px;
    border: 1.5px solid var(--wb-border);
    border-radius: 8px;
    background: var(--wb-white);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.prob-card:hover {
    border-color: var(--wb-orange);
    box-shadow: 0 8px 32px var(--wb-orange-light);
    transform: translateY(-2px);
}

.prob-icon {
    font-size: 30px;
    margin-bottom: 12px;
    display: block;
}

.prob-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wb-black);
    margin-bottom: 6px;
}

.prob-text {
    font-size: 13px;
    color: var(--wb-gray);
    line-height: 1.7;
}

/* ── BEFORE/AFTER TABLE ── */
.ba-table-wrap {
    overflow-x: auto;
    margin-top: 36px;
    border-radius: 8px;
    border: 1px solid var(--wb-border);
    box-shadow: var(--shadow);
}

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

table.ba thead th {
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
}

table.ba thead th:first-child {
    color: var(--wb-gray);
    background: #fafafa;
}

table.ba thead th:nth-child(2) {
    background: #fff5f5;
    color: #c0392b;
    border-top: 2px solid #f87171;
}

table.ba thead th:nth-child(3) {
    background: #f0fdf4;
    color: var(--wb-green);
    border-top: 2px solid #4ade80;
}

table.ba thead th:nth-child(4) {
    background: #fff7ed;
    color: var(--wb-orange);
    border-top: 2px solid var(--wb-orange);
}

table.ba tbody tr:hover td {
    background: #fafaf9;
}

table.ba tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--wb-border);
    font-size: 14px;
}

table.ba tbody td:first-child {
    font-weight: 600;
    color: var(--wb-black);
}

table.ba tbody td:nth-child(2) {
    color: var(--wb-gray-lt);
    text-decoration: line-through;
    font-size: 13px;
}

table.ba tbody td:nth-child(3) {
    color: var(--wb-green);
    font-weight: 700;
}

table.ba tbody td:nth-child(4) {
    font-weight: 800;
    color: var(--wb-orange);
    font-size: 16px;
}

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

/* ── CHART ── */
.chart-box {
    margin-top: 36px;
    border: 1px solid var(--wb-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chart-topbar {
    padding: 16px 24px;
    background: #fafafa;
    border-bottom: 1px solid var(--wb-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.chart-topbar-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--wb-black);
}

.chart-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(29, 78, 216, 0.08);
    color: var(--wb-blue);
    border: 1px solid rgba(29, 78, 216, 0.2);
}

.chart-box img {
    width: 100%;
    display: block;
}

.chart-cap {
    padding: 12px 24px;
    font-size: 12px;
    color: var(--wb-gray-lt);
    font-style: italic;
    background: #fafafa;
}

/* ── STRATEGY GRID ── */
.strat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.strat-card {
    padding: 28px;
    border: 1.5px solid var(--wb-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    background: var(--wb-white);
}

.strat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wb-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.strat-card:hover {
    border-color: rgba(255, 69, 0, 0.3);
    box-shadow: 0 8px 32px var(--wb-orange-light);
    transform: translateY(-3px);
}

.strat-card:hover::after {
    transform: scaleX(1);
}

.strat-num {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--wb-orange);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.strat-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--wb-black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.strat-text {
    font-size: 13px;
    color: var(--wb-gray);
    line-height: 1.7;
}

.strat-pill {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 12px;
    background: rgb(226, 231, 243);
    border: 1px solid rgba(0, 89, 255, 0.2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wb-orange);
    border-radius: 100px;
}

/* ── TIMELINE ── */
.tl {
    position: relative;
    margin-top: 48px;
    padding-left: 44px;
}

.tl::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--wb-orange), #ddd);
}

.tl-item {
    position: relative;
    margin-bottom: 44px;
}

.tl-dot {
    position: absolute;
    left: -44px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--wb-white);
    border: 2px solid var(--wb-orange);
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.1);
}

.tl-period {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wb-orange);
    margin-bottom: 4px;
}

.tl-phase {
    font-size: 18px;
    font-weight: 800;
    color: var(--wb-black);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.tl-desc {
    font-size: 14px;
    color: var(--wb-gray);
    line-height: 1.75;
    max-width: 640px;
}

/* ── AI SECTION ── */
.ai-band {
    background: var(--wb-black);
    padding: 30px 12px;
    border-top: 4px solid var(--wb-orange);
}

.ai-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* .ai-band .section-eyebrow {
    color: #ff7043;
} */

.ai-band .sh2 {
    color: var(--wb-white);
}

/* .ai-band .sh2 em {
    color: #ff7043;
} */

.ai-band .section-lead {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.ai-score-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin: 28px 0;
}

.ai-big-num {
    font-size: 88px;
    font-weight: 900;
    color: var(--wb-white);
    letter-spacing: -4px;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.ai-big-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.ai-big-sub {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.ai-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ai-plat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 18px;
    transition: border-color 0.2s, background 0.2s;
}

.ai-plat:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 69, 0, 0.3);
}

.ai-plat-name {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    margin-bottom: 10px;
}

.ai-plat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ai-plat-n {
    font-size: 26px;
    font-weight: 800;
    color: var(--wb-white);
    line-height: 1;
}

.ai-plat-l {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}

.ai-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);

    display: flex;
    justify-content: center;
    align-items: center;
}

/* .ai-img-wrap img {
    width: 100%;
    display: block;
} */

.ai-traffic-chip {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ai-chip-pct {
    font-size: 28px;
    font-weight: 800;
    color: #60a5fa;
}

.ai-chip-txt {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* ── RESULTS BAND ── */
.results-band {
    background: var(--wb-surface);
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    /* margin-top: 48px; */
    border: 1px solid var(--wb-border);
    border-radius: 8px;
    overflow: hidden;
}

.res-block {
    background: var(--wb-white);
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid var(--wb-border);
    transition: background 0.2s;
}

.res-block:last-child {
    border-right: none;
}

.res-block:hover {
    background: #fffaf8;
}

.res-num {
    font-size: 38px;
    font-weight: 900;
    color: var(--wb-orange);
    display: block;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.res-label {
    font-size: 11px;
    color: var(--wb-gray);
    line-height: 1.5;
    font-weight: 600;
}

/* ── QUOTE ── */
.quote-band {
    background: var(--wb-black);
    padding: 80px 0;
}

.quote-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}

.quote-q {
    font-size: 72px;
    font-weight: 900;
    color: var(--wb-orange);
    line-height: 0.6;
    display: block;
    margin-bottom: 24px;
    opacity: 0.5;
}

.quote-body {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--wb-white);
    line-height: 1.5;
    letter-spacing: -0.3px;
    margin-bottom: 36px;
}

.quote-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.quote-av {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--wb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.quote-stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.quote-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--wb-white);
}

.quote-co {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── LEARNINGS ── */
.learn-list {
    margin-top: 36px;
}

.learn-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--wb-border);
}

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

.learn-num {
    min-width: 36px;
    height: 36px;
    background: #e9eeff;
    border: 1px solid rgba(0, 110, 255, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--wb-orange);
    flex-shrink: 0;
}

.learn-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--wb-black);
    margin-bottom: 6px;
}

.learn-text {
    font-size: 13px;
    color: var(--wb-gray);
    line-height: 1.75;
}

/* ── AEO FAQ SECTION ── */
.faq-section {
    background: var(--wb-surface);
    padding: 40px 0;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--wb-border);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 20px;
    font-family: Lato, sans-serif;
}

.faq-q-text {
    font-size: 18px;
    font-weight: 700;
    color: rgb(72, 72, 72);
    line-height: 1.4;
    text-align: left;
}

.faq-icon {
    min-width: 22px;
    height: 22px;
    border-radius: 50%;

    
    background: rgb(226, 231, 243);
    border: 1px solid rgba(0, 89, 255, 0.2);


    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--wb-orange);
    font-weight: 700;
    transition: transform 0.2s, background 0.2s;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--wb-orange);
    color: white;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-a-text {
    font-size: 15px;
    color: var(--wb-gray);
    line-height: 1.8;
    padding-right: 40px;
}

.faq-a-text strong {
    color: var(--wb-black);
    font-weight: 600;
}

/* ── BOTTOM CTA ── */
.cta-band {
    background: var(--wb-orange);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "GROW";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.06);
    pointer-events: none;
    letter-spacing: -8px;
    white-space: nowrap;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 48px;
}

.cta-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    color: var(--wb-white);
    /* letter-spacing: -0.2px; */
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-a {
    background: var(--wb-black);
    color: white;
    padding: 16px 40px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.btn-cta-a:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn-cta-b {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-cta-b:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* ── FOOTER ── */
footer {
    padding: 36px 60px;
    border-top: 1px solid var(--wb-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.foot-brand {
    font-size: 17px;
    font-weight: 800;
    color: var(--wb-black);
}

.foot-brand em {
    color: var(--wb-orange);
    font-style: normal;
}

.foot-links {
    display: flex;
    gap: 24px;
}

.foot-links a {
    font-size: 13px;
    color: var(--wb-gray);
    text-decoration: none;
    font-weight: 500;
}

.foot-links a:hover {
    color: var(--wb-orange);
}

.foot-copy {
    font-size: 12px;
    color: var(--wb-gray-lt);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-form {
        position: static;
        box-shadow: none;
        border-top: 1px solid var(--wb-border);
    }

    .ai-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

@media (max-width: 768px) {

    .section-wide {
        padding: 36px 12px;
    }

    .results-band {
        padding: 40px 0;
    }

    .sidebar {
        display: none;
    }

    .page-wrap {
        padding: 6px 8px;
    }

    .hero-kpis {
        padding-top: 10px;
        margin-top: 0px;
    }

    .hero-kpi+.hero-kpi {
        padding-left: 0px;
        margin-left: 14px;
    }

    nav {
        padding: 0 20px;
    }

    .breadcrumb-bar {
        padding: 10px 20px;
    }

    .section,
    .section-wide-inner,
    .ai-inner,
    .quote-inner,
    .faq-inner,
    .cta-inner,
    .results-wide-inner {
        padding: 16px 8px;
    }

    .prob-grid,
    .strat-grid {
        grid-template-columns: 1fr;
    }

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

    .ai-platforms {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .foot-links {
        justify-content: center;
    }

    .hero {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

}














.testimonial-section {
    width: 100%;
    /* max-width: 1200px; */
    /* border-radius: 16px; */
    /* background: linear-gradient(120deg, #3e6dd1 0%, #416fe3 55%, #207af0 100%); */


    /* background: linear-gradient(135deg, #5d69ed 0%, #6d78f2 100%); */
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 50%, #1D5AFF 100%);



    /* background: #2e5fa3; */

    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 160px;
    position: relative;
    /* box-shadow: 0 20px 60px rgba(232, 130, 12, 0.35); */
    color: #fff;
}

/* Subtle texture overlay */
.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ---- Logo Side ---- */
.logo-side {
    flex: 0 0 38%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.logo-side::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #7B1E1E;
    letter-spacing: -1px;
    font-style: italic;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
}

.logo-sub {
    font-size: clamp(0.65rem, 1.2vw, 0.85rem);
    font-weight: 700;
    color: #7B1E1E;
    letter-spacing: 1px;
    align-self: flex-end;
    margin-top: -4px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* ---- Review Side ---- */
.review-side {
    flex: 1;
    padding: 2rem 2.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    background: #c97a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    background: linear-gradient(135deg, #d4843a, #b86518);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    /* color: #1a0a00; */
    line-height: 1;
}

.reviewer-title {
    font-size: 0.82rem;
    /* color: rgba(30,10,0,0.72); */
    font-weight: 500;
}

/* Stars */
.stars {
    display: flex;
    gap: 3px;
    margin-top: 0.1rem;
}

.star {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

.star svg {
    width: 100%;
    height: 100%;
}

.logo-image {
    width: auto;
    height: 6rem;
    object-fit: cover;
}


/* Review text */
.review-title {
    font-size: 1.4rem;
    font-weight: 700;
    /* color: #1a0a00; */
    margin-top: 0.2rem;
}

.review-body {
    font-size: 0.88rem;
    /* color: rgba(30,10,0,0.8); */
    line-height: 1.6;
    font-weight: 400;
    max-width: 560px;
}


















/* =====================================================
   ✅ GLOBAL RESPONSIVE FIXES (SAFE + CLEAN)
===================================================== */

/* Improve container behavior */
.hero,
.page-wrap,
.section-wide-inner,
.ai-inner {
    width: 100%;
}

/* Prevent overflow issues globally */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   ✅ HERO FIX (MAIN ISSUE)
===================================================== */

/* Tablet fix */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        max-width: 500px;
    }
}

/* Mobile fix */
@media (max-width: 768px) {
    .hero {
        padding: 40px 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h1 .hero-stat {
        font-size: 42px;
    }

    .hero-h2 {
        font-size: 14px;
    }
}

/* =====================================================
   ✅ KPI FIX (VERY IMPORTANT)
===================================================== */

@media (max-width: 768px) {
    .hero-kpis {
        flex-wrap: wrap;
        gap: 16px;
        border-top: none;
    }

    .hero-kpi {
        width: 100%;
        text-align: center;
    }

    .hero-kpi+.hero-kpi {
        border: none;
        margin: 0;
        padding: 0;
    }
}

/* =====================================================
   ✅ PAGE LAYOUT FIX (SIDEBAR + CONTENT)
===================================================== */

@media (max-width: 1100px) {
    .page-wrap {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: relative;
        margin-top: 20px;
    }
}

/* Keep sidebar hidden on small mobile */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
}

/* =====================================================
   ✅ SECTION SPACING FIX
===================================================== */

@media (max-width: 768px) {
    .section {
        padding: 36px 12px;
    }

    /* .section-wide-inner, */
    .ai-inner,
    .faq-inner,
    .cta-inner {
        padding: 0 16px;
    }
}

/* =====================================================
   ✅ GRID FIXES
===================================================== */

@media (max-width: 900px) {
    .strat-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ✅ AI SECTION FIX
===================================================== */

@media (max-width: 768px) {
    .ai-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .ai-platforms {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ✅ TESTIMONIAL FIX (IMPORTANT)
===================================================== */

@media (max-width: 900px) {
    .testimonial-section {
        flex-direction: column;
        text-align: center;
    }

    .logo-side {
        flex: none;
        width: 100%;
        padding: 20px;
    }

    .logo-side::after {
        display: none;
    }

    .review-side {
        padding: 20px;
        align-items: center;
    }

    .review-body {
        max-width: 100%;
    }
}

/* =====================================================
   ✅ TABLE MOBILE FIX (already good but improved)
===================================================== */

@media (max-width: 768px) {
    .ba-table-wrap {
        border-radius: 6px;
    }

    table.ba {
        font-size: 12px;
    }

    table.ba td,
    table.ba th {
        padding: 10px;
    }
}
/* Wrapper */
#cs-archive-wrapper {
  font-family: Arial, sans-serif;
}

/* Banner */
.cs-banner {
  width: 100%;
  padding: 100px 20px;
  background: #00131b;
  color: #fff;
  text-align: center;
}

.cs-title {
  font-size: clamp(52px, 6vw, 70px);
    background: linear-gradient(135deg, #42b0ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 10px;
}

.cs-desc {
    max-width: 900px;
    margin: 0 auto;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    opacity: 0.85;
}

/* Grid */
.cs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.cs-card {
  flex: 0 0 calc(25% - 20px);
    height: 270px;
    background-color: rgba(0,0,0,0.4);
   
    border: 1px solid #ccc;
    object-fit: cover;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;   
    transition: all 0.4s ease;
}

/* Overlay */
.cs-overlay {
    position: absolute;
    bottom: 0;
    text-shadow: 1px 1px 1px #6bc1ff;
    width: 100%;
	text-align:center;
    font-size: 24px;
    padding: 20px 20px 30px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* Hover */
.cs-card:hover {
  transform: translateY(-8px);
}

.cs-card:hover .cs-overlay {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .cs-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .cs-card {
    flex: 0 0 100%;
  }

  .cs-title {
    font-size:32px;
  }
  .cs-banner{
  padding:70px 10px;
  }
  .cs-desc{
   font-size:20px;
   font-weight:600;
  }
}