:root {
    /* Color Palette — Red-Orange / Lemon Squeezy Style */
    --bg-cream: #FAFAFA;
    --primary-mint: #E8450E;
    --secondary-pink: #D63B0E;
    --accent-lilac: #FF6B35;
    --accent-yellow: #FFA726;

    --text-dark: #1A1A2E;
    --text-light: #FFFFFF;
    --text-heading: #1A1A2E;
    --text-muted: #6C6C89;

    /* Modern Flat Shadows */
    --clay-shadow-out: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
    --clay-shadow-in: none;
    --clay-shadow-pressed: 0 1px 2px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-main: 'Nunito', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .float-anim {
        animation: none !important;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

body {
    background-color: var(--bg-cream);
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    padding: 12px 24px;
    background: var(--text-heading);
    color: white;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Focus indicators */
:focus-visible {
    outline: 3px solid var(--accent-lilac);
    outline-offset: 3px;
}

.clay-btn:focus-visible {
    outline: 3px solid var(--text-heading);
    outline-offset: 3px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clay-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--clay-shadow-out);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.clay-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.clay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: var(--clay-shadow-in);
    pointer-events: none;
}

.clay-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-dark);
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    position: relative;
    font-size: 1.1rem;
    font-family: inherit;
}

.clay-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: none;
    pointer-events: none;
}

.clay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clay-btn:active {
    transform: translateY(0);
    box-shadow: var(--clay-shadow-pressed);
}

.clay-btn.primary {
    background: var(--secondary-pink);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(214, 59, 14, 0.3);
}

.clay-btn.primary:hover {
    background: #C13209;
    box-shadow: 0 4px 16px rgba(214, 59, 14, 0.35);
}

.clay-btn.secondary {
    background: var(--accent-lilac);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.clay-btn.secondary:hover {
    background: #E55A28;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.clay-btn.nav-btn {
    padding: 11px 22px;
    border-radius: 14px;
    font-size: 0.96rem;
    line-height: 1.2;
    white-space: nowrap;
}

/* Floating Animation */
@keyframes float {
    0% {
        translate: 0 0;
    }

    50% {
        translate: 0 -16px;
    }

    100% {
        translate: 0 0;
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-bg {
    background-color: #F5F5F5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.section-narrow {
    max-width: 800px;
}

/* Header */
body > header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 252, 249, 0.92);
    border-bottom: 1px solid rgba(232, 69, 14, 0.08);
    box-shadow: 0 1px 8px rgba(26, 26, 46, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    min-height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 6px 0;
    border-radius: 16px;
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.18s ease, transform 0.18s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo span {
    font-weight: 900;
    font-size: 1.34rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
    padding: 6px;
    border: 1px solid rgba(232, 69, 14, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1.2;
    color: var(--text-muted);
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 29;
    width: max(100%, 220px);
    height: 12px;
    transform: translateX(-50%);
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    font: inherit;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

.nav-caret {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.18s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 30;
    display: grid;
    min-width: 220px;
    gap: 4px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid rgba(232, 69, 14, 0.12);
    border-radius: 18px;
    background: #FFFCF9;
    box-shadow: 0 18px 36px rgba(26, 26, 46, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -6px) scale(0.98);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
    padding: 11px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: var(--secondary-pink);
    background: rgba(255, 240, 235, 0.92);
}

.nav-links a[aria-current="page"],
.nav-dropdown:has(a[aria-current="page"]) > .nav-dropdown-toggle {
    color: var(--secondary-pink);
    background: rgba(255, 240, 235, 0.95);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.open .nav-caret {
    transform: rotate(180deg);
}

.nav-links-cta {
    display: none;
}

.nav-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-btn .nav-icon {
    width: 16px;
    height: 16px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 240, 235, 0.86);
    border: 1px solid rgba(232, 69, 14, 0.14);
    border-radius: 14px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 1px 3px rgba(26, 26, 46, 0.06);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 232, 222, 0.96);
    border-color: rgba(232, 69, 14, 0.22);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 240, 235, 0.48) 0%, rgba(250, 250, 250, 0.96) 46%, var(--bg-cream) 100%);
}

.hero .container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-comment-field {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-comment-field span {
    position: absolute;
    display: block;
    width: var(--comment-icon-size, 64px);
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(232, 69, 14, var(--comment-icon-alpha, 0.12)), rgba(255, 167, 38, var(--comment-icon-warmth, 0.18)));
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2064%2064%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27%23000%27%20fill-rule%3D%27evenodd%27%20clip-rule%3D%27evenodd%27%20d%3D%27M60%200H4C1.789%200%200%201.789%200%204v40c0%202.211%201.789%204%204%204h8v12c0%201.617.973%203.078%202.469%203.695.496.207%201.015.305%201.531.305%201.039%200%202.062-.406%202.828-1.172L33.656%2048H60c2.211%200%204-1.789%204-4V4c0-2.211-1.789-4-4-4z%27/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2064%2064%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27%23000%27%20fill-rule%3D%27evenodd%27%20clip-rule%3D%27evenodd%27%20d%3D%27M60%200H4C1.789%200%200%201.789%200%204v40c0%202.211%201.789%204%204%204h8v12c0%201.617.973%203.078%202.469%203.695.496.207%201.015.305%201.531.305%201.039%200%202.062-.406%202.828-1.172L33.656%2048H60c2.211%200%204-1.789%204-4V4c0-2.211-1.789-4-4-4z%27/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: var(--comment-icon-opacity, 0.36);
    transform: scaleX(-1) rotate(var(--comment-icon-rotate, -6deg));
    filter: drop-shadow(0 12px 22px rgba(232, 69, 14, 0.05));
}

.hero-comment-field span:nth-child(1) {
    --comment-icon-size: 44px;
    --comment-icon-alpha: 0.12;
    --comment-icon-warmth: 0.17;
    --comment-icon-opacity: 0.34;
    --comment-icon-rotate: 14deg;
    top: 15%;
    left: 5%;
}

.hero-comment-field span:nth-child(2) {
    --comment-icon-size: 78px;
    --comment-icon-alpha: 0.08;
    --comment-icon-warmth: 0.14;
    --comment-icon-opacity: 0.28;
    --comment-icon-rotate: -12deg;
    top: 68%;
    left: 13%;
}

.hero-comment-field span:nth-child(3) {
    --comment-icon-size: 36px;
    --comment-icon-alpha: 0.14;
    --comment-icon-warmth: 0.2;
    --comment-icon-opacity: 0.32;
    --comment-icon-rotate: 21deg;
    top: 31%;
    left: 39%;
}

.hero-comment-field span:nth-child(4) {
    --comment-icon-size: 92px;
    --comment-icon-alpha: 0.07;
    --comment-icon-warmth: 0.13;
    --comment-icon-opacity: 0.26;
    --comment-icon-rotate: 8deg;
    top: 9%;
    right: 31%;
}

.hero-comment-field span:nth-child(5) {
    --comment-icon-size: 52px;
    --comment-icon-alpha: 0.11;
    --comment-icon-warmth: 0.18;
    --comment-icon-opacity: 0.3;
    --comment-icon-rotate: -20deg;
    right: 8%;
    top: 19%;
}

.hero-comment-field span:nth-child(6) {
    --comment-icon-size: 66px;
    --comment-icon-alpha: 0.1;
    --comment-icon-warmth: 0.16;
    --comment-icon-opacity: 0.25;
    --comment-icon-rotate: 17deg;
    right: 17%;
    bottom: 11%;
}

.hero-comment-field span:nth-child(7) {
    --comment-icon-size: 31px;
    --comment-icon-alpha: 0.16;
    --comment-icon-warmth: 0.22;
    --comment-icon-opacity: 0.29;
    --comment-icon-rotate: -7deg;
    right: 46%;
    bottom: 18%;
}

.hero-comment-field span:nth-child(8) {
    --comment-icon-size: 118px;
    --comment-icon-alpha: 0.055;
    --comment-icon-warmth: 0.11;
    --comment-icon-opacity: 0.2;
    --comment-icon-rotate: -15deg;
    right: -2%;
    top: 54%;
}

.hero-content {
    width: 50%;
    z-index: 2;
}

.hero h1 {
    max-width: 620px;
    font-size: clamp(2.45rem, 3.15vw, 2.8rem);
    line-height: 1.08;
    margin-bottom: 22px;
}

.hero h1 span {
    display: inline-block;
    color: var(--secondary-pink);
}

.hero-subtitle {
    max-width: 610px;
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    line-height: 1.68;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: 0;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-btn::before {
    border-radius: 16px;
}

.hero-btn-secondary {
    color: var(--text-heading);
    background: rgba(255, 252, 249, 0.92);
    border-color: rgba(26, 26, 46, 0.1);
    box-shadow: 0 8px 22px rgba(26, 26, 46, 0.08), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.hero-btn-secondary:hover {
    color: var(--secondary-pink);
    background: rgba(255, 240, 235, 0.96);
    border-color: rgba(232, 69, 14, 0.18);
    box-shadow: 0 12px 26px rgba(26, 26, 46, 0.1);
}

.hero-btn-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.18s ease;
}

.hero-btn-secondary:hover .hero-btn-icon {
    transform: translateX(2px);
}

.pay-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 22px 0 24px;
    color: #FFFCF9;
    background: var(--text-heading);
    border: 1px solid rgba(26, 26, 46, 0.14);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(26, 26, 46, 0.16), 0 2px 0 rgba(255, 255, 255, 0.12) inset;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pay-btn:hover {
    transform: translateY(-3px);
    background: #25253A;
    box-shadow: 0 16px 34px rgba(26, 26, 46, 0.22), 0 2px 0 rgba(255, 255, 255, 0.14) inset;
}

.pay-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.icon-container {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.pay-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-yellow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.5);
}

.pay-icon.default-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.pay-btn:hover .pay-icon {
    animation: none;
}

.pay-btn:hover .comment-default-icon {
    opacity: 0;
    visibility: hidden;
}

.pay-btn:hover .comment-stack-icon {
    animation: payIconRotate 2.5s infinite;
    animation-delay: 0s;
}

.pay-btn:hover .comment-thread-icon {
    animation: payIconRotate 2.5s infinite;
    animation-delay: 0.5s;
}

.pay-btn:hover .comment-reply-icon {
    animation: payIconRotate 2.5s infinite;
    animation-delay: 1s;
}

.pay-btn:hover .comment-check-icon {
    animation: payIconRotate 2.5s infinite;
    animation-delay: 1.5s;
}

.pay-btn:active .pay-icon {
    animation: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pay-btn:active .comment-check-icon {
    animation: commentCheckAppear 0.6s ease forwards;
    visibility: visible;
}

@keyframes payIconRotate {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.5);
    }
    5% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    15% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    20% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.5);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.5);
    }
}

@keyframes commentCheckAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pay-btn:hover .pay-icon,
    .pay-btn:active .pay-icon,
    .pay-btn:active .comment-check-icon {
        animation: none !important;
    }

    .pay-btn .pay-icon {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .pay-btn .comment-default-icon {
        opacity: 1;
        visibility: visible;
    }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 12px 18px;
    background: rgba(255, 240, 235, 0.78);
    border: 1px solid rgba(232, 69, 14, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(26, 26, 46, 0.03);
    width: fit-content;
}

.hero-stars {
    display: flex;
    gap: 2px;
}

.hero-stars svg {
    filter: drop-shadow(0 1px 2px rgba(255, 140, 0, 0.3));
    transition: transform 0.2s ease;
}

.hero-trust:hover .hero-stars svg {
    animation: star-bounce 0.4s ease forwards;
}

.hero-trust:hover .hero-stars svg:nth-child(1) { animation-delay: 0s; }
.hero-trust:hover .hero-stars svg:nth-child(2) { animation-delay: 0.05s; }
.hero-trust:hover .hero-stars svg:nth-child(3) { animation-delay: 0.1s; }
.hero-trust:hover .hero-stars svg:nth-child(4) { animation-delay: 0.15s; }
.hero-trust:hover .hero-stars svg:nth-child(5) { animation-delay: 0.2s; }

@keyframes star-bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.hero-trust-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-trust-text strong {
    color: var(--text-dark);
}

.hero-visual {
    width: 50%;
    position: relative;
    height: 500px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 28px 6px 18px 42px;
    background: linear-gradient(145deg, rgba(232, 69, 14, 0.16), rgba(255, 167, 38, 0.24));
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2064%2064%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27%23000%27%20fill-rule%3D%27evenodd%27%20clip-rule%3D%27evenodd%27%20d%3D%27M60%200H4C1.789%200%200%201.789%200%204v40c0%202.211%201.789%204%204%204h8v12c0%201.617.973%203.078%202.469%203.695.496.207%201.015.305%201.531.305%201.039%200%202.062-.406%202.828-1.172L33.656%2048H60c2.211%200%204-1.789%204-4V4c0-2.211-1.789-4-4-4z%27/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2064%2064%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27%23000%27%20fill-rule%3D%27evenodd%27%20clip-rule%3D%27evenodd%27%20d%3D%27M60%200H4C1.789%200%200%201.789%200%204v40c0%202.211%201.789%204%204%204h8v12c0%201.617.973%203.078%202.469%203.695.496.207%201.015.305%201.531.305%201.039%200%202.062-.406%202.828-1.172L33.656%2048H60c2.211%200%204-1.789%204-4V4c0-2.211-1.789-4-4-4z%27/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0.8;
    filter: drop-shadow(0 22px 36px rgba(232, 69, 14, 0.12));
    transform: scaleX(-1) rotate(-3deg);
    transform-origin: center;
}

/* Trusted By / Logo Carousel */
.trusted-by {
    padding: 40px 0 48px;
    overflow: hidden;
}

.trusted-by-label {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    font-weight: 700;
}

.trusted-by-label strong {
    color: var(--text-dark);
}

.logo-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll-logos 40s linear infinite;
}

.logo-track img {
    height: 16px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
}

.logo-track img:hover {
    opacity: 0.8;
    filter: grayscale(100%) brightness(0.2);
}

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

@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        gap: 32px;
        padding: 0 20px;
    }

    .logo-carousel {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* ── Why Buy ── */
.why-buy-section {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 96px;
    background:
        linear-gradient(180deg, #F5F5F5 0%, #FFF7F3 48%, #F5F5F5 100%);
}

.why-buy-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 38px;
}

.section-kicker {
    grid-column: 1;
    grid-row: 1;
    color: var(--primary-mint);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.why-buy-header .section-title {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    margin-bottom: 0;
}

.why-buy-intro {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: 1.16fr 0.92fr 0.92fr;
    gap: 22px;
    align-items: stretch;
}

.why-buy-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    background: #FFFCF9;
    border: 1px solid rgba(26, 26, 46, 0.07);
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.035), 0 12px 30px rgba(26, 26, 46, 0.055);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-buy-card::after {
    content: '';
    position: absolute;
    inset: auto 20px 18px 20px;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 69, 14, 0), rgba(232, 69, 14, 0.22), rgba(232, 69, 14, 0));
    pointer-events: none;
}

.why-buy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 69, 14, 0.2);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06), 0 18px 42px rgba(26, 26, 46, 0.08);
}

.why-buy-card:hover .card-icon {
    transform: translateY(-4px) scale(1.06);
    background: var(--secondary-pink);
    color: #ffffff;
}

.why-buy-card--primary {
    isolation: isolate;
    grid-row: span 2;
    min-height: 542px;
    padding: 36px;
    background:
        linear-gradient(145deg, rgba(255, 240, 235, 0.92), rgba(255, 252, 249, 0.96) 52%, rgba(255, 167, 38, 0.08));
    border-color: rgba(232, 69, 14, 0.16);
}

.why-buy-card--primary > * {
    position: relative;
    z-index: 1;
}

.why-buy-card--primary .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
}

@media (min-width: 1025px) {
    .why-buy-card--primary::before {
        content: '';
        position: absolute;
        z-index: 0;
        right: 10px;
        bottom: 24px;
        left: 10px;
        height: 270px;
        background: url("images/why-buy/boost-visibility.png") center bottom / 255px auto no-repeat;
        filter: drop-shadow(0 18px 24px rgba(26, 26, 46, 0.13));
        pointer-events: none;
    }
}

.why-buy-card--ai {
    grid-column: span 2;
    min-height: 260px;
}

.why-buy-number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(232, 69, 14, 0.16);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.why-buy-card h3 {
    max-width: 13ch;
    margin-bottom: 14px;
    font-size: 1.32rem;
    line-height: 1.2;
}

.why-buy-card--primary h3 {
    max-width: 11ch;
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.05;
    letter-spacing: normal;
}

.why-buy-card p {
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Recent Work Showcase ── */
.showcase-section {
    padding: 84px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 16%, rgba(255, 167, 38, 0.12), transparent 26%),
        linear-gradient(180deg, #FFFCF9 0%, var(--bg-cream) 100%);
    scroll-margin-top: 96px;
}

.showcase-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
}

.showcase-header {
    text-align: left;
    margin-bottom: 0;
}

.showcase-header .section-title {
    max-width: 620px;
    text-align: left;
    margin: 0;
}

.showcase-intro {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 620px;
    margin: 18px 0 0;
    line-height: 1.65;
}

.showcase-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 24px;
}

.showcase-proof span {
    padding: 9px 13px;
    color: var(--secondary-pink);
    background: rgba(255, 240, 235, 0.86);
    border: 1px solid rgba(232, 69, 14, 0.12);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.showcase-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 330px;
    margin: 0;
}

.showcase-visual::before {
    content: '';
    position: absolute;
    inset: 18% 8% 4%;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 119, 48, 0.2), transparent 58%),
        linear-gradient(180deg, rgba(255, 246, 238, 0.92), rgba(255, 226, 208, 0.55));
    filter: blur(2px);
}

.showcase-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 330px);
    height: auto;
    filter: drop-shadow(0 22px 34px rgba(26, 26, 46, 0.16));
}

.showcase-carousel {
    position: relative;
    overflow: hidden;
    padding: 12px 0 16px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.showcase-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: scroll-showcase 42s linear infinite;
}

.showcase-track img {
    height: 118px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    background: #FFFCF9;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05), 0 8px 22px rgba(26, 26, 46, 0.05);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-track img:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

@media (prefers-reduced-motion: reduce) {
    .showcase-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        gap: 16px;
    }
    .showcase-carousel {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* Decorative Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 1;
}

/* Reddit-style floating comments */
.reddit-comment {
    position: absolute;
    background: #FFFCF9;
    border: 1px solid rgba(26, 26, 46, 0.07);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.08), 0 2px 8px rgba(26, 26, 46, 0.04);
    z-index: 3;
    color: #1a1a1b;
    max-width: 330px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
    padding: 15px 17px 11px;
    will-change: translate;
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rc-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rc-user {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1c1c1c;
}

.rc-dot {
    color: #878a8c;
    font-size: 0.6rem;
}

.rc-time {
    color: #878a8c;
    font-size: 0.75rem;
}

.rc-text {
    margin: 0 0 10px;
    font-size: 0.82rem;
    color: #1c1c1c;
    font-weight: 400;
    line-height: 1.55;
}

.rc-highlight {
    color: #0079d3;
    font-weight: 700;
}

.rc-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: -4px;
}

.rc-vote-group {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f6f7f8;
    border-radius: 20px;
    padding: 4px 10px;
    margin-right: 2px;
}

.rc-upvote,
.rc-downvote {
    color: #878a8c;
    cursor: default;
    display: flex;
}

.rc-upvote.active {
    color: #ff4500;
}

.rc-score {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ff4500;
    line-height: 1;
}

.rc-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #878a8c;
    padding: 4px 8px;
    border-radius: 20px;
    cursor: default;
    white-space: nowrap;
}

.rc-action-btn svg {
    flex-shrink: 0;
}

.rc-1 {
    top: 3%;
    right: 2%;
    animation-delay: 0s;
    transform: rotate(1.5deg);
}

.rc-2 {
    top: 40%;
    left: 0%;
    animation-delay: 2s;
    transform: rotate(-1deg);
}

.rc-3 {
    bottom: 3%;
    right: 10%;
    animation-delay: 4s;
    transform: rotate(0.5deg);
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-lilac);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-yellow);
}

/* Card Icons */
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FFF0EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-pink);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.clay-card:hover .card-icon {
    transform: translateY(-4px) scale(1.1);
    background: var(--secondary-pink);
    color: #ffffff;
}

/* Feature list checkmark icons */
.feature-icon {
    color: var(--primary-mint);
    vertical-align: middle;
    margin-right: 4px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list li:hover .feature-icon {
    transform: scale(1.3);
}

/* Quote icons in testimonials */
.testimonial-card {
    padding-top: 48px;
}

.quote-icon {
    color: var(--accent-lilac);
    opacity: 0.25;
    position: absolute;
    top: 24px;
    left: 32px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.5;
    transform: scale(1.15) rotate(-5deg);
}

/* FAQ icons */
.faq-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #FFF0EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
    color: var(--secondary-pink);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-question.has-icon {
    gap: 0;
}

.faq-question.has-icon h3,
.faq-question.has-icon .faq-title {
    flex: 1;
}

.faq-item:hover .faq-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    background: var(--secondary-pink);
    color: #ffffff;
}

.faq-item.active .faq-icon-wrap {
    background: var(--secondary-pink);
    color: #ffffff;
    transform: scale(1.1);
}

/* How It Works */
.how-it-works-section {
    position: relative;
    scroll-margin-top: 96px;
    background:
        linear-gradient(180deg, var(--bg-cream) 0%, #FFF7F3 100%);
}

.how-header {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 42px;
}

.how-header .section-kicker {
    grid-column: 1;
    grid-row: 1;
}

.how-header .section-title {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    margin-bottom: 0;
}

.how-intro {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 43px;
    left: calc(16.666% + 34px);
    right: calc(16.666% + 34px);
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 69, 14, 0.1), rgba(232, 69, 14, 0.34), rgba(232, 69, 14, 0.1));
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    min-height: 245px;
    padding: 28px;
    background: #FFFCF9;
    border: 1px solid rgba(26, 26, 46, 0.07);
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.035), 0 12px 30px rgba(26, 26, 46, 0.055);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 69, 14, 0.2);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06), 0 18px 42px rgba(26, 26, 46, 0.08);
}

.step-marker {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF0EB;
    color: var(--secondary-pink);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.step:hover .step-marker {
    transform: translateY(-4px);
    background: var(--secondary-pink);
    color: #ffffff;
}

.step-index {
    position: absolute;
    top: -14px;
    left: 12px;
    padding: 3px 8px;
    color: var(--secondary-pink);
    background: #FFFCF9;
    border: 1px solid rgba(232, 69, 14, 0.12);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.step:hover .step-index {
    color: #ffffff;
    background: var(--secondary-pink);
    border-color: var(--secondary-pink);
}

.step-copy {
    padding-top: 2px;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.18;
}

.step p {
    color: var(--text-muted);
    line-height: 1.62;
    margin: 0;
}

.step-marker--mint,
.step-marker--pink,
.step-marker--lilac {
    color: var(--secondary-pink);
    background: #FFF0EB;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 40px;
    align-items: center;
}

.pricing-card {
    text-align: center;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-mint);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 900;
    margin: 20px 0;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-company {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Testimonials accordion */
.testimonials-hidden {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
}

.testimonials-hidden > .testimonials-grid {
    overflow: hidden;
    margin-top: 0;
    transition: margin-top 0.5s ease;
}

.testimonials-hidden.is-open {
    grid-template-rows: 1fr;
}

.testimonials-hidden.is-open > .testimonials-grid {
    margin-top: 30px;
}

.testimonials-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px auto 0;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--primary-mint);
    border-radius: 12px;
    color: var(--primary-mint);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.testimonials-toggle:hover {
    background: var(--primary-mint);
    color: #fff;
}

.testimonials-toggle:active {
    transform: scale(0.97);
}

.testimonials-toggle-arrow {
    transition: transform 0.4s ease;
}

.testimonials-toggle[aria-expanded="true"] .testimonials-toggle-arrow {
    transform: rotate(180deg);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    padding: 0;
    font-family: inherit;
    text-align: left;
    color: inherit;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer[aria-hidden="false"] {
    max-height: 200px;
    margin-top: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.toggle {
    font-weight: 900;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Contact form */
.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-address {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-lilac);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    background: #fff;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-submit {
    align-self: flex-start;
}

.form-status {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
body > footer,
.site-footer {
    position: relative;
    overflow: hidden;
    background: #FFFCF9;
    padding: 56px 0 22px;
    margin-top: 0;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
}

body > footer::before,
.site-footer::before {
    content: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body > footer .container,
.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(160px, 0.55fr) minmax(160px, 0.55fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
    margin-bottom: 32px;
}

.footer-brand .logo {
    display: inline-flex;
}

.footer-tagline {
    max-width: 430px;
    margin-top: 18px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.footer-contact {
    display: grid;
    gap: 8px;
    max-width: 460px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.footer-contact p {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    margin: 0;
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.5;
}

p.footer-contact {
    display: block;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.footer-contact strong {
    color: var(--text-heading);
    font-weight: 900;
}

.footer-contact span {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact a {
    color: var(--text-dark);
    font-weight: 800;
}

.footer-contact a:hover {
    color: var(--secondary-pink);
}

.footer-payments {
    display: block;
    max-width: 240px;
    height: auto;
    margin-top: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 0.62;
}

.footer-column {
    position: static;
    display: block;
    min-height: auto;
}

.footer-column h4,
.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 14px;
    color: var(--text-heading);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-link-list {
    display: grid;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.footer-grid ul {
    display: grid;
    gap: 8px;
    list-style: none;
    padding-left: 0;
}

.footer-link-list a {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    font-weight: 750;
    transition: color 0.18s ease;
}

.footer-link-list a::before {
    content: none;
}

.footer-grid a {
    color: var(--text-muted);
    font-weight: 750;
    transition: color 0.18s ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--secondary-pink);
}

.footer-link-list a:hover::before,
.footer-link-list a:focus-visible::before {
    content: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline,
    .footer-contact {
        max-width: 680px;
    }

    .showcase-shell {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
        gap: 34px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .showcase-header,
    .showcase-header .section-title {
        text-align: left;
    }

    .showcase-intro {
        margin-left: 0;
        margin-right: 0;
    }

    .showcase-proof {
        justify-content: flex-start;
    }

    .showcase-visual {
        min-height: 280px;
    }

    .showcase-visual img {
        width: min(100%, 280px);
    }

    .how-header {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .how-header .section-title {
        text-align: center;
    }

    .how-header .section-kicker,
    .how-header .section-title,
    .how-intro {
        grid-column: 1;
        grid-row: auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-grid::before {
        top: 70px;
        bottom: 70px;
        left: 66px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(232, 69, 14, 0.1), rgba(232, 69, 14, 0.34), rgba(232, 69, 14, 0.1));
    }

    .step {
        min-height: auto;
    }

    .why-buy-header {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .why-buy-header .section-title {
        text-align: center;
    }

    .section-kicker,
    .why-buy-header .section-title,
    .why-buy-intro {
        grid-column: 1;
        grid-row: auto;
    }

    .why-buy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-buy-card--primary,
    .why-buy-card--ai {
        grid-column: span 2;
        grid-row: auto;
        min-height: auto;
    }

    .why-buy-card--primary h3 {
        max-width: none;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .hero-content {
        width: 100%;
        max-width: 720px;
    }

    .hero-visual {
        width: min(100%, 680px);
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero h1 {
        font-size: clamp(2.1rem, 5.6vw, 2.87rem);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        height: 350px;
        min-height: 350px;
    }

    .reddit-comment {
        max-width: 270px;
        font-size: 0.78rem;
    }

    .rc-text {
        font-size: 0.76rem;
    }

    .rc-1 {
        right: 0;
    }

    .rc-2 {
        left: 5%;
    }

    .rc-3 {
        right: 5%;
    }
}

@media (max-width: 1100px) {
    body > header {
        padding: 10px 0;
    }

    nav {
        min-height: 50px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .logo span {
        font-size: 1.14rem;
        letter-spacing: 0;
    }

    .logo img {
        height: 34px;
        width: 34px;
    }

    .nav-links {
        position: absolute;
        z-index: 20;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 10px;
        border: 1px solid rgba(232, 69, 14, 0.12);
        border-radius: 20px;
        background: #FFFCF9;
        box-shadow: 0 18px 36px rgba(26, 26, 46, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav-links li {
        padding: 0;
        border-bottom: 0;
    }

    .nav-links a,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 13px 14px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin: 2px 0 2px;
        padding: 4px;
        border-radius: 16px;
        background: rgba(255, 240, 235, 0.6);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown::after {
        content: none;
    }

    .nav-dropdown-menu a {
        padding: 11px 14px;
    }

    .nav-dropdown .nav-caret {
        transform: rotate(180deg);
    }

    .nav-links-cta {
        display: block;
        margin-top: 4px;
    }

    .nav-links-cta a {
        color: #FFFCF9;
        text-align: center;
        background: var(--secondary-pink);
        box-shadow: 0 8px 18px rgba(214, 59, 14, 0.22);
    }

    .nav-links-cta a:hover,
    .nav-links-cta a:focus-visible {
        color: #FFFCF9;
        background: #C13209;
    }
}

@media (max-width: 768px) {
    body > footer,
    .site-footer {
        padding: 44px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 32px;
    }

    .footer-contact {
        padding: 14px;
    }

    .footer-contact p {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .footer-link-list {
        gap: 8px;
    }

    .footer-link-list a {
        min-height: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .showcase-section {
        padding: 64px 0;
    }

    .showcase-shell {
        gap: 22px;
        margin-bottom: 28px;
    }

    .showcase-visual {
        min-height: 220px;
    }

    .showcase-visual img {
        width: min(76vw, 230px);
    }

    .showcase-track {
        gap: 14px;
    }

    .showcase-track img {
        height: 92px;
    }

    .how-it-works-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .how-header {
        gap: 12px;
        margin-bottom: 30px;
    }

    .steps-grid {
        gap: 16px;
    }

    .steps-grid::before {
        display: none;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px;
    }

    .step-marker {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .step h3 {
        font-size: 1.28rem;
    }

    .why-buy-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .why-buy-header {
        gap: 12px;
        margin-bottom: 28px;
    }

    .why-buy-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-buy-card,
    .why-buy-card--primary,
    .why-buy-card--ai {
        grid-column: auto;
        min-height: auto;
        padding: 26px;
    }

    .why-buy-card h3,
    .why-buy-card--primary h3 {
        max-width: 13ch;
        font-size: 1.35rem;
        line-height: 1.18;
    }

    .why-buy-number {
        top: 22px;
        right: 24px;
        font-size: 2rem;
    }

    .hero {
        padding: 34px 0 38px;
        min-height: auto;
    }

    .hero-comment-field span {
        opacity: 0.2;
    }

    .hero-comment-field span:nth-child(1) {
        top: 9%;
        left: 4%;
    }

    .hero-comment-field span:nth-child(2) {
        top: auto;
        bottom: 8%;
        left: 6%;
        width: 54px;
    }

    .hero-comment-field span:nth-child(3) {
        top: 25%;
        left: auto;
        right: 6%;
        width: 34px;
    }

    .hero-comment-field span:nth-child(n+4) {
        display: none;
    }

    .hero h1 {
        max-width: 10.5ch;
        font-size: clamp(1.58rem, 7vw, 1.93rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 26px;
    }

    .hero-visual {
        display: none;
    }

    .logo span {
        font-size: 1.08rem;
    }

    .logo img {
        height: 32px;
        width: 32px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
    }

    .hero-actions .clay-btn,
    .hero-actions .pay-btn {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        text-align: center;
    }

    .btn-text {
        white-space: normal;
    }

    .hero-trust {
        max-width: min(100%, 340px);
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .hero-trust-text {
        line-height: 1.35;
    }
}

/* Blog / Article Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    text-align: center;
    padding: 60px 0 40px;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.article-body {
    padding-bottom: 60px;
}

.article-body h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 16px;
}

.article-body h3 {
    font-size: 1.35rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

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

.article-body li {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 8px;
}

.article-body a {
    color: var(--secondary-pink);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--text-heading);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 24px 0;
    display: block;
}

.article-body figure {
    margin: 32px 0;
}

.article-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

.article-body strong {
    font-weight: 800;
}

.article-body blockquote {
    border-left: 4px solid var(--secondary-pink);
    margin: 24px 0;
    padding: 16px 24px;
    background: rgba(255, 107, 53, 0.04);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

.article-body blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    color: var(--text-muted);
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 1rem;
}

.article-body th,
.article-body td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-body th {
    font-weight: 800;
    color: var(--text-heading);
    background: rgba(0, 0, 0, 0.02);
}

.article-cta {
    text-align: center;
    padding: 48px 40px;
    margin: 48px 0;
}

.article-cta h3 {
    margin-bottom: 16px;
}

.article-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.article-service-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.article-service-actions .clay-btn {
    margin: 0;
}

/* ── Compare Section (REDCmts vs Others) ── */
.compare-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.compare-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--clay-shadow-out);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 0.95rem;
}

.compare-table thead th {
    padding: 24px 16px;
    background: #FAFAFA;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    font-weight: 700;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table .compare-feature-col {
    text-align: left;
    width: 30%;
}

.compare-table .compare-us-col {
    background: rgba(232, 69, 14, 0.04);
    border-left: 1px solid rgba(232, 69, 14, 0.15);
    border-right: 1px solid rgba(232, 69, 14, 0.15);
}

.compare-brand {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
}

.compare-brand--us {
    color: var(--primary-mint);
    font-size: 1.05rem;
}

.compare-table tbody td {
    padding: 18px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text-dark);
    font-weight: 600;
}

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

.compare-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.015);
}

.compare-table td.compare-feature {
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
}

.compare-table td.compare-us {
    background: rgba(232, 69, 14, 0.04);
    border-left: 1px solid rgba(232, 69, 14, 0.15);
    border-right: 1px solid rgba(232, 69, 14, 0.15);
    font-weight: 800;
    color: var(--primary-mint);
}

.compare-yes,
.compare-no,
.compare-partial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.1rem;
}

.compare-yes {
    background: rgba(46, 204, 113, 0.12);
    color: #16A34A;
}

.compare-no {
    background: rgba(231, 76, 60, 0.10);
    color: #DC2626;
}

.compare-partial {
    background: rgba(255, 167, 38, 0.15);
    color: #D97706;
}

.compare-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.compare-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.compare-legend .compare-yes,
.compare-legend .compare-no,
.compare-legend .compare-partial {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
}

.compare-cta {
    text-align: center;
    max-width: 720px;
    margin: 40px auto 0;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: var(--clay-shadow-out);
}

.compare-cta-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.compare-cta-text strong {
    color: var(--primary-mint);
}

@media (max-width: 768px) {
    .compare-table {
        font-size: 0.85rem;
    }
    .compare-table thead th,
    .compare-table tbody td {
        padding: 14px 10px;
    }
    .compare-yes,
    .compare-no,
    .compare-partial {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
    }
}

/* Blog hub grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    padding: 32px;
}

.blog-card h3 {
    margin-bottom: 12px;
}

.blog-card h3 a {
    color: var(--text-heading);
    transition: color 0.2s;
}

.blog-card h3 a:hover {
    color: var(--secondary-pink);
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-card .read-more {
    color: var(--secondary-pink);
    font-weight: 700;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--secondary-pink);
}

.breadcrumbs span {
    margin: 0 8px;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body p,
    .article-body li {
        font-size: 1rem;
    }

    .article-cta {
        padding: 32px 24px;
    }
}

/* ── Pricing Background Comments ── */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-bg-comments {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 320px;
    height: 100%;
    z-index: 1;
    opacity: 0.22;
    filter: blur(0.5px);
    pointer-events: none;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.pricing-bg-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scroll-comments 45s linear infinite;
}

.pricing-bg-comment {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px 12px;
    flex-shrink: 0;
}

.pbc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.pbc-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pbc-user {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1A1A2E;
}

.pbc-time {
    font-size: 0.6rem;
    color: #9CA3AF;
    margin-left: auto;
}

.pbc-text {
    font-size: 0.72rem;
    line-height: 1.4;
    color: #374151;
    margin-bottom: 6px;
}

.pbc-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.6rem;
    color: #9CA3AF;
}

.pbc-score {
    font-weight: 700;
    color: var(--primary-mint);
}

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

@media (max-width: 768px) {
    .pricing-bg-comments {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-bg-track {
        animation: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.51rem, 7.21vw, 1.72rem);
    }

    .clay-card {
        padding: 25px;
        border-radius: 14px;
    }

    section {
        padding: 50px 0;
    }
}

/* AEO / GEO Service Pages */
.answer-service-page {
    --service-field: oklch(98.8% 0.012 64);
    --service-surface: oklch(99% 0.006 64);
    --service-wash: oklch(96.2% 0.035 45);
    --service-ink: oklch(21% 0.04 286);
    --service-muted: oklch(49% 0.042 287);
    --service-orange: oklch(61% 0.205 38);
    --service-orange-deep: oklch(52% 0.19 36);
    --service-gold: oklch(78% 0.16 75);
    background:
        radial-gradient(circle at 92% 8%, oklch(88% 0.12 71 / 0.22), transparent 28%),
        linear-gradient(180deg, var(--service-field), oklch(97% 0.02 55));
}

.answer-service-page main > section {
    position: relative;
    isolation: isolate;
}

.answer-service-page main > section > .container {
    position: relative;
    z-index: 1;
}

.answer-service-page main > section:not(.service-hero)::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 0;
    height: 72px;
    background: linear-gradient(180deg, oklch(99% 0.009 62 / 0.76), oklch(99% 0.009 62 / 0));
    pointer-events: none;
}

.service-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: calc(100svh - 80px);
    padding: clamp(42px, 4.8vw, 64px) 0 clamp(24px, 3vw, 34px);
    background:
        linear-gradient(oklch(67% 0.16 38 / 0.11) 1px, transparent 1px),
        linear-gradient(90deg, oklch(67% 0.16 38 / 0.1) 1px, transparent 1px),
        linear-gradient(145deg, oklch(99% 0.012 70) 0%, oklch(96.5% 0.038 45) 100%);
    background-size: 34px 34px, 34px 34px, auto;
}

.service-hero > .container {
    width: 100%;
}

.service-hero::after {
    content: none;
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.95fr);
    gap: clamp(36px, 6vw, 76px);
    align-items: center;
}

.service-hero-copy h1 {
    max-width: 760px;
    margin-bottom: 12px;
    color: var(--service-ink);
    font-size: clamp(2.02rem, 3.5vw, 3rem);
    line-height: 1.06;
    letter-spacing: 0;
}

.ai-badge-grid {
    display: grid;
    grid-template-columns: repeat(7, 34px);
    gap: 6px;
    width: max-content;
    max-width: 100%;
    margin: 0 0 16px;
}

.ai-badge {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border: 1px solid oklch(45% 0.04 285 / 0.1);
    border-radius: 11px;
    background: oklch(99% 0.009 62 / 0.82);
    box-shadow: 0 8px 20px oklch(24% 0.04 285 / 0.06);
    overflow: hidden;
}

.ai-badge::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 9px;
    box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.72);
    pointer-events: none;
}

.ai-badge svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 54%;
    height: 54%;
}

.ai-badge--openai {
    background: linear-gradient(145deg, oklch(22% 0.018 268), oklch(33% 0.03 250));
}

.ai-badge--google,
.ai-badge--gemini,
.ai-badge--perplexity,
.ai-badge--claude {
    background: oklch(99% 0.009 62 / 0.94);
}

.ai-badge--google svg {
    width: 58%;
    height: 58%;
}

.ai-badge--gemini svg,
.ai-badge--claude svg {
    width: 56%;
    height: 56%;
}

.ai-badge--perplexity {
    background: linear-gradient(145deg, oklch(99% 0.01 190), oklch(94% 0.028 190));
}

.ai-badge--perplexity svg {
    width: 66%;
    height: 66%;
}

.ai-badge--mistral {
    background: linear-gradient(145deg, oklch(62% 0.19 48), oklch(46% 0.17 34));
}

.ai-badge--mistral svg {
    width: 68%;
    height: 68%;
}

.ai-badge--grok {
    background: linear-gradient(145deg, oklch(20% 0.02 260), oklch(34% 0.035 236));
}

.ai-badge--grok svg {
    width: 64%;
    height: 64%;
}

.answer-lede {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--service-ink);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    line-height: 1.42;
}

.service-subtitle {
    max-width: 670px;
    color: var(--service-muted);
    font-size: 1rem;
    line-height: 1.62;
}

.service-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 680px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.service-hero .hero-actions {
    gap: 10px;
}

.service-hero .hero-btn {
    padding-inline: 20px;
}

.service-proof-list li {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border: 1px solid oklch(67% 0.16 38 / 0.24);
    border-radius: 999px;
    background: oklch(99% 0.01 62 / 0.74);
    color: var(--service-orange-deep);
    font-weight: 900;
    font-size: 0.88rem;
}

.service-visual {
    position: relative;
    min-height: 500px;
}

.serp-card,
.prompt-card,
.answer-comment-card {
    position: absolute;
    border: 1px solid oklch(45% 0.04 285 / 0.12);
    border-radius: 18px;
    background: var(--service-surface);
    box-shadow: 0 14px 36px oklch(24% 0.04 285 / 0.1);
}

.serp-card,
.prompt-card {
    top: 2px;
    left: 0;
    z-index: 2;
    width: min(86%, 390px);
    padding: 20px 22px;
}

.service-visual--aeo {
    min-height: 590px;
}

.service-visual--aeo .serp-card--image {
    width: min(84%, 410px);
    padding: 12px;
    background: oklch(24% 0.01 286);
    overflow: hidden;
}

.service-visual--aeo .serp-card--image .serp-label {
    margin: 2px 8px 10px;
    color: oklch(83% 0.14 74);
}

.serp-target-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.prompt-card {
    top: 30px;
    left: 28px;
}

.serp-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--service-orange-deep);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.serp-card p,
.prompt-card p {
    margin: 0;
    color: var(--service-ink);
    font-weight: 800;
    line-height: 1.4;
}

.answer-comment-card {
    top: 136px;
    right: 0;
    z-index: 3;
    width: min(92%, 460px);
    padding: 24px;
}

.service-visual--aeo .answer-comment-card {
    top: 364px;
    width: min(92%, 470px);
}

.service-visual--aeo .answer-comment-card--image {
    top: 382px;
    width: min(91%, 460px);
    padding: 9px;
    background: oklch(99% 0.006 68);
    overflow: hidden;
}

.comment-result-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.answer-comment-card .rc-text {
    margin: 14px 0 16px;
    color: var(--service-ink);
    font-size: 0.98rem;
    line-height: 1.62;
}

.service-visual-image {
    position: absolute;
    right: 36px;
    bottom: 4px;
    z-index: 1;
    width: min(70%, 390px);
    height: auto;
    border: 1px solid oklch(67% 0.16 38 / 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 46px oklch(28% 0.06 45 / 0.13);
}

.service-answer-band,
.service-section {
    padding: clamp(64px, 7vw, 96px) 0;
}

.service-answer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.service-answer-grid h2,
.split-section h2,
.section-heading-wide h2,
.comparison-shell h2,
.trust-rules h2,
.service-cta-card h2 {
    color: var(--service-ink);
    font-size: clamp(2.15rem, 4vw, 3.45rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.service-answer-art {
    display: block;
    width: min(82%, 320px);
    height: auto;
    margin: 0 0 clamp(18px, 3vw, 28px);
    filter: drop-shadow(0 18px 28px oklch(28% 0.06 45 / 0.16));
}

.answer-box {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid oklch(67% 0.16 38 / 0.22);
    border-radius: 24px;
    background:
        linear-gradient(135deg, oklch(99% 0.009 62) 0%, oklch(96.8% 0.036 45) 100%);
    box-shadow: 0 14px 34px oklch(24% 0.04 285 / 0.08);
}

.answer-box p {
    color: var(--service-ink);
    font-size: 1.12rem;
    line-height: 1.72;
}

.answer-box ul,
.trust-rules ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.answer-box li,
.trust-rules li {
    position: relative;
    padding-left: 28px;
    color: var(--service-muted);
    font-weight: 700;
    line-height: 1.55;
}

.answer-box li::before,
.trust-rules li::before {
    content: '';
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--service-orange);
    box-shadow: 0 0 0 5px oklch(72% 0.18 48 / 0.13);
}

.service-section--soft {
    background:
        radial-gradient(circle at 12% 20%, oklch(86% 0.12 70 / 0.18), transparent 22%),
        linear-gradient(180deg, oklch(98.5% 0.018 63), oklch(96.5% 0.032 47));
}

.split-section,
.comparison-shell,
.trust-rules,
.service-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(30px, 5vw, 68px);
    align-items: center;
}

.split-section p,
.comparison-shell p,
.trust-rules p,
.service-cta-card p {
    color: var(--service-muted);
    font-size: 1.05rem;
    line-height: 1.72;
}

.source-stack {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid oklch(67% 0.16 38 / 0.18);
    border-radius: 22px;
    background: oklch(99% 0.009 62 / 0.72);
}

.partnership-animation {
    display: grid;
    grid-template-columns: 64px 18px 64px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 118px;
    padding: 14px;
    border: 1px solid oklch(67% 0.16 38 / 0.16);
    border-radius: 20px;
    background:
        linear-gradient(oklch(67% 0.16 38 / 0.09) 1px, transparent 1px),
        linear-gradient(90deg, oklch(67% 0.16 38 / 0.08) 1px, transparent 1px),
        oklch(99% 0.012 68 / 0.9);
    background-size: 22px 22px, 22px 22px, auto;
}

.partnership-logo-wrap {
    display: grid;
    justify-items: center;
    gap: 7px;
    color: var(--service-muted);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.partnership-logo {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: oklch(99% 0.009 62);
    box-shadow: 0 10px 24px oklch(24% 0.04 285 / 0.1);
}

.partnership-logo svg {
    display: block;
    width: 70%;
    height: 70%;
}

.partnership-logo--google {
    animation: google-reach 2.6s ease-in-out infinite;
}

.partnership-logo--reddit {
    background: oklch(98% 0.014 65);
    animation: reddit-reach 2.6s ease-in-out infinite;
}

.partnership-logo--reddit svg {
    width: 74%;
    height: 74%;
}

.handshake-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: 18px;
    height: 54px;
    min-width: 0;
    color: var(--service-orange-deep);
}

.handshake-stage::before {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;
    border-radius: 999px;
    background: oklch(67% 0.16 38 / 0.24);
}

@keyframes google-reach {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    38%, 58% {
        transform: translateX(4px) rotate(-2deg);
    }
}

@keyframes reddit-reach {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    38%, 58% {
        transform: translateX(-4px) rotate(2deg);
    }
}

.source-stack a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--service-ink);
    background: oklch(98% 0.014 65);
    font-weight: 800;
    line-height: 1.35;
    transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.source-stack a::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--service-orange);
    flex: 0 0 10px;
}

.source-stack a:hover,
.source-stack a:focus-visible {
    color: var(--service-orange-deep);
    background: oklch(96% 0.034 45);
    transform: translateX(2px);
}

.section-heading-wide {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
    gap: clamp(24px, 5vw, 62px);
    align-items: end;
    margin-bottom: clamp(32px, 5vw, 54px);
}

.section-heading-wide p:last-child {
    color: var(--service-muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.service-section--deliverables {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(oklch(67% 0.16 38 / 0.055) 1px, transparent 1px),
        linear-gradient(90deg, oklch(67% 0.16 38 / 0.045) 1px, transparent 1px),
        linear-gradient(180deg, oklch(99% 0.011 68), oklch(97% 0.022 52));
    background-size: 30px 30px, 30px 30px, auto;
}

.deliverable-heading {
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.44fr);
}

.deliverable-heading-copy {
    max-width: 720px;
}

.deliverable-heading-art {
    display: block;
    justify-self: center;
    width: min(100%, 300px);
    height: auto;
    filter: drop-shadow(0 18px 28px oklch(28% 0.06 45 / 0.16));
}

.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(190px, auto);
    gap: 16px;
}

.deliverable-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 206px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid oklch(67% 0.16 38 / 0.16);
    border-radius: 22px;
    background:
        linear-gradient(oklch(67% 0.16 38 / 0.05) 1px, transparent 1px),
        linear-gradient(90deg, oklch(67% 0.16 38 / 0.04) 1px, transparent 1px),
        oklch(99% 0.009 62 / 0.94);
    background-size: 22px 22px, 22px 22px, auto;
    box-shadow: 0 14px 32px oklch(24% 0.04 285 / 0.08);
    overflow: hidden;
}

.deliverable-panel--wide {
    grid-column: span 2;
}

.deliverable-panel--tall {
    grid-column: 1 / -1;
    min-height: 176px;
    background:
        linear-gradient(90deg, oklch(23% 0.035 285), oklch(30% 0.07 36));
    color: oklch(98% 0.012 68);
}

.deliverable-panel::after {
    content: attr(data-step);
    position: absolute;
    right: 18px;
    bottom: -14px;
    color: oklch(67% 0.16 38 / 0.11);
    font-size: clamp(4.2rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
}

.deliverable-panel:nth-child(1)::after {
    content: '01';
}

.deliverable-panel:nth-child(2)::after {
    content: '02';
}

.deliverable-panel:nth-child(3)::after {
    content: '03';
}

.deliverable-panel:nth-child(4)::after {
    content: '04';
    color: oklch(95% 0.04 72 / 0.13);
}

.deliverable-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--service-orange-deep);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.deliverable-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--service-wash);
    color: var(--service-orange-deep);
    font-size: 0.78rem;
    font-weight: 900;
    flex: 0 0 36px;
}

.deliverable-panel--tall .deliverable-meta,
.deliverable-panel--tall h3,
.deliverable-panel--tall p {
    color: oklch(98% 0.012 68);
}

.deliverable-panel--tall .deliverable-number {
    background: oklch(98% 0.012 68 / 0.14);
    color: oklch(91% 0.13 70);
}

.deliverable-panel h3 {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin-bottom: 12px;
    font-size: 1.45rem;
    line-height: 1.15;
}

.deliverable-panel p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    color: var(--service-muted);
    line-height: 1.65;
}

.deliverable-panel--tall p {
    max-width: 760px;
    color: oklch(98% 0.012 68);
    opacity: 0.82;
}

.service-steps .step {
    background: oklch(99% 0.009 62);
}

.service-process-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, oklch(67% 0.16 38 / 0.055) 1px, transparent 1px),
        linear-gradient(oklch(67% 0.16 38 / 0.045) 1px, transparent 1px),
        oklch(99% 0.009 62);
    background-size: 32px 32px, 32px 32px, auto;
}

.service-process-section .how-header {
    margin-bottom: clamp(28px, 4vw, 42px);
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid oklch(67% 0.16 38 / 0.16);
    border-radius: 28px;
    background: oklch(99% 0.009 62 / 0.86);
    box-shadow: 0 16px 42px oklch(24% 0.04 285 / 0.07);
}

.service-process-section .how-header .section-title {
    max-width: 720px;
}

.service-process-section .how-intro {
    padding: 18px;
    border: 1px solid oklch(67% 0.16 38 / 0.14);
    border-radius: 18px;
    background: oklch(98% 0.014 65 / 0.8);
    font-weight: 700;
}

.service-process-section .steps-grid {
    gap: 16px;
}

.service-process-section .steps-grid::before {
    top: 38px;
    height: 1px;
    background: linear-gradient(90deg, transparent, oklch(67% 0.16 38 / 0.45), transparent);
}

.service-process-section .step {
    min-height: 224px;
    padding: 24px;
    border-color: oklch(67% 0.16 38 / 0.16);
    border-radius: 22px;
    background:
        linear-gradient(oklch(67% 0.16 38 / 0.045) 1px, transparent 1px),
        linear-gradient(90deg, oklch(67% 0.16 38 / 0.04) 1px, transparent 1px),
        oklch(99% 0.009 62 / 0.94);
    background-size: 24px 24px, 24px 24px, auto;
    box-shadow: 0 14px 32px oklch(24% 0.04 285 / 0.075);
}

.service-process-section .step::after {
    content: '';
    position: absolute;
    inset: auto 18px 18px auto;
    width: 46px;
    height: 46px;
    border: 1px solid oklch(67% 0.16 38 / 0.14);
    border-radius: 16px;
    background: oklch(99% 0.009 62 / 0.78);
    opacity: 0.72;
    pointer-events: none;
}

.service-process-section .step-marker {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: oklch(96% 0.035 43);
}

.service-process-section .step-index {
    background: oklch(99% 0.009 62);
}

.service-process-section .step-copy {
    padding-top: 4px;
}

.service-process-section .step h3 {
    font-size: 1.28rem;
}

.comparison-shell {
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid oklch(67% 0.16 38 / 0.16);
    border-radius: 28px;
    background: oklch(99% 0.009 62 / 0.78);
    box-shadow: 0 16px 42px oklch(24% 0.04 285 / 0.08);
}

.compare-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

.compare-list div {
    padding: 18px;
    border: 1px solid oklch(45% 0.04 285 / 0.08);
    border-radius: 18px;
    background: oklch(98% 0.014 65);
}

.compare-list h3 {
    margin-bottom: 8px;
    color: var(--service-orange-deep);
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.28;
}

.compare-list p {
    margin: 0;
    color: var(--service-muted);
    line-height: 1.58;
}

.faq-title {
    color: var(--text-heading);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.35;
}

.trust-rules {
    position: relative;
    align-items: start;
    gap: clamp(24px, 5vw, 54px);
    padding: clamp(30px, 5vw, 50px);
    border: 1px solid oklch(80% 0.12 70 / 0.18);
    border-radius: 28px;
    background:
        linear-gradient(oklch(98% 0.012 68 / 0.045) 1px, transparent 1px),
        linear-gradient(90deg, oklch(98% 0.012 68 / 0.04) 1px, transparent 1px),
        linear-gradient(135deg, oklch(24% 0.04 286), oklch(31% 0.07 35));
    background-size: 26px 26px, 26px 26px, auto;
    box-shadow: 0 18px 50px oklch(24% 0.04 285 / 0.16);
    overflow: hidden;
}

.trust-rules::after {
    content: 'GUARANTEED';
    position: absolute;
    right: clamp(18px, 4vw, 34px);
    bottom: -0.12em;
    color: oklch(98% 0.012 68 / 0.07);
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
}

.trust-rules h2,
.trust-rules p,
.trust-rules li {
    color: oklch(98% 0.012 68);
}

.trust-rules p,
.trust-rules li {
    opacity: 0.86;
}

.trust-rules ul {
    counter-reset: trust-rule;
    margin-top: 0;
}

.trust-rules li {
    min-height: 74px;
    padding: 16px 18px 16px 58px;
    border: 1px solid oklch(98% 0.012 68 / 0.12);
    border-radius: 18px;
    background: oklch(98% 0.012 68 / 0.07);
}

.trust-rules li::before {
    counter-increment: trust-rule;
    content: counter(trust-rule, decimal-leading-zero);
    top: 16px;
    left: 16px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: oklch(82% 0.15 73 / 0.16);
    color: oklch(88% 0.14 72);
    font-size: 0.72rem;
    font-weight: 900;
}

.trust-rules .section-kicker {
    color: oklch(82% 0.15 73);
}

.service-cta-section {
    padding: clamp(64px, 7vw, 98px) 0;
    background:
        radial-gradient(circle at 82% 30%, oklch(81% 0.16 70 / 0.2), transparent 26%),
        linear-gradient(180deg, oklch(98.8% 0.012 64), oklch(96% 0.035 43));
}

.service-cta-card {
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid oklch(67% 0.16 38 / 0.18);
    border-radius: 30px;
    background: oklch(99% 0.009 62 / 0.82);
    box-shadow: 0 18px 46px oklch(24% 0.04 285 / 0.1);
}

.service-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.service-cta-actions .clay-btn {
    text-align: center;
}

.service-faq {
    padding: clamp(64px, 7vw, 98px) 0;
    background:
        linear-gradient(oklch(67% 0.16 38 / 0.055) 1px, transparent 1px),
        linear-gradient(90deg, oklch(67% 0.16 38 / 0.045) 1px, transparent 1px),
        linear-gradient(180deg, oklch(99% 0.009 62), oklch(97% 0.022 52));
    background-size: 30px 30px, 30px 30px, auto;
}

.service-faq .section-kicker,
.service-faq .section-title {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.service-faq .faq-container {
    max-width: 920px;
    display: grid;
    gap: 14px;
}

.service-faq .faq-item {
    margin-bottom: 0;
    padding: 0;
    border: 1px solid oklch(67% 0.16 38 / 0.16);
    border-radius: 20px;
    background: oklch(99% 0.009 62 / 0.92);
    box-shadow: 0 12px 28px oklch(24% 0.04 285 / 0.06);
}

.service-faq .faq-item::before {
    border-radius: 20px;
}

.service-faq .faq-question {
    min-height: 78px;
    padding: 18px 20px;
}

.service-faq .faq-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: oklch(96% 0.035 43);
}

.service-faq .faq-title {
    font-size: 1.08rem;
}

.service-faq .toggle {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid oklch(67% 0.16 38 / 0.16);
    border-radius: 12px;
    background: oklch(99% 0.009 62);
    color: var(--service-orange-deep);
    font-size: 1.25rem;
}

.service-faq .faq-answer {
    padding: 0 20px;
}

.service-faq .faq-answer[aria-hidden="false"],
.service-faq .faq-item.active .faq-answer {
    margin-top: 0;
    padding-bottom: 20px;
}

.service-faq .faq-answer p {
    max-width: 72ch;
    color: var(--service-muted);
    font-weight: 700;
    line-height: 1.65;
}

.answer-service-page .faq-answer[aria-hidden="false"],
.answer-service-page .faq-item.active .faq-answer {
    max-height: 280px;
}

@media (max-width: 1024px) {
    .service-hero-grid,
    .service-answer-grid,
    .split-section,
    .comparison-shell,
    .trust-rules,
    .service-cta-card,
    .section-heading-wide {
        grid-template-columns: 1fr;
    }

    .service-visual {
        min-height: 500px;
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }

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

    .service-hero-copy {
        text-align: center;
    }

    .service-hero-copy h1,
    .ai-badge-grid,
    .answer-lede,
    .service-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .service-proof-list {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .service-answer-art {
        width: min(58%, 280px);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: calc(100svh - 72px);
        padding-top: 42px;
        padding-bottom: 28px;
    }

    .service-hero-copy h1 {
        font-size: clamp(1.72rem, 7.9vw, 2.3rem);
        line-height: 1.08;
        margin-bottom: 12px;
    }

    .ai-badge-grid {
        grid-template-columns: repeat(4, 32px);
        gap: 6px;
        margin-bottom: 14px;
    }

    .ai-badge {
        border-radius: 10px;
    }

    .service-visual {
        display: none;
    }

    .answer-lede {
        font-size: 1.02rem;
        line-height: 1.45;
    }

    .service-subtitle {
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .serp-card,
    .prompt-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 14px;
    }

    .answer-comment-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-bottom: 16px;
    }

    .service-visual-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
    }

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

    .deliverable-panel,
    .deliverable-panel--wide,
    .deliverable-panel--tall {
        grid-column: auto;
        min-height: auto;
    }

    .service-proof-list {
        justify-content: flex-start;
    }

    .service-hero-copy {
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .service-hero-copy h1,
    .service-answer-grid h2,
    .split-section h2,
    .section-heading-wide h2,
    .comparison-shell h2,
    .trust-rules h2,
    .service-cta-card h2 {
        overflow-wrap: anywhere;
    }

    .service-cta-actions .clay-btn,
    .service-hero .clay-btn,
    .service-hero .pay-btn {
        width: 100%;
        justify-content: center;
    }
}
