/* Workplace Sound Sessions - Bothy Sound */

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

:root {
    --cream: #f7f3ee;
    --cream-dark: #ede8e1;
    --charcoal: #2b2724;
    --charcoal-mid: #3d3835;
    --charcoal-light: #6b6560;
    --sage: #5a6b4e;
    --sage-light: #8ba07a;
    --sage-pale: #edf2ea;
    --warm-white: #fdfaf7;
    --border: #ddd8d1;
    --shadow: 0 4px 24px rgba(43,39,36,0.08);
    --shadow-lg: 0 12px 48px rgba(43,39,36,0.14);
    --radius: 10px;
    --radius-lg: 18px;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Playfair Display', serif;
    --max-width: 1160px;
    --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ─── NAV ─── */
.wp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(253,250,247,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    justify-content: space-between;
}

.wp-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--charcoal);
}

.wp-nav-brand img {
    height: 32px;
    width: auto;
}

.wp-nav-brand span {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
}

.wp-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.wp-nav-links a {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    text-decoration: none;
    transition: color 0.2s;
}

.wp-nav-links a:hover { color: var(--charcoal); }

.wp-nav-cta {
    background: var(--charcoal) !important;
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem !important;
}

.wp-nav-cta:hover { background: var(--charcoal-mid) !important; }

/* ─── STICKY CTA ─── */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    background: var(--sage);
    color: #fff;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(90,107,78,0.4);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(90,107,78,0.45);
}

/* ─── UTIL ─── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

/* ─── 1. HERO ─── */
.wp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-h);
    background-color: var(--charcoal);
    overflow: hidden;
}

.wp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/quiet-session-setup.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.32;
}

.wp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 6rem 2rem 6rem;
    margin: 0 auto;
    text-align: center;
}

.wp-hero-inner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.wp-hero-inner h1 em {
    font-style: italic;
    color: #c5cfbb;
}

.wp-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.wp-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.btn-primary-wp {
    background: var(--sage);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary-wp:hover {
    background: var(--sage-light);
    transform: translateY(-1px);
}

.btn-outline-wp {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 0.85rem 2rem;
    border-radius: 7px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-wp:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

.wp-hero-micro {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ─── 2. CREDIBILITY STRIP ─── */
.wp-strip {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.35rem 2rem;
}

.wp-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.wp-strip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal-light);
}

.wp-strip-item i {
    color: var(--sage);
    font-size: 0.9rem;
}

.wp-strip-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border);
}

/* ─── 3. THE PROBLEM ─── */
.wp-problem {
    padding: 7rem 2rem;
    background: var(--warm-white);
}

.wp-problem-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wp-problem-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.wp-problem-text h2 span {
    display: block;
    color: var(--charcoal-light);
    font-size: 0.7em;
    margin-top: 0.2rem;
}

.wp-problem-text p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.wp-problem-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wp-problem-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.wp-problem-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

.wp-problem-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.wp-problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── 4. THE SHIFT ─── */
.wp-shift {
    padding: 7rem 2rem;
    background: var(--charcoal);
    text-align: center;
}

.wp-shift-inner {
    max-width: 760px;
    margin: 0 auto;
}

.wp-shift-inner .section-label {
    color: #8ba07a;
}

.wp-shift-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.75rem;
}

.wp-shift-inner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 1rem;
}

.wp-shift-accent {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
}

/* ─── 5. THE SOLUTION ─── */
.wp-solution {
    padding: 7rem 2rem;
    background: var(--cream);
}

.wp-solution-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wp-solution-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    order: -1;
}

.wp-solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wp-solution-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.wp-solution-text p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.wp-solution-list {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.wp-solution-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

.wp-solution-list li i {
    color: var(--sage);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.wp-solution-note {
    font-style: italic;
    color: var(--charcoal-light);
    font-size: 0.95rem !important;
    border-left: 3px solid var(--sage-pale);
    padding-left: 1rem;
    margin-top: 1.5rem !important;
}

/* ─── 6. THE OFFER ─── */
.wp-offer {
    padding: 7rem 2rem;
    background: var(--warm-white);
}

.wp-offer-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.wp-offer-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.wp-offer-header p {
    color: var(--charcoal-light);
    font-size: 1.05rem;
}

.wp-offer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.wp-offer-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.wp-offer-card.featured {
    background: var(--charcoal);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.wp-offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.wp-offer-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.wp-offer-card-icon i {
    color: var(--sage);
    font-size: 1rem;
}

.wp-offer-card.featured .wp-offer-card-icon {
    background: rgba(138,160,122,0.15);
}

.wp-offer-card.featured .wp-offer-card-icon i {
    color: #8ba07a;
}

.wp-offer-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.wp-offer-card.featured h3 {
    color: #fff;
}

.wp-offer-card-sub {
    font-size: 0.85rem;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 1rem;
}

.wp-offer-card.featured .wp-offer-card-sub {
    color: #8ba07a;
}

.wp-offer-card p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.wp-offer-card.featured p {
    color: rgba(255,255,255,0.58);
}

.wp-offer-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.wp-offer-card-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.wp-offer-card-list li i {
    color: var(--sage);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.wp-offer-card.featured .wp-offer-card-list li {
    color: rgba(255,255,255,0.78);
}

.wp-offer-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal-light);
    margin: 1.25rem 0 0.5rem;
}

.wp-offer-card.featured .wp-offer-card-label {
    color: rgba(255,255,255,0.35);
}

.btn-offer {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 7px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    background: var(--sage-pale);
    color: var(--sage);
    border: 1px solid transparent;
}

.btn-offer:hover {
    background: var(--sage);
    color: #fff;
}

.wp-offer-card.featured .btn-offer {
    background: var(--sage);
    color: #fff;
    border-color: transparent;
}

.wp-offer-card.featured .btn-offer:hover {
    background: var(--sage-light);
}

/* ─── 7. BENEFITS ─── */
.wp-benefits {
    padding: 7rem 2rem;
    background: var(--cream);
}

.wp-benefits-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.wp-benefits-header {
    margin-bottom: 3.5rem;
}

.wp-benefits-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--charcoal);
}

.wp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wp-benefit-item {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
}

.wp-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.wp-benefit-icon i {
    color: var(--sage);
    font-size: 0.95rem;
}

.wp-benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.wp-benefit-item p {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    line-height: 1.6;
    margin: 0;
}

/* ─── 8. HOW IT WORKS ─── */
.wp-how {
    padding: 7rem 2rem;
    background: var(--warm-white);
}

.wp-how-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.wp-how-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}

.wp-how-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.wp-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.wp-how-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 1px;
    background: var(--border);
}

.wp-step {
    text-align: center;
    padding: 0 1rem;
}

.wp-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.wp-step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.wp-step p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.65;
}

/* ─── 9. DIFFERENTIATION ─── */
.wp-diff {
    padding: 7rem 2rem;
    background: var(--sage-pale);
}

.wp-diff-inner {
    max-width: 800px;
    margin: 0 auto;
}

.wp-diff-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.wp-diff-inner > p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.wp-diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wp-diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--charcoal);
}

.wp-diff-list li i {
    color: var(--sage);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ─── 10. ABOUT ─── */
.wp-about {
    padding: 7rem 2rem;
    background: var(--warm-white);
}

.wp-about-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: center;
}

.wp-about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.wp-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wp-about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.wp-about-text p {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ─── 11. TESTIMONIAL ─── */
.wp-testimonial {
    padding: 6rem 2rem;
    background: var(--cream-dark);
    text-align: center;
}

.wp-testimonial-inner {
    max-width: 640px;
    margin: 0 auto;
}

.wp-testimonial-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--charcoal);
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.wp-testimonial-attr {
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

/* ─── 12. FINAL CTA ─── */
.wp-final-cta {
    padding: 7rem 2rem;
    background: var(--charcoal);
    text-align: center;
}

.wp-final-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.wp-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.wp-final-cta p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.wp-final-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.btn-cta-primary {
    background: var(--sage);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-primary:hover {
    background: var(--sage-light);
    transform: translateY(-1px);
}

.btn-cta-outline {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.25);
    padding: 0.9rem 2.2rem;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-outline:hover {
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}

.wp-final-small {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.32) !important;
    margin: 0 !important;
}

/* ─── 13. CONTACT FORM ─── */
.wp-contact {
    padding: 7rem 2rem;
    background: var(--cream);
}

.wp-contact-inner {
    max-width: 720px;
    margin: 0 auto;
}

.wp-contact-header {
    margin-bottom: 3rem;
}

.wp-contact-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.wp-contact-header p {
    color: var(--charcoal-light);
    font-size: 1rem;
}

.wp-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.wp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.wp-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.wp-form-group input,
.wp-form-group select,
.wp-form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    background: var(--warm-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.2s;
    outline: none;
}

.wp-form-group input:focus,
.wp-form-group select:focus,
.wp-form-group textarea:focus {
    border-color: var(--sage-light);
}

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

.wp-form-submit {
    background: var(--charcoal);
    color: #fff;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
    font-family: var(--font-body);
}

.wp-form-submit:hover {
    background: var(--charcoal-mid);
    transform: translateY(-1px);
}

.wp-form-success {
    display: none;
    background: var(--sage-pale);
    border: 1px solid #b5cfa8;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--sage);
    font-weight: 500;
}

/* ─── GHL FORM WRAPPER ─── */
.wp-ghl-form-wrapper {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.wp-ghl-form-wrapper iframe {
    min-height: 680px;
    display: block;
    width: 100%;
}

/* ─── FOOTER ─── */
.wp-footer {
    background: #1e1c1a;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.wp-footer p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

.wp-footer a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
}

.wp-footer a:hover { color: rgba(255,255,255,0.7); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
    .wp-problem-inner,
    .wp-solution-inner,
    .wp-about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wp-solution-image { order: 0; }

    .wp-about-inner {
        grid-template-columns: 1fr;
    }

    .wp-about-image {
        max-width: 340px;
        margin: 0 auto;
    }

    .wp-offer-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .wp-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wp-how-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wp-how-steps::before { display: none; }
}

@media (max-width: 600px) {
    .wp-nav-links { display: none; }
    .wp-problem { padding: 4.5rem 1.5rem; }
    .wp-shift  { padding: 4.5rem 1.5rem; }
    .wp-solution { padding: 4.5rem 1.5rem; }
    .wp-offer  { padding: 4.5rem 1.5rem; }
    .wp-benefits { padding: 4.5rem 1.5rem; }
    .wp-how    { padding: 4.5rem 1.5rem; }
    .wp-diff   { padding: 4.5rem 1.5rem; }
    .wp-about  { padding: 4.5rem 1.5rem; }
    .wp-testimonial { padding: 4rem 1.5rem; }
    .wp-final-cta { padding: 4.5rem 1.5rem; }
    .wp-contact { padding: 4.5rem 1.5rem; }

    .wp-benefits-grid { grid-template-columns: 1fr; }
    .wp-form-row { grid-template-columns: 1fr; }
    .wp-strip-inner { gap: 1.25rem; }
    .wp-strip-dot { display: none; }

    .wp-hero-inner { padding: 5rem 1.5rem; }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}
