/* ============================================
   KATARZYNA KUJAWA — PRZESTRZEŃ DOBROSTANU
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --beige: #f5f1ed;
    --light-beige: #faf8f5;
    --cream: #fefcfa;
    --warm-brown: #8b7355;
    --dark-brown: #5d4e42;
    --sage-green: #6b8e71;
    --light-green: #8fa989;
    --muted-green: #c5d4c7;
    --accent-gold: #d4af8f;
    --accent-rose: #c9a99a;
    --text-dark: #3e3b38;
    --text-medium: #6b6460;
    --text-light: #9a9590;
    --white: #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', sans-serif;

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    --shadow-soft: 0 4px 24px rgba(93, 78, 66, 0.08);
    --shadow-medium: 0 8px 40px rgba(93, 78, 66, 0.12);
    --shadow-strong: 0 16px 60px rgba(93, 78, 66, 0.18);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-beige);
    color: var(--text-dark);
    line-height: 1.85;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAFIA
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--dark-brown);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    margin-top: 0.8rem;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--warm-brown);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    color: var(--warm-brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    line-height: 1.9;
}

strong {
    color: var(--dark-brown);
    font-weight: 700;
}

a {
    color: inherit;
    transition: color var(--transition);
}

/* ============================================
   HEADER & NAV
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 143, 0.2);
    transition: box-shadow var(--transition);
}

.logo img {
    height: 80px;
    width: auto;
}

header.scrolled {
    box-shadow: var(--shadow-soft);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--dark-brown);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    padding-top: 2rem;
}

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-medium);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage-green);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--dark-brown);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--dark-brown);
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    z-index: 199;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-nav-overlay.open {
    opacity: 1;
}

.mobile-nav-overlay a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--dark-brown);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-nav-overlay a:hover {
    color: var(--sage-green);
}

/* ============================================
   BOTANICAL DIVIDER
   ============================================ */
.botanical-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    text-align: center;
    padding: 1.5rem 0;
    opacity: 0.35;
}

.botanical-divider svg {
    width: 200px;
    height: 30px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(250, 248, 245, 0.94) 0%, rgba(245, 241, 237, 0.92) 55%, rgba(250, 248, 245, 0.94) 100%),
        url('./zdjecia/tlo-jezioro.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.96;
    z-index: 0;
}

.hero-section .hero {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem 5rem;
}

#KasiaHero {
    width: 100%;
    height: 100%; 
    border-radius: var(--radius-lg);
    object-fit: cover; 
    object-position: center; 
    box-shadow: var(--shadow-strong);
}

#Kasia2 {
    width: 100%;
    height: 100%; 
    border-radius: var(--radius-lg);
    object-fit: cover; 
    object-position: center; 
    box-shadow: var(--shadow-strong);
}

.hero-content {
    animation: fadeSlideUp 1s ease-out both;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.hero h1 {
    color: var(--dark-brown);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--warm-brown);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.hero-image-side {
    animation: fadeSlideUp 1s 0.2s ease-out both;
    position: relative;
}

.image-placeholder {
    background: linear-gradient(145deg, var(--accent-gold) 0%, var(--warm-brown) 60%, var(--dark-brown) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1rem;
    width: 100%;         /* Wymusza pełną szerokość kolumny */
    aspect-ratio: 1 / 1; /* Wymusza idealne proporcje kwadratu */
    position: relative;
    overflow: hidden;    /* Schowa nadmiar zdjęcia wystający poza zaokrąglone rogi */
    box-shadow: var(--shadow-strong);
}

.image-placeholder::before {
    content: '';
    width: 100%;
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.image-placeholder span {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Floating accent shape */
.hero-image-side::before {
    max-width: 100%;
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 143, 0.3) 0%, transparent 70%);
    top: -60px;
    right: -60px;
    border-radius: 50%;
    z-index: -1;
}

.hero-image-side::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(107, 142, 113, 0.2) 0%, transparent 70%);
    bottom: -40px;
    left: -40px;
    border-radius: 50%;
    z-index: -1;
}
/* ============================================
   SECTION WRAPPER
   ============================================ */
.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
}

.section-wrapper + .section-wrapper {
    padding-top: 0;
}

section {
    position: relative;
}

section:not(.hero-section) {
    border-top: 1px solid rgba(212, 175, 143, 0.15);
}

.section-intro {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ============================================
   TWO COLUMN
   ============================================ */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.two-column .image-placeholder {
    min-height: 400px;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   LISTY
   ============================================ */
ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-green);
    flex-shrink: 0;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    background: linear-gradient(135deg, rgba(107, 142, 113, 0.07) 0%, rgba(212, 175, 143, 0.1) 100%);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 3px solid var(--sage-green);
    position: relative;
}

.highlight-box h3 {
    margin-top: 0;
}

.highlight-label {
    font-weight: 700;
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.highlight-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-brown);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   PACKAGE BOX
   ============================================ */
.package-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.package-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green), var(--accent-gold), var(--accent-rose));
}

.package-box p {
    font-size: 1.05rem;
}

.price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--warm-brown);
    font-weight: 300;
    margin: 1.5rem 0;
    letter-spacing: 0.03em;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.badge-popular {
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    color: white;
}

/* ============================================
   PRZYCISKI
   ============================================ */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 6px 24px rgba(107, 142, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(107, 142, 113, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============================================
   TRUST BOX
   ============================================ */
.trust-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(107, 142, 113, 0.08), rgba(212, 175, 143, 0.08));
    padding: 1.8rem 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.trust-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: normal;
}

.trust-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.trust-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   TESTIMONIALE
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
    font-style: normal;
    opacity: 0.6;
}

.testimonial-note {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

.rating {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-info {
    background: linear-gradient(145deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
    color: white;
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,143,0.15) 0%, transparent 70%);
    top: -80px;
    right: -80px;
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--accent-gold);
    margin-top: 0;
    font-size: 1.6rem;
    position: relative;
}

.contact-info p {
    color: rgba(255,255,255,0.85);
    position: relative;
}

.contact-item {
    margin: 1.5rem 0;
    position: relative;
}

.contact-item strong {
    display: block;
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
}

.contact-item span {
    font-size: 1.1rem;
    color: white;
}

.contact-item a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--sage-green) 0%, #87cd94 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    border-radius: 50%;
    z-index: -1;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.94;
    z-index: -2;
}

.cta-section h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.cta-section h2::after {
    background: rgba(255,255,255,0.4);
    margin: 0.8rem auto;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.cta-section .cta-button {
    background: white;
    color: var(--sage-green);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.cta-section .cta-button:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    padding: 0.75rem 1rem;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 143, 0.2);
}

.sticky-cta button {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(107, 142, 113, 0.35);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #9fd6a9e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: all var(--transition);
    z-index: 145;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark-brown);
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 3.5rem 2rem;
    margin-top: 5rem;
}

footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

footer strong {
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(212,175,143,0.3);
    margin: 1.5rem auto;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    margin-bottom: 0;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid .testimonial:last-child {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {

    /* Nav */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: flex;
    }

    nav {
        padding: 0 1.25rem;
        height: 60px;
    }

    .logo {
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 7rem 1.5rem 3rem;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-image-side {
        order: -1;
    }

    .image-placeholder {
        min-height: 280px;
        border-radius: var(--radius-md);
    }

    .hero-image-side::before,
    .hero-image-side::after {
        display: none;
    }

    /* Sections */
    .section-wrapper {
        padding: 3.5rem 1.5rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-column .image-placeholder {
        min-height: 260px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial:last-child {
        grid-column: auto;
    }

    .package-box {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 2.5rem 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
        border-radius: var(--radius-md);
        margin: 2rem 1.5rem;
    }

    /* Sticky CTA */
    .sticky-cta {
        display: block;
    }

    /* WhatsApp higher to avoid sticky bar */
    .whatsapp-button {
        bottom: 80px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    footer {
        margin-top: 6rem;
        padding-bottom: 5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h2::after {
        width: 40px;
    }

    .highlight-box {
        padding: 1.8rem;
    }

    .trust-box {
        flex-direction: column;
        text-align: center;
    }

    .price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .section-wrapper {
        padding: 3rem 1.25rem;
    }

    .contact-info {
        padding: 2rem 1.25rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}