/*
 Theme Name:   Soiletics
 Theme URI:    https://soiletics.com
 Description:  Landing page theme for Soiletics — the home soil microbe cultivation kit.
 Author:       Soiletics
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         landing-page, gardening, soil, science, e-commerce
*/

/* ============================================================
   SOILETICS DESIGN SYSTEM v1.0
   Confident · Scientific · Grounded
   ============================================================ */

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

:root {
    /* Core palette — rich soil tones anchored to a sharp sage accent */
    --ink:              #0E120D;
    --charcoal:         #1C2219;
    --bark:             #2D3A29;
    --sage-dark:        #3A5C35;
    --sage:             #4E7A47;
    --sage-light:       #6EA864;
    --sage-pale:        #C8E0C3;
    --clay:             #A0522D;
    --clay-light:       #C8784A;
    --sand:             #E8D9C0;
    --parchment:        #F5F0E8;
    --off-white:        #FAFAF7;
    --white:            #FFFFFF;

    --text-primary:     #0E120D;
    --text-secondary:   #3D4A39;
    --text-muted:       #7A8C75;
    --border-light:     #DDD8CD;
    --border-mid:       #C5BFB2;

    /* Typography */
    --font-display:     'Fraunces', Georgia, serif;
    --font-body:        'DM Sans', 'Helvetica Neue', sans-serif;

    /* Layout */
    --section-pad:      96px;
    --card-radius:      14px;
    --pill-radius:      100px;

    /* Shadows */
    --shadow-xs:        0 1px 4px rgba(14,18,13,0.06);
    --shadow-sm:        0 3px 12px rgba(14,18,13,0.08);
    --shadow-md:        0 8px 28px rgba(14,18,13,0.11);
    --shadow-lg:        0 18px 56px rgba(14,18,13,0.15);
    --shadow-xl:        0 30px 80px rgba(14,18,13,0.2);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    background: var(--parchment);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--sage); }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }

h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1em;
}
p:last-child { margin-bottom: 0; }

em {
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
}

strong { font-weight: 600; color: var(--text-primary); }

/* ============================================================
   LABEL / EYEBROW
   ============================================================ */

.label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1.2rem;
}

.label-dot {
    width: 6px;
    height: 6px;
    background: var(--sage-light);
    border-radius: 50%;
    display: inline-block;
    animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.label-dark {
    color: rgba(255,255,255,0.55);
}

.label-dark .label-dot {
    background: var(--sage-light);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 32px;
    border-radius: var(--pill-radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background: var(--bark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sage {
    background: var(--sage-dark);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-sage:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-clay {
    background: var(--clay);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-clay:hover {
    background: var(--clay-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-mid);
}
.btn-outline-dark:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.7s ease forwards;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================================================
   SITE HEADER
   ============================================================ */

/* Ensure WordPress wrapper divs never break sticky positioning */
html, body, #page, .site {
    overflow-x: clip;
    height: auto;
}

#content, .site-content {
    overflow: visible;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(245, 240, 232, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

/* WordPress admin bar compensation */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(14,18,13,0.08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.site-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--ink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-logo-mark svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--sage-light);
    stroke-width: 2;
    stroke-linecap: round;
}

.site-logo-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.03em;
}

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.header-nav a:hover { color: var(--ink); }

/* CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border-mid);
    border-radius: 7px;
    padding: 7px 9px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.icon-bar {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    background: var(--ink);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

/* Radial glow */
.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(78,122,71,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--pill-radius);
    padding: 5px 14px 5px 6px;
    margin-bottom: 1.6rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-kicker-badge {
    background: var(--sage-dark);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--pill-radius);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.4rem;
    font-weight: 600;
}

.hero h1 em {
    color: var(--sage-light);
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 2.4rem;
    max-width: 520px;
}

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

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.proof-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.5px solid rgba(110,168,100,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--sage-light);
    flex-shrink: 0;
}

/* Hero card */
.hero-card {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    z-index: 2;
}

.hero-card-tag {
    display: inline-block;
    background: var(--sage-dark);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--pill-radius);
    margin-bottom: 1.4rem;
}

.hero-card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.hero-card-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
}

.hero-card-price span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0;
}

.hero-card-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.8rem;
}

.hero-card-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 1.6rem;
}

.hero-card-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 2rem;
}

.hero-card-includes li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.hero-card-includes li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: rgba(78,122,71,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--sage-light);
    flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
    background: var(--charcoal);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 18px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 32px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    border-right: 1px solid rgba(255,255,255,0.07);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
    background: var(--sand);
    padding: 56px 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-block {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid var(--border-mid);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.section-pad { padding: var(--section-pad) 0; }

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

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    margin-bottom: 0;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.step {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.step:hover {
    border-color: var(--sage-pale);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sage);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.step-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   KIT CONTENTS
   ============================================================ */

.kit-section {
    background: var(--parchment);
}

.kit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.kit-visual-panel {
    background: var(--charcoal);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kit-visual-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(78,122,71,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.kit-big-icon {
    font-size: 5.5rem;
    display: block;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.kit-visual-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.kit-visual-sub {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.35);
    position: relative;
    z-index: 1;
    margin-top: 6px;
}

.kit-text { }

.kit-text h2 { margin-bottom: 0.6rem; }

.kit-text > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    margin-top: 0.8rem;
}

.kit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.kit-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: default;
}

.kit-list-item:hover {
    background: var(--off-white);
    border-color: var(--border-light);
}

.kit-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.kit-item-body h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 3px;
    font-family: var(--font-body);
}

.kit-item-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   SCIENCE SECTION
   ============================================================ */

.science-section {
    background: var(--bark);
    position: relative;
    overflow: hidden;
}

.science-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(78,122,71,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, rgba(160,82,45,0.08) 0%, transparent 45%);
    pointer-events: none;
}

.science-section .section-header { position: relative; z-index: 2; }
.science-section .section-header h2 { color: var(--white); }
.science-section .section-header p { color: rgba(255,255,255,0.5); }

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
    z-index: 2;
}

.science-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--card-radius);
    padding: 36px 28px;
    transition: background 0.25s, border-color 0.25s;
}

.science-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

.science-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    display: block;
}

.science-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.science-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   ANALYSIS / UPSELL
   ============================================================ */

.analysis-section {
    background: var(--off-white);
}

.analysis-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.analysis-content h2 { margin-bottom: 0.6rem; }

.analysis-content > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    margin-top: 0.8rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2.4rem;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage-pale);
    border: 1.5px solid var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--sage-dark);
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

.benefit-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.benefit-text span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.analysis-panel {
    background: var(--ink);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
}

.analysis-panel-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }

.analysis-panel h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.analysis-price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--sage-light);
    line-height: 1;
    margin: 1.2rem 0 0.4rem;
    letter-spacing: -0.03em;
}

.analysis-price small {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0;
}

.analysis-panel p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 1rem 0 2rem;
    line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */

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

.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.price-card {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.22s ease;
}

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

.price-card.featured {
    background: var(--ink);
    border-color: var(--ink);
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clay);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--pill-radius);
    white-space: nowrap;
}

.price-tier {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.price-card.featured .price-tier { color: rgba(255,255,255,0.4); }

.price-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.price-card.featured .price-name { color: var(--white); }

.price-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin: 1rem 0 0.3rem;
    letter-spacing: -0.03em;
}

.price-card.featured .price-amount { color: var(--sage-light); }

.price-cadence {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-card.featured .price-cadence { color: rgba(255,255,255,0.35); }

.price-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.65;
}

.price-card.featured .price-desc {
    color: rgba(255,255,255,0.45);
    border-color: rgba(255,255,255,0.08);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--text-secondary);
}

.price-card.featured .price-features li { color: rgba(255,255,255,0.7); }

.price-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--sage-pale);
    color: var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
    font-weight: 700;
}

.price-card.featured .price-check {
    background: rgba(110,168,100,0.2);
    color: var(--sage-light);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    padding: 30px 26px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testi-stars {
    color: #C8860A;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.testi-quote {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.4rem;
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
}

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

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.testi-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */

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

.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-xs); }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-q span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--parchment);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.25s;
    font-style: normal;
}

.faq-item.open .faq-toggle {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.faq-item.open .faq-a { max-height: 320px; }

.faq-a-inner {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================================
   CTA / PREORDER
   ============================================================ */

.cta-section {
    background: var(--ink);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(78,122,71,0.22) 0%, transparent 55%);
    pointer-events: none;
}

.cta-section .label { justify-content: center; }

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section h2 em { color: var(--sage-light); }

.cta-section > .container > p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 2.6rem;
    position: relative;
}

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

.cta-small {
    display: block;
    margin-top: 1.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    position: relative;
}

.email-capture {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    position: relative;
}

.email-capture p {
    color: rgba(255,255,255,0.35);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.email-form {
    display: flex;
    gap: 8px;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 13px 20px;
    border-radius: var(--pill-radius);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.email-input::placeholder { color: rgba(255,255,255,0.25); }
.email-input:focus { border-color: rgba(255,255,255,0.28); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--charcoal);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .site-logo { margin-bottom: 14px; }

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
    margin-bottom: 1.4rem;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: var(--sage-dark);
    color: var(--white);
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

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

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

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.55); }

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

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { max-width: 400px; }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .science-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat-block:nth-child(2) { border-right: none; }
    .stats-grid .stat-block:nth-child(3) { border-top: 1px solid var(--border-mid); }
    .stats-grid .stat-block:nth-child(4) { border-right: none; border-top: 1px solid var(--border-mid); }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }

    .header-nav { display: none; }
    .header-actions .btn-outline-dark { display: none; }
    .menu-toggle { display: flex; }

    .hero { padding: 72px 0 60px; }
    .hero-card { display: none; }
    .hero h1 { font-size: 2.6rem; }

    .kit-layout { grid-template-columns: 1fr; }
    .kit-visual-panel { display: none; }

    .analysis-layout { grid-template-columns: 1fr; }

    .pricing-row { grid-template-columns: 1fr; max-width: 380px; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }

    .testimonials-grid { grid-template-columns: 1fr; }
    .science-grid { grid-template-columns: 1fr; }

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

    .footer-bottom { flex-direction: column; text-align: center; }

    .trust-bar-inner { flex-direction: column; align-items: flex-start; padding: 0 16px; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
    .trust-item:last-child { border-bottom: none; }

    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-btns { flex-direction: column; align-items: center; }
    .email-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .steps-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

/* ============================================================
   WOOCOMMERCE — On-brand styles
   ============================================================

   NOTE: WooCommerce default styles are disabled in functions.php
   so we control everything here.
   ============================================================ */

/* --- Page wrapper --- */
.woocommerce-page .container,
.woocommerce .container {
    max-width: 1140px;
    margin: 0 auto;
}

/* --- Shop header row (title + sorting) --- */
.woocommerce-products-header {
    margin-bottom: 1.5rem;
}

.woocommerce-products-header__title,
.woocommerce-page h1.page-title {
    font-family: var(--font-display) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.3rem !important;
}

.woocommerce-result-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 1.6rem;
}

.woocommerce-ordering {
    float: right;
    margin-bottom: 1.6rem;
}

.woocommerce-ordering select {
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 9px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--pill-radius);
    background: var(--white);
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
}

/* --- Product grid --- */
.woocommerce-page ul.products,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    clear: both;
}

.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

/* --- Product card --- */
.woocommerce-page ul.products li.product,
.woocommerce ul.products li.product {
    background: var(--white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--card-radius) !important;
    padding: 0 !important;
    text-align: center !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
}

.woocommerce-page ul.products li.product:hover,
.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-4px) !important;
}

/* Product image area */
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
}

.woocommerce-page ul.products li.product img,
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Placeholder image when no product image set */
.woocommerce-page ul.products li.product .woocommerce-placeholder,
.woocommerce ul.products li.product .woocommerce-placeholder {
    width: 100% !important;
    height: 220px !important;
    object-fit: contain !important;
    padding: 40px !important;
    background: var(--parchment) !important;
}

/* Product info area */
.woocommerce-page ul.products li.product .product-info-wrap,
.woocommerce-page ul.products li.product h2,
.woocommerce-page ul.products li.product .price,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    padding-left: 24px;
    padding-right: 24px;
}

.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display) !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em !important;
    padding: 20px 24px 6px !important;
    margin: 0 !important;
    text-align: center;
}

.woocommerce-page ul.products li.product .price,
.woocommerce ul.products li.product .price {
    font-family: var(--font-display) !important;
    font-size: 1.7rem !important;
    font-weight: 600 !important;
    color: var(--sage-dark) !important;
    display: block !important;
    padding: 4px 24px 16px !important;
    margin: 0 !important;
    text-align: center;
}

.woocommerce-page ul.products li.product .price .amount,
.woocommerce ul.products li.product .price .amount {
    color: var(--sage-dark) !important;
}

/* Add to cart / Read more button on cards */
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product .button {
    display: block !important;
    width: calc(100% - 48px) !important;
    margin: 0 24px 24px !important;
    padding: 13px 20px !important;
    text-align: center !important;
    justify-content: center !important;
    background: var(--ink) !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    border-radius: var(--pill-radius) !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s !important;
    box-sizing: border-box !important;
}

/* Shop page grid */
.woocommerce-page .products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-page ul.products li.product {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.woocommerce-page ul.products li.product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.woocommerce-page ul.products li.product a img {
    border-radius: 10px;
    margin-bottom: 16px;
}

.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    padding: 0 !important;
    margin-bottom: 8px;
}

.woocommerce-page ul.products li.product .price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 16px;
    display: block;
}

/* Shop page title & result count */
.woocommerce-products-header__title,
.woocommerce-page h1.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.woocommerce-result-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.woocommerce-ordering select {
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 8px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--pill-radius);
    background: var(--white);
    color: var(--text-primary);
    outline: none;
}

/* Buttons — WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: var(--ink) !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    padding: 13px 28px !important;
    border-radius: var(--pill-radius) !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.2s !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button.alt:hover,
.woocommerce a.button.alt:hover {
    background: var(--sage-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
}

/* Add to cart button specifically */
.woocommerce ul.products li.product .button {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

/* Single product page */
.woocommerce div.product .product_title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.5rem !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: var(--font-display) !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    color: var(--sage-dark) !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.6rem;
}

/* Cart & Checkout tables */
.woocommerce table.shop_table {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--card-radius) !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden;
    font-size: 0.95rem;
}

.woocommerce table.shop_table th {
    background: var(--parchment) !important;
    color: var(--text-muted) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 14px 20px !important;
    border-bottom: 1px solid var(--border-light) !important;
}

.woocommerce table.shop_table td {
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--border-light) !important;
    color: var(--text-secondary) !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    background: var(--sage-pale) !important;
    border-top-color: var(--sage-dark) !important;
    color: var(--text-primary) !important;
    border-radius: var(--card-radius) !important;
    font-size: 0.95rem !important;
}

.woocommerce-error {
    background: #fef2f2 !important;
    border-top-color: #ef4444 !important;
    border-radius: var(--card-radius) !important;
    font-size: 0.95rem !important;
}

/* Checkout & account forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    padding: 12px 16px !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 9px !important;
    background: var(--parchment) !important;
    color: var(--text-primary) !important;
    outline: none !important;
    transition: border-color 0.2s !important;
    width: 100% !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--sage) !important;
}

.woocommerce form .form-row label {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--sage-dark);
}

/* Responsive shop grid */
@media (max-width: 768px) {
    .woocommerce-page .products {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .woocommerce-page .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================================
   WPFORMS — Match existing email capture styling
   ============================================================ */

.wpforms-cta-wrap {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.wpforms-cta-wrap .wpforms-container {
    width: 100% !important;
    max-width: 560px !important;
}

.wpforms-cta-wrap .wpforms-form {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.wpforms-cta-wrap .wpforms-field-container {
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wpforms-cta-wrap .wpforms-field {
    margin: 0 !important;
    padding: 0 !important;
}

.wpforms-cta-wrap .wpforms-field-label,
.wpforms-cta-wrap .wpforms-field-sublabel {
    display: none !important;
}

/* Input */
.wpforms-cta-wrap input[type="email"],
.wpforms-cta-wrap input[type="text"] {
    display: block !important;
    width: 100% !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    padding: 14px 24px !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    border-radius: var(--pill-radius) !important;
    background: rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
    outline: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.wpforms-cta-wrap input[type="email"]::placeholder,
.wpforms-cta-wrap input[type="text"]::placeholder {
    color: rgba(255,255,255,0.45) !important;
}

.wpforms-cta-wrap input[type="email"]:focus,
.wpforms-cta-wrap input[type="text"]:focus {
    border-color: var(--sage-light) !important;
    background: rgba(255,255,255,0.15) !important;
}

/* Submit button */
.wpforms-cta-wrap .wpforms-submit-container {
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wpforms-cta-wrap button[type="submit"],
.wpforms-cta-wrap input[type="submit"] {
    display: inline-block !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    padding: 14px 28px !important;
    border-radius: var(--pill-radius) !important;
    background: var(--sage-dark) !important;
    color: var(--white) !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.2s !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

.wpforms-cta-wrap button[type="submit"]:hover,
.wpforms-cta-wrap input[type="submit"]:hover {
    background: var(--sage) !important;
    transform: translateY(-2px) !important;
}

/* Hide the spinner that appears next to submit */
.wpforms-cta-wrap .wpforms-submit-spinner {
    display: none !important;
}

/* Success message */
.wpforms-cta-wrap .wpforms-confirmation-container-full,
.wpforms-cta-wrap .wpforms-confirmation-scroll {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    padding: 20px 28px !important;
    color: var(--white) !important;
    font-size: 1rem !important;
    text-align: center !important;
}

/* Error messages */
.wpforms-cta-wrap .wpforms-error-container,
.wpforms-cta-wrap label.wpforms-error {
    color: #fca5a5 !important;
    font-size: 0.82rem !important;
    margin-top: 6px !important;
    display: block !important;
}

@media (max-width: 600px) {
    .wpforms-cta-wrap .wpforms-form {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .wpforms-cta-wrap .wpforms-submit-container {
        width: 100% !important;
    }
    .wpforms-cta-wrap button[type="submit"],
    .wpforms-cta-wrap input[type="submit"] {
        width: 100% !important;
    }
}
