/* ============================================
   EVERYTHING DIGITAL — Design System v3
   Brand colours, Prospa-style nav, video banner,
   horizontal scroll case studies, reel ads.
   ============================================ */

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

:root {
    /* Brand Colours */
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #fafaf8;
    --blue: #4BBCF4;
    --pink: #FEC1D6;
    --yellow: #FFB921;
    --dark-blue: #16303C;
    --pastel-blue: #AEE4FB;
    --pastel-pink: #FFE3EE;
    --pastel-yellow: #FFE4A3;
    --pastel-dark-blue: #7F9BA8;
    --startsmart-green: #1ec8b7;
    --startsmart-blue: #14213d;
    --grey-100: #f5f5f4;
    --grey-200: #e7e5e4;
    --grey-300: #d6d3d1;
    --grey-500: #737373;
    --grey-800: #292524;

    /* Typography */
    --font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    --text-7xl: 5.5rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 6rem;

    /* Layout */
    --container: 1600px;
    --container-wide: 1920px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 100px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --duration: 0.3s;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

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

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

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Containers --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-3xl);
}

.container--wide {
    max-width: var(--container-wide);
    padding: 0 var(--space-4xl);
}

/* --- Utility --- */
.text-accent {
    color: var(--blue);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 32px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--grey-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn--blue:hover {
    background: #3aaee6;
    border-color: #3aaee6;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(75, 188, 244, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border-color: var(--grey-300);
}

.btn--outline:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.btn--lg {
    padding: 18px 40px;
    font-size: var(--text-base);
}

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

.btn--icon {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
}

/* ============================================
   HEADER / NAV — Prospa-style bubble
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-4xl);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--duration) var(--ease);
}

.header--scrolled {
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: var(--container-wide);
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 800;
    font-size: var(--text-lg);
    z-index: 1001;
    flex-shrink: 0;
}

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

/* Nav Bubble */
.nav-bubble {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-full);
    padding: 15px 40px;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header--scrolled .nav-bubble {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Nav */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--grey-500);
    transition: color var(--duration) var(--ease);
}

.nav__link:hover {
    color: var(--black);
}

.nav__chevron {
    transition: transform var(--duration) var(--ease);
}

.nav__item--dropdown:hover .nav__chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.nav__item--dropdown {
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration) var(--ease);
    padding-top: 20px;
}

.nav-bubble.dropdown-open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown__inner {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
    padding: var(--space-2xl);
    display: flex;
    gap: var(--space-2xl);
    min-width: 560px;
}

.dropdown__card {
    flex: 1;
}

.dropdown__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.dropdown__card-icon--mint {
    background: #d1fae5;
    color: #059669;
}

.dropdown__card-icon--lavender {
    background: #ede9fe;
    color: #7c3aed;
}

.dropdown__card-title {
    display: block;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: var(--space-sm);
    transition: color var(--duration) var(--ease);
}

.dropdown__card-title:hover {
    color: var(--blue);
}

.dropdown__card-desc {
    font-size: var(--text-sm);
    color: var(--grey-500);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

.dropdown__card-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown__link {
    display: block;
    padding: 7px 0;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--grey-500);
    transition: color var(--duration) var(--ease);
}

.dropdown__link:hover {
    color: var(--black);
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--grey-200);
    color: var(--grey-500);
    transition: all var(--duration) var(--ease);
    flex-shrink: 0;
}

.header__phone:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.mobile-menu__inner {
    padding: 120px var(--space-xl) var(--space-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu__list li {
    border-bottom: 1px solid var(--grey-200);
}

.mobile-menu__link {
    display: block;
    padding: var(--space-lg) 0;
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mobile-menu__sub {
    padding-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-menu__sub a {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    font-size: var(--text-base);
    color: var(--grey-500);
}

/* ============================================
   HERO — Split layout with branded video card
   ============================================ */
.hero {
    padding: 120px var(--space-4xl) var(--space-3xl);
    background: var(--off-white);
    max-width: var(--container-wide);
    margin: 0 auto;
}

.hero__split {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: var(--space-3xl);
    align-items: stretch;
    min-height: calc(100vh - 200px);
}

.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-3xl) 0;
}

.hero__left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.hero__subtitle {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--grey-500);
    margin-bottom: var(--space-xl);
    max-width: 440px;
}

.hero__ctas {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero__text-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--duration) var(--ease);
}

.hero__text-link:hover {
    color: var(--blue);
}

.hero__stats-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--grey-300);
    margin-top: var(--space-2xl);
}

.hero__stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.hero__stat-label {
    font-weight: 500;
    color: var(--grey-500);
}

.hero__stat-divider {
    width: 1px;
    height: 16px;
    background: var(--grey-300);
}

.hero__stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.hero__stat-key {
    font-weight: 500;
    color: var(--grey-500);
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--blue);
}

/* Right column — branded video block */
.hero__right {
    display: flex;
    align-items: stretch;
}

.hero__video-block {
    position: relative;
    width: 100%;
    background: var(--pastel-blue, #bfdbfe);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.hero__video-badge {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
}

.hero__video-badge-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--text-2xl);
    color: var(--white);
    line-height: 1;
}

.hero__video-badge-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ============================================
   CLIENT LOGOS
   ============================================ */
.logos {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    overflow: hidden;
}

.logos__track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.logos__slide {
    display: flex;
    gap: var(--space-3xl);
    flex-shrink: 0;
    padding-right: var(--space-3xl);
    align-items: center;
}

.logos__item {
    flex-shrink: 0;
    white-space: nowrap;
    padding: var(--space-sm) var(--space-lg);
}

/* Text fallback for logos without images */
.logos__item--text {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-300);
}

/* Image logos */
.logos__item img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

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

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header--left {
    text-align: left;
}

.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
}

.section-header__eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey-500);
    margin-bottom: var(--space-md);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: var(--space-md);
}

.section-header__desc {
    font-size: var(--text-lg);
    color: var(--grey-500);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header--left .section-header__desc {
    margin: 0;
}

/* ============================================
   SERVICES — Brand Pastel Colours
   ============================================ */
.services {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xl);
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) { background: var(--pastel-blue); }
.service-card:nth-child(2) { background: var(--pastel-pink); }
.service-card:nth-child(3) { background: var(--pastel-yellow); }
.service-card:nth-child(4) { background: var(--pastel-dark-blue); }
.service-card:nth-child(5) { background: var(--pastel-pink); }

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

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--dark-blue);
}

.service-card__title {
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: var(--dark-blue);
}

.service-card__desc {
    font-size: var(--text-sm);
    color: var(--dark-blue);
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--space-lg);
    opacity: 0.7;
}

.service-card__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark-blue);
    transition: gap var(--duration) var(--ease);
}

.service-card:hover .service-card__cta {
    gap: 12px;
}

.service-card:nth-child(4) .service-card__title,
.service-card:nth-child(4) .service-card__desc,
.service-card:nth-child(4) .service-card__cta {
    color: var(--white);
}

.service-card:nth-child(4) .service-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Top 3 cards span 2 of 6 columns, bottom 2 span 3 each */
.service-card {
    grid-column: span 2;
}

.services__grid .service-card:nth-child(4),
.services__grid .service-card:nth-child(5) {
    grid-column: span 3;
}

/* ============================================
   CASE STUDIES — Swiper Carousel (Prospa-style)
   ============================================ */
.case-studies {
    padding: var(--space-5xl) 0 var(--space-5xl);
    background: var(--off-white);
    overflow: hidden;
}



.case-studies .section-header--row {
    justify-content: space-between;
    padding-right: max(var(--_pad), calc((100vw - var(--container-wide)) / 2 + var(--_pad)));
}

.case-studies__swiper-wrap {
    /* Match container--wide left edge dynamically */
    --_pad: var(--space-4xl);
    padding-left: max(var(--_pad), calc((100vw - var(--container-wide)) / 2 + var(--_pad)));
}

@media (max-width: 1280px) {
    .case-studies__swiper-wrap {
        --_pad: var(--space-xl);
    }
}

@media (max-width: 640px) {
    .case-studies__swiper-wrap {
        --_pad: var(--space-lg);
    }
}

.case-studies__swiper {
    overflow: visible;
}

.case-studies__swiper .swiper-slide {
    width: 75vw;
    max-width: 560px;
    height: auto;
}

@media (min-width: 1024px) {
    .case-studies__swiper .swiper-slide {
        width: 55vw;
        max-width: 860px;
    }
}

.case-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    height: 580px;
    position: relative;
    text-decoration: none;
    color: var(--black);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    cursor: pointer;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.case-card__text {
    padding: var(--space-2xl) var(--space-2xl) var(--space-lg);
    position: relative;
    z-index: 2;
}

.case-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.case-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-full);
    color: var(--black);
}

.case-card__title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--black);
}

.case-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--grey-800);
}

.case-card__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
    display: inline-block;
}

.case-card__img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s var(--ease);
}

.case-card:hover .case-card__img {
    transform: scale(1.03);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__image-block {
    position: relative;
}

.about__image-placeholder {
    background: var(--pastel-blue);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark-blue);
    color: var(--white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about__badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.about__badge-text {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
}

.about__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.about__text {
    font-size: var(--text-base);
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.about__badges {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark-blue);
}

.partner-badge svg {
    flex-shrink: 0;
}

.partner-badge--google {
    border-color: var(--pastel-blue);
}

.partner-badge--meta {
    border-color: var(--pastel-blue);
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: var(--space-4xl) 0;
    background: var(--dark-blue);
    color: var(--white);
}

.stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4xl);
}

.stats__item {
    text-align: center;
}

.stats__number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: var(--space-xs);
    color: var(--blue);
}

.stats__label {
    font-size: var(--text-sm);
    color: var(--pastel-dark-blue);
    font-weight: 500;
}

.stats__divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   METHODOLOGY — Brand Pastel Colours
   ============================================ */
.methodology {
    padding: var(--space-5xl) 0;
}

.methodology__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.method-step {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.method-step:nth-child(1) { background: var(--pastel-blue); }
.method-step:nth-child(2) { background: var(--pastel-pink); }
.method-step:nth-child(3) { background: var(--pastel-yellow); }
.method-step:nth-child(4) { background: var(--pastel-dark-blue); }
.method-step:nth-child(5) { background: var(--pastel-blue); }

.method-step:hover {
    transform: translateY(-4px);
}

.method-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.method-step__title {
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: var(--dark-blue);
}

.method-step__desc {
    font-size: var(--text-sm);
    color: var(--dark-blue);
    line-height: 1.6;
    opacity: 0.7;
}

.method-step:nth-child(4) .method-step__title,
.method-step:nth-child(4) .method-step__desc {
    color: var(--white);
}

.method-step:nth-child(4) .method-step__number {
    background: var(--white);
    color: var(--dark-blue);
}

/* ============================================
   TESTIMONIALS — Brand Colours
   ============================================ */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.testimonials__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

/* Featured large testimonial */
.testimonial-featured {
    background: var(--pastel-blue);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-featured__quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.7;
    color: var(--blue);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.testimonial-featured__text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--dark-blue);
    margin-bottom: var(--space-2xl);
    flex: 1;
}

.testimonial-featured__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.testimonial-featured__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--white);
}

.testimonial-featured__name {
    display: block;
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--dark-blue);
}

.testimonial-featured__role {
    font-size: var(--text-sm);
    color: var(--grey-500);
}

.testimonial-featured__result {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-featured__stat {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--blue);
}

.testimonial-featured__stat-label {
    font-size: var(--text-sm);
    color: var(--grey-500);
    font-weight: 500;
}

/* Trustpilot / Google Reviews link */
.testimonials__reviews-link {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--grey-800);
    transition: all var(--duration) var(--ease);
}

.reviews-badge:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(75, 188, 244, 0.2);
    transform: translateY(-2px);
}

.reviews-badge__stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
}

/* Stacked side cards */
.testimonials__stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-bottom: var(--space-md);
}

.testimonial-card__quote {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--grey-800);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--dark-blue);
}

.testimonial-card__avatar--pink { background: var(--pink); }
.testimonial-card__avatar--yellow { background: var(--pastel-yellow); }

.testimonial-card__name {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
}

.testimonial-card__role {
    font-size: var(--text-xs);
    color: var(--grey-500);
}

/* ============================================
   DIFFERENTIATORS — Brand Pastel Colours
   ============================================ */
.differentiators {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.diff__layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.diff__heading {
    position: sticky;
    top: 120px;
}

.diff__title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: var(--space-md);
}

.diff__desc {
    font-size: var(--text-lg);
    color: var(--grey-500);
    line-height: 1.6;
}

.diff__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.diff-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.diff-card:hover {
    transform: translateY(-4px);
}

/* Wide cards span 2 columns */
.diff-card--wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

/* Colour variants — Brand Pastels */
.diff-card--blue { background: var(--pastel-blue); }
.diff-card--pink { background: var(--pastel-pink); }
.diff-card--yellow { background: var(--pastel-yellow); }
.diff-card--dark-blue { background: var(--pastel-dark-blue); color: var(--white); }
.diff-card--grey { background: var(--grey-100); }
.diff-card--dark {
    background: var(--dark-blue);
    color: var(--white);
}

.diff-card--dark .diff-card__title,
.diff-card--dark-blue .diff-card__title {
    color: var(--white);
}

.diff-card--dark .diff-card__desc,
.diff-card--dark-blue .diff-card__desc {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.diff-card--dark .diff-card__num,
.diff-card--dark-blue .diff-card__num {
    color: rgba(255, 255, 255, 0.15);
}

.diff-card__num {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    opacity: 0.25;
    margin-bottom: var(--space-md);
    display: block;
}

.diff-card--wide .diff-card__num {
    margin-bottom: 0;
    flex-shrink: 0;
    font-size: var(--text-5xl);
}

.diff-card__title {
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
    color: var(--dark-blue);
}

.diff-card__desc {
    font-size: var(--text-sm);
    color: var(--dark-blue);
    line-height: 1.6;
    opacity: 0.7;
}

/* ============================================
   STARTSMART — StartSmart Brand Colours
   ============================================ */
.startsmart {
    padding: var(--space-5xl) 0;
}

.startsmart__card {
    background: linear-gradient(135deg, var(--startsmart-blue) 0%, #1a3040 50%, var(--startsmart-blue) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-5xl) var(--space-4xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.startsmart__card-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.startsmart__pill {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 200, 183, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--startsmart-green);
    margin-bottom: var(--space-xl);
}

.startsmart__title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.startsmart__title-accent {
    color: var(--startsmart-green);
}

.startsmart__desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.startsmart__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.startsmart__feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.startsmart__feature svg {
    color: var(--startsmart-green);
    flex-shrink: 0;
}

.startsmart .btn--primary {
    background: var(--startsmart-green);
    color: var(--startsmart-blue);
    border-color: var(--startsmart-green);
}

.startsmart .btn--primary:hover {
    background: #17b5a5;
    border-color: #17b5a5;
    box-shadow: 0 4px 20px rgba(30, 200, 183, 0.3);
}

/* Decorative floating shapes */
.startsmart__shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.startsmart__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.startsmart__shape--1 {
    width: 300px;
    height: 300px;
    background: var(--startsmart-green);
    top: -80px;
    right: -60px;
}

.startsmart__shape--2 {
    width: 200px;
    height: 200px;
    background: var(--blue);
    bottom: -60px;
    left: -40px;
}

.startsmart__shape--3 {
    width: 120px;
    height: 120px;
    background: var(--startsmart-green);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

/* ============================================
   REEL ADS — Phone mockup carousel
   ============================================ */
.reel-ads {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.reel-ads__grid {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.reel-phone {
    width: 280px;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}

.reel-phone:hover {
    transform: translateY(-8px);
}

.reel-phone__frame {
    background: var(--black);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.reel-phone__screen {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: var(--grey-100);
    position: relative;
}

.reel-phone__screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder for when videos aren't loaded yet */
.reel-phone__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--grey-500);
}

.reel-phone__placeholder svg {
    opacity: 0.3;
}

.reel-phone__placeholder span {
    font-size: var(--text-xs);
    font-weight: 500;
    opacity: 0.5;
}

.reel-phone__label {
    text-align: center;
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--grey-800);
}

/* ============================================
   INSIGHTS / BLOG
   ============================================ */
.insights {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
    background: var(--off-white);
}

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

.blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card:nth-child(1) .blog-card__image { background: var(--pastel-blue); }
.blog-card:nth-child(2) .blog-card__image { background: var(--pastel-pink); }
.blog-card:nth-child(3) .blog-card__image { background: var(--pastel-yellow); }

.blog-card__content {
    padding: var(--space-xl);
}

.blog-card__date {
    font-size: var(--text-xs);
    color: var(--grey-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-card__title {
    font-size: var(--text-lg);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: var(--space-sm) 0 var(--space-md);
}

.blog-card__excerpt {
    font-size: var(--text-sm);
    color: var(--grey-500);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.blog-card__link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--blue);
}

/* ============================================
   CTA BANNER — Brand Colours
   ============================================ */
.cta {
    padding: 0;
}

.cta__inner {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: var(--space-5xl) var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(75, 188, 244, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(254, 193, 214, 0.1) 0%, transparent 50%);
}

.cta__title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    position: relative;
}

.cta .text-blue {
    color: var(--blue);
}

.cta__desc {
    font-size: var(--text-lg);
    color: var(--pastel-dark-blue);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    position: relative;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    position: relative;
}

.cta .btn--primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.cta .btn--primary:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.cta .btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta .btn--outline:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

/* ============================================
   CONTACT — Brand Colours
   ============================================ */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.contact__desc {
    font-size: var(--text-base);
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact__link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--grey-500);
    transition: color var(--duration) var(--ease);
}

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

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--pastel-blue);
    box-shadow: 0 8px 40px rgba(75, 188, 244, 0.08);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: var(--text-base);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--black);
    transition: all var(--duration) var(--ease);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey-500);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(75, 188, 244, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form .btn--blue {
    font-size: var(--text-base);
    padding: 18px 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .header__logo {
    margin-bottom: var(--space-lg);
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--pastel-dark-blue);
    margin-bottom: var(--space-xl);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--pastel-dark-blue);
    transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer__col h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-lg);
}

.footer__col a {
    display: block;
    padding: 4px 0;
    font-size: var(--text-sm);
    color: var(--pastel-dark-blue);
    transition: color var(--duration) var(--ease);
}

.footer__col a:hover {
    color: var(--blue);
}

.footer__bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer__bottom p {
    font-size: var(--text-xs);
    color: var(--pastel-dark-blue);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Narrow desktop */
@media (max-width: 1180px) {
}

/* Tablet */
@media (max-width: 1280px) {
    :root {
        --text-7xl: 3.5rem;
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }

    .container,
    .container--wide {
        padding: 0 var(--space-xl);
    }

    .header {
        padding: var(--space-sm) var(--space-xl);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-bubble {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px var(--space-xl) var(--space-2xl);
    }

    .hero__split {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .hero__left {
        padding: var(--space-xl) 0;
    }

    .hero__stats-row {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

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

    .service-card,
    .services__grid .service-card:nth-child(4),
    .services__grid .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .services__grid .service-card:last-child {
        grid-column: 1 / -1;
    }

    .about__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    /* Testimonials */
    .testimonials__layout {
        grid-template-columns: 1fr;
    }

    .testimonials__stack {
        flex-direction: row;
    }

    /* Differentiators */
    .diff__layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .diff__heading {
        position: static;
        text-align: center;
    }

    .about__content {
        text-align: center;
    }

    .contact__content {
        text-align: center;
    }

    /* StartSmart */
    .startsmart__card {
        padding: var(--space-4xl) var(--space-2xl);
    }

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

    .insights__grid .blog-card:last-child {
        grid-column: 1 / -1;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    /* Reel ads */
    .reel-phone {
        width: 220px;
    }

}

/* Small tablet — stack hero */
@media (max-width: 1024px) {
    .hero__split {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: var(--space-2xl);
    }

    .hero__left {
        padding: 0;
    }

    .hero__title {
        font-size: clamp(3.5rem, 8vw, 5.5rem);
    }

    .hero__subtitle {
        max-width: 600px;
    }

    .hero__video-block {
        min-height: 400px;
        padding: var(--space-md);
        border-radius: 20px;
    }

    .hero__video {
        border-radius: 14px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --text-7xl: 2.75rem;
        --text-6xl: 2.5rem;
        --text-5xl: 2.25rem;
        --text-4xl: 1.85rem;
        --text-3xl: 1.5rem;
        --space-5xl: 3rem;
        --space-4xl: 2.5rem;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .header {
        padding: var(--space-xs) var(--space-lg);
    }

    .logo-img {
        height: 28px;
    }

    /* --- Hero — Split layout mobile --- */
    .hero {
        padding: 80px var(--space-lg) var(--space-2xl);
    }

    .hero__split {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: var(--space-xl);
    }

    .hero__left {
        padding: 0;
    }

    .hero__title {
        font-size: 2.75rem;
        line-height: 0.95;
        margin-top: var(--space-xl);
        margin-bottom: var(--space-2xl);
    }

    .hero__subtitle {
        font-size: var(--text-sm);
        max-width: 100%;
    }

    .hero__ctas {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
    }

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

    .hero__text-link {
        text-align: center;
    }

    .hero__video-block {
        min-height: 280px;
        border-radius: 20px;
        padding: var(--space-md);
    }

    .hero__video {
        border-radius: 12px;
    }

    .hero__video-badge {
        bottom: var(--space-md);
        left: var(--space-md);
        padding: var(--space-sm) var(--space-md);
        border-radius: 12px;
    }

    .hero__video-badge-number {
        font-size: var(--text-lg);
    }

    .hero__video-badge-label {
        font-size: 10px;
    }

    .hero__stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-sm);
        width: 100%;
        border-top: none;
        padding-top: 0;
        margin-top: var(--space-lg);
    }

    .hero__stat-dot,
    .hero__stat-label,
    .hero__stat-divider {
        display: none;
    }

    .hero__stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .hero__stat-key {
        font-size: var(--text-xs);
        display: block;
    }

    .hero__stat-value {
        font-size: var(--text-xl);
        display: block;
    }

    /* --- Section headers — bolder on mobile --- */
    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .section-header__title {
        font-size: var(--text-4xl);
        letter-spacing: -0.03em;
        line-height: 1.08;
    }

    .section-header__desc {
        font-size: var(--text-base);
    }

    .section-header__eyebrow {
        font-size: 0.65rem;
        margin-bottom: var(--space-sm);
    }

    /* --- Services — Compact stacked cards, Prospa-inspired --- */
    .services {
        padding: var(--space-4xl) 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-card {
        padding: var(--space-xl) var(--space-xl);
        border-radius: var(--radius-md);
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
    }

    .service-card,
    .services__grid .service-card:nth-child(4),
    .services__grid .service-card:nth-child(5),
    .services__grid .service-card:last-child {
        grid-column: span 1;
    }

    .service-card__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        margin-bottom: 0;
        border-radius: var(--radius-sm);
    }

    .service-card__title {
        font-size: var(--text-base);
        font-weight: 800;
        margin-bottom: 0;
    }

    .service-card__desc {
        display: none;
    }

    .service-card__cta {
        margin-left: auto;
        font-size: 0;
        gap: 0;
    }

    .service-card__cta svg {
        width: 18px;
        height: 18px;
    }

    /* --- Case Studies — mobile --- */
    .case-studies {
        padding: var(--space-4xl) 0;
    }

    .case-card {
        height: 440px;
    }

    .case-card__text {
        padding: var(--space-xl) var(--space-xl) var(--space-md);
    }

    .case-card__title {
        font-size: var(--text-xl);
    }

    .case-card__meta {
        gap: 6px;
        font-size: 0.7rem;
    }

    /* --- About — tighter mobile layout --- */
    .about {
        padding: var(--space-4xl) 0;
    }

    .about__title {
        font-size: var(--text-4xl);
        letter-spacing: -0.03em;
    }

    .about__badge {
        bottom: -12px;
        right: -8px;
        padding: var(--space-md) var(--space-lg);
    }

    .about__badge-number {
        font-size: var(--text-2xl);
    }

    .about__text {
        font-size: var(--text-sm);
        line-height: 1.7;
    }

    /* --- Stats — 2x2 grid like Prospa --- */
    .stats {
        padding: var(--space-3xl) 0;
    }

    .stats__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .stats__divider {
        display: none;
    }

    .stats__item {
        text-align: center;
        padding: var(--space-lg);
        background: var(--grey-100);
        border-radius: var(--radius-md);
    }

    .stats__number {
        font-size: var(--text-3xl);
        display: block;
        margin-bottom: 4px;
    }

    .stats__label {
        font-size: var(--text-xs);
        opacity: 0.7;
    }

    /* --- Methodology — compact steps --- */
    .methodology {
        padding: var(--space-4xl) 0;
    }

    .methodology__steps {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .method-step {
        padding: var(--space-lg) var(--space-xl);
        border-radius: var(--radius-md);
    }

    .method-step__number {
        font-size: var(--text-sm);
    }

    .method-step__title {
        font-size: var(--text-base);
    }

    /* --- Testimonials — cleaner mobile --- */
    .testimonials {
        padding: var(--space-4xl) 0;
    }

    .testimonials__stack {
        flex-direction: column;
        gap: var(--space-md);
    }

    .testimonial-featured {
        padding: var(--space-xl);
        border-radius: var(--radius-md);
    }

    .testimonial-featured__quote-mark {
        font-size: 4rem;
    }

    .testimonial-featured__text {
        font-size: var(--text-lg);
        line-height: 1.5;
    }

    .testimonial-featured__result {
        margin-top: var(--space-lg);
    }

    .testimonial-card {
        padding: var(--space-xl);
    }

    .testimonial-card__quote {
        font-size: var(--text-sm);
    }

    .testimonials__reviews-link {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    /* --- Differentiators — tighter grid --- */
    .differentiators {
        padding: var(--space-4xl) 0;
    }

    .diff__grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .diff-card {
        padding: var(--space-lg) var(--space-xl);
        border-radius: var(--radius-md);
    }

    .diff-card--wide {
        grid-column: auto;
        flex-direction: row;
        gap: var(--space-md);
        align-items: center;
    }

    .diff-card__num {
        font-size: var(--text-sm);
    }

    .diff-card__title {
        font-size: var(--text-base);
        margin-bottom: 2px;
    }

    .diff-card__desc {
        font-size: var(--text-xs);
    }

    /* --- StartSmart --- */
    .startsmart {
        padding: var(--space-4xl) 0;
    }

    .startsmart__card {
        padding: var(--space-2xl) var(--space-xl);
        border-radius: var(--radius-md);
    }

    .startsmart__title {
        font-size: var(--text-4xl);
    }

    .startsmart__features {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .startsmart__desc {
        font-size: var(--text-sm);
    }

    /* --- CTA — bold full-width Prospa-style --- */
    .cta {
        padding: 0;
    }

    .cta__inner {
        padding: var(--space-3xl) var(--space-xl);
        border-radius: 0;
    }

    .cta__title {
        font-size: var(--text-4xl);
        letter-spacing: -0.03em;
    }

    .cta__desc {
        font-size: var(--text-sm);
    }

    .cta__actions {
        flex-direction: column;
        gap: var(--space-sm);
    }

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

    /* --- Insights / Blog --- */
    .insights {
        padding: var(--space-4xl) 0;
    }

    .insights__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .insights__grid .blog-card:last-child {
        grid-column: auto;
    }

    .blog-card__title {
        font-size: var(--text-base);
    }

    .blog-card__excerpt {
        font-size: var(--text-sm);
    }

    .blog-card__content {
        padding: var(--space-lg);
    }

    .section-header--row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-lg);
    }

    /* --- Contact --- */
    .contact {
        padding: var(--space-4xl) 0;
    }

    .contact__title {
        font-size: var(--text-4xl);
        letter-spacing: -0.03em;
    }

    /* --- Footer --- */
    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    /* Reel ads mobile */
    .reel-ads__grid {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: var(--space-md);
        -webkit-overflow-scrolling: touch;
    }

    .reel-phone {
        width: 200px;
    }
}

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    z-index: 90;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: var(--space-sm) var(--space-md);
        background: var(--white);
        border-top: 1px solid var(--grey-200);
        z-index: 80;
        opacity: 0;
        transform: translateY(100%);
        transition: all 0.3s var(--ease);
    }

    .mobile-cta.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-cta .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-sm);
    }

    /* Offset back-to-top above mobile CTA */
    .back-to-top {
        bottom: 70px;
    }
}

/* ============================================
   BLOG CARD HOVER STATES
   ============================================ */
.blog-card {
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.blog-card__image img {
    transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__image {
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* ============================================
   METHODOLOGY — Descriptions reveal on hover
   Touch devices get them permanently open, since there is no hover there.
   ============================================ */
.method-step {
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.method-step:hover,
.method-step:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.method-step:focus-visible {
    outline: 3px solid var(--dark-blue);
    outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .method-step__desc {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease);
    }

    .method-step:hover .method-step__desc,
    .method-step:focus-within .method-step__desc {
        max-height: 240px;
        opacity: 1;
        margin-top: var(--space-sm);
    }

    /* Belt and braces: some Android browsers claim (hover: hover). Below the mobile
       breakpoint there is no meaningful hover, so always show the description. */
    @media (max-width: 768px) {
        .method-step__desc {
            max-height: none;
            opacity: 1;
            margin-top: var(--space-sm);
        }
    }
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav__item--dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease);
    z-index: 100;
    pointer-events: none;
}

.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown.dropdown-open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav__chevron {
    transition: transform 0.2s var(--ease);
}

.nav-bubble.dropdown-open .nav__chevron {
    transform: rotate(180deg);
}

/* ============================================
   STATS — Count-up animation
   ============================================ */
.stats__number {
    transition: opacity 0.3s var(--ease);
}

/* ============================================
   SERVICE PAGE (sp-) — Paid Search & Reusable
   ============================================ */

/* --- SP Hero --- */
.sp-hero {
    padding: calc(var(--space-5xl) + 80px) 0 var(--space-5xl);
}

.sp-hero__split {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: var(--space-4xl);
    align-items: center;
}

.sp-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: var(--space-lg);
}

.sp-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--grey-500);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: var(--space-xl);
}

.sp-hero__pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.sp-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: var(--text-sm);
    font-weight: 600;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-full);
    color: var(--black);
    transition: all var(--duration) var(--ease);
}

.sp-pill:hover {
    border-color: var(--blue);
    background: rgba(75, 188, 244, 0.06);
}

.sp-pill-plus {
    font-size: var(--text-sm);
    color: var(--grey-500);
    font-weight: 500;
}

.sp-hero__ctas {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.sp-hero__text-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--black);
    transition: color var(--duration) var(--ease);
}

.sp-hero__text-link:hover {
    color: var(--blue);
}

.sp-hero__right {
    display: flex;
    justify-content: center;
}

.sp-hero__image-block {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--pastel-blue);
}

.sp-hero__image-block img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.sp-hero__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sp-hero__badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.03em;
}

.sp-hero__badge-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--grey-500);
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* --- SP Stats (reuses .stats but scoped tweaks) --- */
.sp-stats .stats__number {
    color: var(--blue);
}

/* --- SP Services Breakdown --- */
.sp-services {
    padding: var(--space-5xl) 0;
}

.sp-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.sp-service-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.sp-service-card:nth-child(1) { background: var(--pastel-blue); }
.sp-service-card:nth-child(2) { background: var(--pastel-pink); }
.sp-service-card:nth-child(3) { background: var(--pastel-yellow); }
.sp-service-card:nth-child(4) { background: var(--dark-blue); color: var(--white); }

.sp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sp-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.sp-service-card:nth-child(4) .sp-service-card__icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.sp-service-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: var(--dark-blue);
}

.sp-service-card:nth-child(4) .sp-service-card__title {
    color: var(--white);
}

.sp-service-card__desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--dark-blue);
    opacity: 0.8;
}

.sp-service-card:nth-child(4) .sp-service-card__desc {
    color: var(--white);
    opacity: 0.7;
}

/* --- SP Approach (How We Work) --- */
.sp-approach {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.sp-approach__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.sp-approach__step {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.sp-approach__step:nth-child(1) { background: var(--pastel-blue); }
.sp-approach__step:nth-child(2) { background: var(--pastel-pink); }
.sp-approach__step:nth-child(3) { background: var(--pastel-yellow); }

.sp-approach__step:hover {
    transform: translateY(-4px);
}

.sp-approach__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: 800;
    margin-bottom: var(--space-xl);
}

.sp-approach__step-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: var(--dark-blue);
}

.sp-approach__step-desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--dark-blue);
    opacity: 0.7;
}

/* --- SP Why Us --- */
.sp-why {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.sp-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.sp-why__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: var(--space-lg);
}

.sp-why__desc {
    font-size: var(--text-base);
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.sp-why__right {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sp-why__point {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-200);
    transition: all var(--duration) var(--ease);
}

.sp-why__point:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(75, 188, 244, 0.08);
}

.sp-why__point-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(75, 188, 244, 0.1);
    border-radius: 50%;
    color: var(--blue);
}

.sp-why__point-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--black);
}

.sp-why__point-desc {
    font-size: var(--text-sm);
    color: var(--grey-500);
    line-height: 1.6;
}

/* --- SP FAQ --- */
.sp-faq {
    padding: var(--space-5xl) 0;
}

.sp-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.sp-faq__item {
    border-bottom: 1px solid var(--grey-200);
}

.sp-faq__item:first-child {
    border-top: 1px solid var(--grey-200);
}

.sp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-xl) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--black);
    text-align: left;
    transition: color var(--duration) var(--ease);
}

.sp-faq__question:hover {
    color: var(--blue);
}

.sp-faq__chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--grey-500);
}

.sp-faq__item.active .sp-faq__chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

.sp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.sp-faq__item.active .sp-faq__answer {
    max-height: 300px;
}

.sp-faq__answer p {
    padding-bottom: var(--space-xl);
    font-size: var(--text-base);
    color: var(--grey-500);
    line-height: 1.7;
}

/* --- SP Audit Form --- */
.sp-audit {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.sp-audit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.sp-audit__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.sp-audit__desc {
    font-size: var(--text-base);
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.sp-audit__checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sp-audit__check {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--black);
}

/* Select styling (matches inputs) */
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: var(--text-base);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--black);
    transition: all var(--duration) var(--ease);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(75, 188, 244, 0.15);
}

/* Placeholder state for select */
.form-group select:invalid {
    color: var(--grey-500);
}

/* ============================================
   SERVICE PAGE — Responsive
   ============================================ */
@media (max-width: 1280px) {
    .sp-hero__title {
        font-size: clamp(2.4rem, 4vw, 3.5rem);
    }

    .sp-hero__image-block img {
        height: 400px;
    }

    .sp-why__title,
    .sp-audit__title {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 768px) {
    .sp-hero {
        padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    }

    .sp-hero__split {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .sp-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .sp-hero__subtitle {
        max-width: 100%;
    }

    .sp-hero__pills {
        gap: var(--space-xs);
    }

    .sp-pill {
        padding: 6px 14px;
        font-size: var(--text-xs);
    }

    .sp-hero__ctas {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .sp-hero__image-block img {
        height: 300px;
    }

    .sp-services__grid {
        grid-template-columns: 1fr;
    }

    .sp-approach__grid {
        grid-template-columns: 1fr;
    }

    .sp-why__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .sp-audit__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .sp-why__title,
    .sp-audit__title {
        font-size: var(--text-3xl);
    }
}


/* ============================================
   V5 — Case studies, partner links, long testimonials
   ============================================ */

/* Work grid — shared by /our-work.html and the "more work" band on case studies */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-3xl);
}

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

@media (max-width: 1100px) {
    .work-grid--related { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .work-grid,
    .work-grid--related {
        grid-template-columns: 1fr;
        padding: 0 var(--space-lg);
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--grey-500);
}

.breadcrumb a {
    color: var(--grey-500);
    transition: color var(--duration) var(--ease);
}

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

.breadcrumb [aria-current="page"] {
    color: var(--grey-800);
    font-weight: 600;
}

/* Google Partner badge as an outbound link */
.partner-badge--link {
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.partner-badge--link:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(75, 188, 244, 0.22);
    transform: translateY(-2px);
}

.partner-badge__arrow {
    opacity: 0;
    margin-left: -4px;
    color: var(--grey-500);
    transition: opacity var(--duration) var(--ease), margin var(--duration) var(--ease);
}

.partner-badge--link:hover .partner-badge__arrow {
    opacity: 1;
    margin-left: 0;
}

/* Featured testimonial carrying a full-length client quote */
.testimonial-featured__text--long {
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -0.005em;
}

.testimonial-featured__text--long p + p {
    margin-top: var(--space-md);
}

/* Standalone client quote on a case study page */
.case-quote {
    background: var(--pastel-blue);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .case-quote { padding: var(--space-xl); }
}
