*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --brand: #e8344e;
    --brand-dark: #c01e36;
    --brand-light: #fdf0f2;
    --brand-mid: #f9c6cc;
    --accent: #2563eb;
    --ink: #1a1a2e;
    --ink-mid: #4a4a6a;
    --ink-light: #8888aa;
    --surface: #f8f8fc;
    --border: #e8e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 16px rgba(26, 26, 46, 0.08);
    --shadow-hover: 0 8px 32px rgba(26, 26, 46, 0.14);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-light);
    border: 1px solid var(--brand-mid);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
}
h1 {
    font-size: clamp(34px, 5vw, 62px);
}
h2 {
    font-size: clamp(26px, 3.5vw, 44px);
}
h3 {
    font-size: clamp(18px, 2.2vw, 24px);
}
p {
    color: var(--ink-mid);
    font-size: 16px;
    line-height: 1.75;
}
.lead {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.75;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 52, 78, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}
.btn-outline:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
}
.btn-white {
    background: #fff;
    color: var(--ink);
}
.btn-white:hover {
    background: #f0f0f8;
    transform: translateY(-1px);
}

.container,
.ws-container,
.pricing-content-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.section {
    padding: 80px 0;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #fdf6f8 0%, #f0f4ff 100%);
    padding: 41px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle,
        rgba(232, 52, 78, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--brand-mid);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(232, 52, 78, 0.1);
}
.hero h1 {
    margin-bottom: 20px;
}
.hero h1 .hl {
    color: var(--brand);
}
.hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink-mid);
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}
.stat-item {
    padding: 0 28px;
    border-right: 1px solid var(--border);
}
.stat-item:first-child {
    padding-left: 0;
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: #86b413;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: #000;
    margin-top: 4px;
    font-weight: 500;
}

/* Hero image container */
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hero-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}
.hero-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.18) 0%,
        transparent 60%
    );
}
.hero-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hf1 {
    top: 24px;
    right: 24px;
}
.hf2 {
    bottom: 28px;
    left: 24px;
}
.hf-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.hf-icon.green {
    background: #dcfce7;
    color: #16a34a;
}
.hf-icon.blue {
    background: #dbeafe;
    color: var(--accent);
}
.hf-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}
.hf-lbl {
    font-size: 11px;
    color: #000;
    margin-top: 2px;
    font-weight: 500;
}
.panel-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    color: #86b413;
}

.panel-title span {
    color: #ef3b33;
}
.seo-ticker {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 0px 0;
    position: relative;
}

.seo-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tickerMove 60s linear infinite; /* slower */
}

.seo-ticker-track span {
    position: relative;
    flex-shrink: 0;
    font-size: 42px;
    font-weight: 600;
    color: #05054f;
    white-space: nowrap;
    padding-right: 120px;
}

/* Strawberry Separator */
.seo-ticker-track span::after {
    content: "🍓";
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.seo-ticker:hover .seo-ticker-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .seo-ticker-track span {
        font-size: 28px;
        padding-right: 80px;
    }

    .seo-ticker-track span::after {
        font-size: 20px;
        right: 25px;
    }
}
.hero-btns .btn-primary {
    background: #27500a;
    border: 1px solid #27500a;
    color: #fff;
}

.hero-btns .btn-primary:hover {
    background: #1f3d08;
    border-color: #1f3d08;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 80, 10, 0.25);
}

.hero-btns .btn-primary i {
    color: #fff;
}
/* ==================================================
   SERVICES TABS SECTION
================================================== */

.services-tabs-section {
    padding: 100px 0;
    background: #f8f9fc;
    position: relative;
}

.services-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-badge {
    display: inline-block;
    padding: 10px 22px;
    background: #fff0f0;
    color: #ef3b33;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}
.services-heading h2 {
    font-size: clamp(43px, 3vw, 60px);
    font-weight: 700;
    color: #86b413;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 0;
}

.services-heading h2 span {
    color: #ef3b33;
}

.services-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
}

/* ==================================================
   TAB MENU
================================================== */

.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.service-tab {
    border: none;
    background: #fff;
    color: #08104d;
    padding: 15px 30px;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.service-tab:hover {
    transform: translateY(-3px);
}

.service-tab.active {
    background: #ef3b33;
    color: #fff;
}

/* ==================================================
   PANEL
================================================== */

.service-panel {
    display: none;
    animation: fadeUp 0.5s ease;
}

.service-panel.active {
    display: block;
}

.panel-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ==================================================
   LEFT CONTENT
================================================== */

.panel-label {
    display: inline-block;
    background: #eef2ff;
    color: #08104d;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.panel-content h3 {
    font-size: 42px;
    font-weight: 800;
    color: #08104d;
    line-height: 1.2;
    margin-bottom: 15px;
}

.panel-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #27500a;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 700;
    transition: 0.3s;
}

.panel-btn:hover {
    background: #08104d;
    color: #fff;
}

/* ==================================================
   SERVICES GRID
================================================== */

.panel-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center horizontally */
    gap: 24px;
}

.service-item {
    width: calc(50% - 12px);
    min-height: 100px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 24px 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e8ebf3;

    font-size: 18px;
    font-weight: 700;
    color: #08104d;

    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #ef3b33;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.service-item::before {
    content: "🍓";
    margin-right: 10px;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #ef3b33;
    background: #fff;
    box-shadow: 0 12px 30px rgba(239, 59, 51, 0.12);
}

/* ==================================================
   ANIMATION
================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {
    .panel-grid {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .panel-content h3 {
        font-size: 34px;
    }

    .panel-services {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .services-tabs-section {
        padding: 70px 0;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .panel-grid {
        padding: 25px;
    }

    .panel-services {
        grid-template-columns: 1fr;
    }

    .service-tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .panel-content h3 {
        font-size: 28px;
    }
}

.ws-section {
    padding: 75px 0;
    background: #f8f9fc;
}

.ws-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.ws-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ws-line {
    width: 40px;
    height: 2px;
    background: #ef3b33;
}

.ws-tag {
    font-size: 13px;
    font-weight: 600;
    color: #ef3b33;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ws-headline {
    font-size: 44px;
    font-weight: 800;
    color: #08104d;
    line-height: 1.15;
    max-width: 580px;
    margin-bottom: 16px;
}

.ws-headline span {
    color: #ef3b33;
}

.ws-sub {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* Card Grid */

.ws-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.ws-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.ws-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ef3b33;
    border-radius: 16px 16px 0 0;
}

.ws-num {
    font-size: 56px;
    font-weight: 800;
    color: #ef3b33;
    line-height: 1;
    opacity: 0.08;
    position: absolute;
    top: 16px;
    right: 20px;
}

.ws-icon {
    width: 48px;
    height: 48px;
    background: #fff4f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ws-icon i {
    color: #ef3b33;
    font-size: 22px;
}

.ws-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #86b413;
    margin-bottom: 10px;
}

.ws-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* Stats */

.ws-proof {
    background: #08104d;
    border-radius: 16px;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ws-stat {
    text-align: center;
    padding: 0 16px;
}

.ws-stat + .ws-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-stat h4 {
    font-size: 40px;
    font-weight: 800;
    color: #ef3b33;
    margin-bottom: 6px;
}

.ws-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */

@media (max-width: 767px) {
    .ws-grid {
        grid-template-columns: 1fr;
    }

    .ws-headline {
        font-size: 32px;
    }

    .ws-proof {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ws-stat + .ws-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
    }
}
.ws-headline {
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 700;
    color: #86b413;
    line-height: 1.15;
    max-width: 580px;
    margin-bottom: 16px;
    /* Change these two lines */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ws-sub {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 60px;
    /* Add these */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ws-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center; /* Add this */
}
/* ── MANIFESTO ── */
.manifesto {
    background: #282834;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.manifesto::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 50% 40%,
        rgba(232, 52, 78, 0.16) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.manifesto h2 {
    color: #fff;
    margin-bottom: 16px;
}
.manifesto p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto 32px;
}

/* ── AI VISIBILITY ── */
.ai-section {
    padding: 80px 0;
    background: #fff;
}
.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ai-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    display: block;
}
.ai-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ai-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.22s;
}
.ai-card:hover {
    border-color: var(--brand-mid);
    background: var(--brand-light);
    transform: translateX(4px);
}
.ai-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1.5px solid var(--brand-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brand);
    flex-shrink: 0;
    transition: all 0.22s;
}
.ai-card:hover .ai-card-icon {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.ai-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.ai-card p {
    font-size: 13px;
    color: var(--ink-mid);
    margin: 0;
}
.manifesto {
    --manifesto-title-color: #ffffff;

    --manifesto-para-color: rgba(255, 255, 255, 0.75);
    --manifesto-para-size: 18px;
    --manifesto-para-weight: 400;
    --manifesto-para-line-height: 1.8;

    background: #282834;
    padding: 57px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.manifesto p {
    color: var(--manifesto-para-color) !important;
    font-size: var(--manifesto-para-size) !important;
    font-weight: var(--manifesto-para-weight) !important;
    line-height: var(--manifesto-para-line-height) !important;

    max-width: 820px;
    margin: 0 auto 32px;
}
/* ── RESULTS ── */
.results-section {
    background: var(--surface);
    padding: 80px 0;
}
.wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.win-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
}
.win-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand);
}
.win-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.win-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand);
    margin-bottom: 16px;
}
.win-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}
.win-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin: 8px 0 4px;
}
.win-desc {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.6;
}

/* ── DASHBOARD ── */
.dashboard-section {
    padding: 80px 0;
}
.dashboard-inner {
    background: var(--ink);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.dashboard-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 70% at 50% 50%,
        rgba(232, 52, 78, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.dashboard-header {
    text-align: center;
    padding: 60px 40px 40px;
    position: relative;
}
.dashboard-header h2 {
    color: #fff;
    margin-bottom: 16px;
}
.dashboard-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 40px;
}
.dash-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}
.dash-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 18px;
}
.dash-feat i {
    color: var(--brand);
    font-size: 17px;
}
.dash-feat span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.dash-img-wrap {
    margin: 0 32px 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.dash-img-wrap img {
    width: 100%;
    display: block;
    height: 340px;
    object-fit: cover;
}
.mock-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0 32px 40px;
}
.mock-metric {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mock-num {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}
.mock-num.green {
    color: #4ade80;
}
.mock-num.red {
    color: #fb7185;
}
.mock-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
}

/* ── TESTIMONIALS ── */
/* Testimonials Heading */
.testi-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff3e8;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.testi-title {
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #86b413;
    margin: 0 0 18px;
}

.testi-title span {
    color: var(--brand);
    position: relative;
}

.testi-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 10px;
    background: rgba(255, 99, 71, 0.18);
    z-index: -1;
    border-radius: 20px;
}

.testi-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}
.testi-section {
    padding: 0px 0 33px;
    background: #fff;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.testi-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.22s;
}
.testi-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--brand-mid);
}
.testi-card.featured {
    background: var(--brand-light);
    border-color: var(--brand-mid);
}
.testi-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.testi-text {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.testi-role {
    font-size: 12px;
    color: var(--ink-light);
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--ink);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 80% at 50% 50%,
        rgba(232, 52, 78, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.cta-band h2 {
    color: #fff;
    margin-bottom: 16px;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    font-size: 18px;
}
.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-grid,
    .why-top,
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wins-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-tiles {
        grid-template-columns: 1fr 1fr;
    }
    .mock-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-img-wrap img,
    .why-img-wrap img,
    .ai-img-wrap img {
        height: 340px;
    }
    .dash-img-wrap,
    .mock-metrics {
        margin-left: 20px;
        margin-right: 20px;
    }
    .hero-img-wrap {
        max-width: 540px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .wins-grid {
        grid-template-columns: 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .why-tiles {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats {
        padding-top: 20px;
    }
    .stat-item {
        padding: 12px 18px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        width: 50%;
    }
    .stat-item:nth-child(odd) {
        padding-left: 0;
    }
    .dashboard-header {
        padding: 36px 20px 28px;
    }
    .dash-img-wrap {
        margin-left: 12px;
        margin-right: 12px;
    }
    .mock-metrics {
        margin: 0 12px 28px;
        grid-template-columns: 1fr 1fr;
    }
    .dash-feat {
        padding: 10px 14px;
    }
}
@media (max-width: 480px) {
    .why-tiles {
        grid-template-columns: 1fr;
    }
    .hero-btns {
        flex-direction: column;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        justify-content: center;
    }
    .hero-btns .btn,
    .cta-btns .btn {
        max-width: 300px;
        width: 100%;
    }
    .stat-item {
        width: 100%;
    }
}
/* ════════════════════════════════
   PAGE HERO SECTION — Contact
   Brand: #E3362E (red) | #86B413 (green)
════════════════════════════════ */

.page-hero-section {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 78px;

    /* gradient: soft peach-left → soft pink-right matching reference */
    background: linear-gradient(
        120deg,
        #fde8e8 0%,
        #fce4f0 40%,
        #f8e0f5 70%,
        #f0e4fc 100%
    );
}

/* dotted pattern overlay — top right like reference */
.page-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-image: radial-gradient(
        circle,
        rgba(227, 54, 46, 0.15) 1.2px,
        transparent 1.2px
    );
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
}

/* red accent bar — right edge like reference */
.page-hero-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 5px;
    height: 70%;
    background: #e3362e;
    border-radius: 4px 0 0 4px;
    z-index: 1;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 24px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #86b413;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.page-hero-title span {
    color: #e3362e;
}

/* ==================================================
   COMPREHENSIVE RESPONSIVE SYSTEM FOR ALL DEVICES
   (Desktop, Laptops, Tablets, and Small Mobiles)
================================================== */

/* ── Container Consistency ── */
.container,
.ws-container,
.pricing-content-container {
    width: 100% !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
}

/* ── Large Desktop & Laptop (1024px – 1280px) ── */
@media (max-width: 1280px) {
    .container,
    .ws-container,
    .pricing-content-container {
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .hero-grid {
        gap: 36px;
    }

    .panel-grid {
        grid-template-columns: 340px 1fr;
        gap: 32px;
        padding: 36px;
    }
}

/* ── Tablets & Small Laptops (max-width: 991px) ── */
@media (max-width: 991px) {
    .container,
    .ws-container,
    .pricing-content-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .page-hero-section {
        margin-top: 72px;
        min-height: 150px;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero-grid,
    .panel-grid,
    .ai-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-img-wrap {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-img-wrap img,
    .ai-img-wrap img,
    .dash-img-wrap img {
        width: 100%;
        height: auto !important;
        max-height: 420px;
    }

    .panel-content {
        width: 100%;
    }

    .panel-content h3 {
        font-size: 32px;
    }

    .panel-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        width: 100%;
    }

    .service-item {
        width: 100% !important;
    }

    .ws-grid,
    .testi-grid,
    .wins-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .mock-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobile Landscape & Tablets (max-width: 768px) ── */
@media (max-width: 768px) {
    .container,
    .ws-container,
    .pricing-content-container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero-btns,
    .cta-btns {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .hero-btns .btn,
    .cta-btns .btn {
        width: auto !important;
        min-width: 160px !important;
        max-width: 100% !important;
        padding: 12px 24px !important;
        font-size: 14px !important;
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        border-top: 1px solid var(--border) !important;
        padding-top: 20px !important;
        width: 100% !important;
    }

    .stat-item {
        width: 100% !important;
        padding: 14px 12px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
        text-align: center !important;
    }

    .stat-num {
        font-size: 24px !important;
    }

    .stat-label {
        font-size: 12px !important;
    }

    .hero-float {
        position: static !important;
        width: 100% !important;
        margin: 10px 0 0 0 !important;
        box-sizing: border-box !important;
        justify-content: flex-start !important;
    }

    .service-tabs {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        padding: 4px 6px 12px 6px !important;
        margin-bottom: 24px !important;
        scrollbar-width: none !important;
    }

    .service-tabs::-webkit-scrollbar {
        display: none !important;
    }

    .service-tab {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 10px 18px !important;
        font-size: 13.5px !important;
        border-radius: 8px !important;
    }

    .panel-grid {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .panel-services {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .service-item {
        width: 100% !important;
        min-height: auto !important;
        padding: 14px 16px !important;
        font-size: 14.5px !important;
    }

    .ws-grid,
    .testi-grid,
    .wins-grid,
    .ws-proof {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .ws-card,
    .testi-card {
        padding: 24px 20px !important;
    }

    .manifesto {
        padding: 45px 0 !important;
    }

    .ws-section {
        padding: 50px 0 !important;
    }

    .ai-section {
        padding: 50px 0 !important;
    }

    .testi-section {
        padding: 45px 0 !important;
    }
}

/* ── Small Mobile Phones (max-width: 480px) ── */
@media (max-width: 480px) {
    .container,
    .ws-container,
    .pricing-content-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-hero-section {
        margin-top: 65px;
        min-height: 130px;
    }

    .page-hero-inner {
        padding: 28px 15px;
    }

    .page-hero-title {
        font-size: 2rem !important;
    }

    .panel-title {
        font-size: 28px !important;
    }

    .hero-desc {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }

    .hero-btns {
        flex-direction: column !important;
    }

    .hero-btns .btn,
    .cta-btns .btn {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .stat-item {
        padding: 10px 8px !important;
    }

    .stat-num {
        font-size: 22px !important;
    }

    .stat-label {
        font-size: 11px !important;
    }

    .services-heading h2,
    .ws-headline,
    .testi-title {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
    }

    .panel-grid {
        padding: 18px 12px !important;
    }

    .panel-content h3 {
        font-size: 24px !important;
    }

    .panel-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .ws-card {
        padding: 20px 16px !important;
    }

    .ws-num {
        font-size: 40px !important;
        top: 10px !important;
        right: 12px !important;
    }

    .ai-card {
        padding: 14px 16px !important;
    }

    .btn-view-all {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ── Extra Small Phones (max-width: 380px) ── */
@media (max-width: 380px) {
    .container,
    .ws-container,
    .pricing-content-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
    }
}
