/* ============================================
   KARINA WIESZCZYK — Landing Page Styles
   Light premium theme, gold accents
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #FAF9F7;
    --bg-secondary: #F2F0ED;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-muted: #999999;
    --accent: #C9A96E;
    --accent-hover: #B8944D;
    --accent-light: rgba(201, 169, 110, 0.1);
    --accent-glow: rgba(201, 169, 110, 0.25);
    --warm-gradient: linear-gradient(135deg, #C9A96E 0%, #E8C87A 50%, #C9A96E 100%);
    --border: #E8E6E2;
    --border-light: #F0EEEA;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- Layout ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 768px) {
    .container { padding: 0 3rem; }
}
.section {
    padding: 5rem 0;
}
@media (min-width: 768px) {
    .section { padding: 8rem 0; }
}
.section-alt {
    background: var(--bg-secondary);
}
.center-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* ---------- Typography ---------- */
.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}
.section-title em {
    font-style: italic;
    color: var(--accent);
    display: block;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-pill);
    padding: 0.75rem 2rem;
    transition: all var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1.4;
}
.btn-sm { padding: 0.5rem 1.5rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-xl { padding: 1.125rem 3rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--warm-gradient);
    color: #FFFFFF;
    border-color: transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: #FFFFFF;
}

.btn-warm {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    color: var(--accent);
    border-color: var(--accent);
}
.btn-warm:hover {
    background: var(--warm-gradient);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition);
}
.nav.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .nav-inner { padding: 0 3rem; }
}
.nav-logo {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}
.nav-logo:hover { color: var(--accent-hover); }

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links.active { right: 0; }

.nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--text-primary); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        gap: 2.5rem;
    }
    .nav-link { font-size: 0.9375rem; }
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 0 3rem;
    position: relative;
}
/* Hero decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: var(--accent);
    top: -100px; right: -100px;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: #E8C87A;
    bottom: -50px; left: -150px;
}
/* Hero wind flow lines */
.hero-wind {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.wind-line {
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 300 900;
    opacity: 0;
    animation: windFlow 4s ease-in-out infinite;
}
.wind-line--1 {
    stroke-dasharray: 250 950;
    animation-duration: 3.5s;
    animation-delay: 0s;
}
.wind-line--2 {
    stroke-dasharray: 350 850;
    animation-duration: 4.5s;
    animation-delay: 0.8s;
    stroke-width: 1;
}
.wind-line--3 {
    stroke-dasharray: 200 1000;
    animation-duration: 3.8s;
    animation-delay: 1.5s;
}
.wind-line--4 {
    stroke-dasharray: 280 920;
    animation-duration: 5s;
    animation-delay: 2.2s;
    stroke-width: 1;
}
.wind-line--5 {
    stroke-dasharray: 320 880;
    animation-duration: 4.2s;
    animation-delay: 0.4s;
    stroke-width: 1.2;
}

@keyframes windFlow {
    0% {
        stroke-dashoffset: 1200;
        opacity: 0;
    }
    15% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.25;
    }
    85% {
        opacity: 0.3;
    }
    100% {
        stroke-dashoffset: -200;
        opacity: 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
.hero-text { max-width: 560px; }
.hero-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
    display: block;
}
.hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0;
}
.hero-cta { opacity: 0; }

.hero-image {
    display: flex;
    justify-content: center;
}
.hero-image-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
}
.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center top;
    width: 100%;
    aspect-ratio: 3/4;
    margin-top: -5px;
}
.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}
.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Quote Divider ---------- */
.divider-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}
.big-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.big-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    font-style: italic;
    color: #F5F5F5;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.big-quote cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- About ---------- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .about-intro {
        grid-template-columns: 0.45fr 0.55fr;
        gap: 4rem;
    }
}
.about-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}
.about-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.about-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}
.about-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Achievement cards */
.about-achievements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}
@media (min-width: 600px) {
    .about-achievements { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .about-achievements { grid-template-columns: repeat(5, 1fr); }
}
.achievement-card {
    padding: 1.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.achievement-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--warm-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.achievement-card:hover::after { transform: scaleX(1); }
.achievement-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}
.achievement-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.achievement-icon {
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.achievement-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.achievement-card h4 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}
.achievement-card h4 a:hover {
    color: var(--accent);
}
.achievement-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mission row */
.about-mission-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .about-mission-row { grid-template-columns: 1fr 1fr; }
}
.about-mission-item {
    padding: 2rem;
    background: var(--accent-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}
.about-mission-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
}
.about-mission-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Image wrap ---------- */
.img-wrap {
    overflow: hidden;
}

/* ---------- Pain Points ---------- */
.pain-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .pain-intro {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 4rem;
    }
}
.pain-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pain-intro-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    max-height: 500px;
}
.pain-intro-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
}
.pain-intro-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .pain-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
.pain-card {
    padding: 1.75rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}
.pain-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FEE2E2;
    color: #DC2626;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.pain-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.pain-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pain-conclusion {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 0;
}
.pain-truth {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.pain-conclusion h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
.pain-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.pain-solution {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ---------- Offers ---------- */
.offers-section {
    background: var(--bg-primary);
}
.offer-block {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .offer-block { padding: 4rem 3rem; }
}
.offer-block:last-child { margin-bottom: 0; }

.offer-highlight {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(201,169,110,0.03) 0%, var(--bg-card) 100%);
}
.offer-premium {
    background: var(--bg-dark);
    color: #F5F5F5;
    border-color: rgba(201,169,110,0.3);
}
.offer-premium .label { color: var(--accent); }
.offer-premium h3, .offer-premium h4, .offer-premium strong { color: #F5F5F5; }
.offer-premium p, .offer-premium li { color: #BBBBBB; }
.offer-premium .offer-for-list li::before { background: var(--accent); }

.offer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
}
.offer-badge-inline {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .offer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .offer-grid-reverse { direction: rtl; }
    .offer-grid-reverse > * { direction: ltr; }
    .offer-grid-centered { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
}

.offer-image {
    border-radius: var(--radius);
    overflow: hidden;
}
.offer-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    max-height: 500px;
}
.offer-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.offer-tagline {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 1rem;
}
.offer-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.offer-premium .offer-lead { color: #BBBBBB; }

.offer-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}
.offer-content-centered { text-align: center; }
.offer-content-centered .offer-for-list { text-align: left; max-width: 500px; margin: 0 auto 2rem; }
.offer-content-centered .offer-price-block { justify-content: center; }
.offer-content-centered .btn { margin: 0 auto; }
.offer-content-centered .offer-small { text-align: center; }

/* Offer benefits */
.offer-benefits {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1rem;
}
.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 10px;
    color: var(--accent);
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}
.benefit p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.offer-benefits-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .offer-benefits-compact { grid-template-columns: 1fr 1fr; }
}
.benefit-compact {
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}
.benefit-compact strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    color: var(--accent);
}
.benefit-compact p {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Offer points (numbered) */
.offer-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.offer-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.offer-point-num {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 2rem;
}
.offer-point p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Offer for list */
.offer-for-list {
    margin-bottom: 2rem;
}
.offer-for-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.offer-for-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.offer-location {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.offer-premium .offer-location { color: #888888; }

.offer-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.offer-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}
.offer-price-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.offer-premium .offer-price-note { color: #888888; }

.offer-small {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}
.offer-premium .offer-small { color: #888888; }
.offer-closing {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-style: italic;
    margin: 1.5rem 0;
    line-height: 1.7;
}
.offer-cta-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Consult benefits */
.consult-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
@media (min-width: 600px) {
    .consult-benefits { grid-template-columns: 1fr 1fr; }
}
.consult-benefit {
    padding: 1rem 1.25rem;
    background: var(--accent-light);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--bg-secondary);
}
.cta-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
@media (min-width: 768px) {
    .cta-block {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        padding: 4rem 3rem;
    }
}
.cta-content { text-align: center; }
@media (min-width: 768px) {
    .cta-content { text-align: left; }
}
.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.cta-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    max-height: 450px;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 5rem;
    }
}
.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.contact-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.contact-note {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.contact-item svg {
    flex-shrink: 0;
    color: var(--accent);
}
.contact-item a,
.contact-item span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}
.contact-item a:hover { color: var(--accent); }
.contact-social {
    display: flex;
    gap: 1rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}
.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}
.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ---------- Modals ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}
.modal-wide { max-width: 640px; }
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    border-radius: 50%;
    transition: all var(--transition);
}
.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}
.modal-header {
    margin-bottom: 2rem;
}
.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.modal-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Form */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: border-color var(--transition);
}
.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group input.error {
    border-color: #DC2626;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}
.form-checkbox label a {
    color: var(--accent);
    text-decoration: underline;
}
.form-recaptcha {
    margin-bottom: 0.25rem;
}
.form-recaptcha.error {
    border: 2px solid #e74c3c;
    border-radius: 4px;
    padding: 2px;
    width: fit-content;
}
@media (max-width: 480px) {
    .form-recaptcha { transform: scale(0.82); transform-origin: 0 0; }
}

/* Success state */
.modal-success-state {
    text-align: center;
    padding: 2rem 0;
}
.success-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.modal-success-state h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.modal-success-state p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Privacy modal body */
.privacy-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}
.privacy-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}
.privacy-body h4:first-child { margin-top: 0; }
.privacy-body p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.privacy-body ul {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
}
.privacy-body li {
    list-style: disc;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

/* ---------- Utility ---------- */
@media (max-width: 767px) {
    .hero-image { order: -1; }
    .hero-text { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta { width: 100%; }
    .hero-scroll { display: none; }

    /* Hide geo rings that collide with text on mobile */
    .geo-ring--hero-1,
    .geo-ring--hero-2,
    .geo-ring--offers,
    .geo-ring--contact { display: none; }

    /* Offer badge — move higher so it doesn't overlap content */
    .offer-badge { top: 0.75rem; right: 0.75rem; }
}

/* Smooth scroll body lock */
body.modal-open {
    overflow: hidden;
}

/* ---------- Animations ---------- */
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.03); }
    66% { transform: translate(-15px, 8px) scale(0.97); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-blob-1 { animation: blobFloat 12s ease-in-out infinite; }
.hero-blob-2 { animation: blobFloat 15s ease-in-out infinite 3s; }

.magnetic-wrap { will-change: transform; }

/* ---------- Section divider ---------- */
.divider-section { position: relative; }
.divider-section::before,
.divider-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--accent));
}
.divider-section::before { top: -50px; }
.divider-section::after {
    bottom: -50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ---------- Background grid ---------- */
.bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(180,150,100,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,150,100,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 30%, transparent 80%);
}
.bg-grid--dense {
    background-size: 40px 40px;
    background-image:
        linear-gradient(rgba(180,150,100,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,150,100,0.06) 1px, transparent 1px);
}
.bg-grid--wide {
    background-size: 80px 80px;
    background-image:
        linear-gradient(rgba(180,150,100,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,150,100,0.08) 1px, transparent 1px);
}
.bg-grid--sub {
    background-image:
        linear-gradient(rgba(180,150,100,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,150,100,0.08) 1px, transparent 1px),
        linear-gradient(rgba(180,150,100,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,150,100,0.03) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
}

/* ---------- Geometric decorations ---------- */
/* Base: all geo elements are absolute, non-interactive */
.geo-ring, .geo-corner, .geo-dots, .geo-line,
.geo-cross, .geo-diamond, .geo-plus, .geo-triangle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

/* Rings — thin circles */
.geo-ring {
    border-radius: 50%;
    border: 1px solid var(--accent);
}
.geo-ring--hero-1 {
    width: 220px; height: 220px;
    top: 12%; right: 6%;
    opacity: 0.25;
}
.geo-ring--hero-2 {
    width: 70px; height: 70px;
    bottom: 28%; left: 4%;
    opacity: 0.3;
    border-width: 2px;
}
.geo-ring--hero-3 {
    width: 120px; height: 120px;
    top: 55%; right: 28%;
    opacity: 0.2;
    border-style: dashed;
}
.geo-ring--about {
    width: 180px; height: 180px;
    top: 8%; right: 2%;
    opacity: 0.15;
}
.geo-ring--about-2 {
    width: 50px; height: 50px;
    bottom: 20%; left: 5%;
    opacity: 0.25;
    border-width: 2px;
}
.geo-ring--offers {
    width: 280px; height: 280px;
    top: 15%; left: -100px;
    opacity: 0.2;
    border-width: 2px;
}
.geo-ring--offers-2 {
    width: 90px; height: 90px;
    bottom: 10%; right: 8%;
    opacity: 0.18;
}
.geo-ring--contact {
    width: 140px; height: 140px;
    bottom: 12%; right: 4%;
    opacity: 0.18;
}

/* Corners — L-shaped bracket accents */
.geo-corner {
    width: 60px; height: 60px;
}
.geo-corner::before,
.geo-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
}
.geo-corner::before {
    width: 1px; height: 100%;
    left: 0; top: 0;
}
.geo-corner::after {
    width: 100%; height: 1px;
    left: 0; top: 0;
}
.geo-corner--hero {
    top: 10%; left: 8%;
    opacity: 0.3;
    width: 50px; height: 50px;
}
.geo-corner--hero-br {
    bottom: 18%; right: 10%;
    opacity: 0.2;
    width: 40px; height: 40px;
    transform: rotate(180deg);
}
.geo-corner--pain-tl {
    top: 2.5rem; left: 1.5rem;
    opacity: 0.2;
}
.geo-corner--pain-br {
    bottom: 2.5rem; right: 1.5rem;
    opacity: 0.2;
    transform: rotate(180deg);
}
.geo-corner--contact {
    top: 3rem; left: 2rem;
    opacity: 0.2;
    width: 45px; height: 45px;
}
.geo-corner--offers {
    bottom: 5rem; right: 3rem;
    opacity: 0.15;
    width: 70px; height: 70px;
    transform: rotate(180deg);
}

/* Crosses — + or x marks */
.geo-cross {
    width: 20px; height: 20px;
}
.geo-cross::before,
.geo-cross::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 1px;
}
.geo-cross::before {
    width: 100%; height: 1px;
    top: 50%; left: 0;
}
.geo-cross::after {
    width: 1px; height: 100%;
    left: 50%; top: 0;
}
.geo-cross--hero {
    top: 30%; left: 20%;
    opacity: 0.3;
    width: 24px; height: 24px;
}
.geo-cross--about {
    top: 40%; right: 10%;
    opacity: 0.2;
    width: 18px; height: 18px;
}
.geo-cross--about-2 {
    bottom: 15%; left: 12%;
    opacity: 0.18;
    width: 16px; height: 16px;
    transform: rotate(45deg);
}
.geo-cross--pain {
    top: 50%; left: 4%;
    opacity: 0.18;
    width: 20px; height: 20px;
}
.geo-cross--offers {
    top: 35%; right: 12%;
    opacity: 0.18;
    width: 22px; height: 22px;
    transform: rotate(45deg);
}
.geo-cross--contact {
    bottom: 30%; left: 8%;
    opacity: 0.2;
    width: 20px; height: 20px;
}

/* Diamonds — rotated squares */
.geo-diamond {
    border: 1px solid var(--accent);
    transform: rotate(45deg);
}
.geo-diamond--hero {
    width: 30px; height: 30px;
    top: 22%; right: 22%;
    opacity: 0.25;
}
.geo-diamond--about {
    width: 22px; height: 22px;
    bottom: 30%; right: 8%;
    opacity: 0.2;
}
.geo-diamond--pain {
    width: 25px; height: 25px;
    bottom: 15%; left: 8%;
    opacity: 0.18;
}
.geo-diamond--offers {
    width: 18px; height: 18px;
    top: 45%; left: 6%;
    opacity: 0.2;
    border-width: 2px;
}

/* Dots — dot grid patches */
.geo-dots {
    background-image: radial-gradient(var(--accent) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
}
.geo-dots--hero {
    width: 140px; height: 120px;
    bottom: 18%; right: 12%;
    opacity: 0.18;
}
.geo-dots--hero-2 {
    width: 100px; height: 80px;
    top: 35%; left: 3%;
    opacity: 0.2;
    background-size: 18px 18px;
}
.geo-dots--pain {
    width: 160px; height: 100px;
    top: 6rem; right: 2rem;
    opacity: 0.2;
    background-size: 18px 18px;
}
.geo-dots--about {
    width: 120px; height: 90px;
    bottom: 8%; right: 15%;
    opacity: 0.2;
}
.geo-dots--offers {
    width: 100px; height: 100px;
    top: 60%; right: 3%;
    opacity: 0.2;
}

/* Lines — gradient vertical accents */
.geo-line {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}
.geo-line--about {
    height: 250px;
    top: 5%; left: 6%;
    opacity: 0.22;
}
.geo-line--offers {
    height: 400px;
    top: 8%; right: 5%;
    opacity: 0.2;
}
.geo-line--hero {
    height: 200px;
    top: 8%; left: 22%;
    opacity: 0.2;
}
.geo-line--pain-h {
    width: auto; height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    left: 5%; right: 5%;
    bottom: 25%;
    opacity: 0.2;
}

/* Triangles */
.geo-triangle {
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid var(--accent);
}
.geo-triangle--hero {
    top: 40%; right: 5%;
    opacity: 0.2;
}
.geo-triangle--about {
    top: 15%; left: 3%;
    opacity: 0.15;
    transform: rotate(30deg);
}
.geo-triangle--offers {
    bottom: 25%; left: 4%;
    opacity: 0.15;
    transform: rotate(-15deg);
}

/* Ensure sections are positioned for absolute children */
.hero, .about, .pain-section, .offers-section, .contact-section, .cta-section {
    position: relative;
    overflow: clip;
}
