/* ============================================
   OSPA - Premium Spa Website Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #2b2b3b;
    --color-primary-light: #3d3d55;
    --color-accent: #c9a96e;
    --color-accent-light: #d9bc8a;
    --color-accent-dark: #b8944f;
    --color-bg: #fefefe;
    --color-bg-cream: #faf7f3;
    --color-bg-soft: #f7f3ee;
    --color-bg-dark: #2b2b3b;
    --color-text: #2b2b3b;
    --color-text-light: #7a7a8c;
    --color-text-white: #f0ece6;
    --color-white: #ffffff;
    --color-border: #ede8e0;
    --color-border-light: #f3efe8;
    --color-success: #4caf50;
    --color-whatsapp: #25d366;

    --font-body: 'Noto Sans Hebrew', sans-serif;
    --font-heading: 'Noto Sans Hebrew', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100px;
    right: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    z-index: 10000;
    border-radius: 0 0 0 var(--radius-sm);
    transition: top var(--transition);
}

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

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.site-header.scrolled {
    height: 64px;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: height var(--transition);
}

.scrolled .navbar {
    height: 64px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height var(--transition);
}

.scrolled .logo img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 16px;
    left: 16px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: right;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu a:hover {
    color: var(--color-accent-dark);
}

.btn-nav {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
}

.btn-nav::after { display: none !important; }

.btn-nav:hover {
    background: var(--color-accent-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    right: 0;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(201,169,110,0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-bg-soft);
    color: var(--color-accent-dark);
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background: #20b858;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #fefefe 0%, #faf7f3 60%, #f5f0e8 100%);
    padding: calc(var(--header-height) + 40px) 0 60px;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Keep for backwards compat but hidden on new hero */
.hero-bg { display: none; }
.hero-overlay { display: none; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: var(--radius-xl);
    color: var(--color-accent-dark);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero h1 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.25;
}

.hero-subtitle {
    color: var(--color-text-light);
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--color-border-light);
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.hero-meta-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
}

.hero-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(43,43,59,0.12);
}

.hero-image-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.hero-image-badge .badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,169,110,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

.hero-image-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.hero-image-badge span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.hero-stamp {
    position: absolute;
    top: 28px;
    left: 28px;
    opacity: 0.12;
    width: 90px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
    padding: calc(var(--header-height) + 50px) 24px 50px;
    background: linear-gradient(135deg, #fefefe 0%, #faf7f3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-light);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(201,169,110,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--color-primary);
    margin-bottom: 14px;
    position: relative;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
}

.page-hero p {
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    position: relative;
    line-height: 1.7;
}

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

.breadcrumbs a {
    color: var(--color-text-light);
}

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

.breadcrumbs .sep {
    margin: 0 8px;
    opacity: 0.5;
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-bg);
}

.section-cream {
    background: var(--color-bg-soft);
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- Cards Grid --- */
.cards-grid {
    display: grid;
    gap: 30px;
}

.cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(201,169,110,0.12);
    border-color: rgba(201,169,110,0.2);
}

.card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 28px;
}

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

.card-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- Feature Blocks --- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: ltr;
}

.feature-row.reverse .feature-text {
    direction: rtl;
}

.feature-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.feature-text h2 {
    margin-bottom: 20px;
}

.feature-text p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* --- Benefits List --- */
.benefits-list {
    display: grid;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.benefit-item:hover {
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 4px 16px rgba(201,169,110,0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
}
.benefit-icon svg {
    width: 24px;
    height: 24px;
}

/* Card icons (replacing inline emoji style) */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    margin: 0 auto 20px;
}
.card-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.benefit-text p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Pricing Cards --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--color-accent);
}

.pricing-card.featured::before {
    content: 'הכי פופולרי';
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: var(--color-accent);
    color: var(--color-white);
    padding: 4px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 16px 0 8px;
    font-family: var(--font-body);
}

.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.pricing-card .price-note {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.pricing-card ul {
    text-align: right;
    margin-bottom: 28px;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: right;
    transition: color var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg-cream);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: all var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--color-accent);
    color: var(--color-white);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* --- Gallery / Treatment Photos --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(135deg, #faf7f3 0%, #f3ece0 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 1.1rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    position: relative;
}

/* --- Instagram Section --- */
.instagram-section {
    text-align: center;
    padding: 60px 0;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
    color: var(--color-white);
}

/* --- Capsules Grid (Geneo) --- */
.capsules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.capsule-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.capsule-card img {
    width: 100px;
    height: auto;
    margin: 0 auto 20px;
}

.capsule-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.capsule-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* --- Steps / Process --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
}

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

.step-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* --- Form --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition);
    background: var(--color-white);
    direction: rtl;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

/* --- Footer --- */
.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.footer-about p {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--color-text-white);
    opacity: 0.7;
    transition: all var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-col ul li a {
    color: var(--color-text-white);
    opacity: 0.7;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-col ul li small {
    opacity: 0.5;
    display: block;
    font-size: 0.85rem;
}

.footer-col ul li strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal a {
    color: var(--color-text-white);
    opacity: 0.5;
    font-size: 0.85rem;
    transition: opacity var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-legal .sep {
    margin: 0 12px;
    opacity: 0.3;
}

.copyright {
    opacity: 0.4;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--color-white);
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* --- Content Page Styles --- */
.content-page {
    padding: 40px 0 80px;
}

.content-page h2 {
    margin: 40px 0 16px;
}

.content-page h3 {
    margin: 30px 0 12px;
}

.content-page p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-page ul li {
    padding: 6px 0 6px 24px;
    position: relative;
}

.content-page ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* --- 404 Page --- */
.page-404 {
    text-align: center;
    padding: calc(var(--header-height) + 80px) 24px 120px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-404 h1 {
    font-size: 6rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.page-404 p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .capsules-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row { gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { gap: 40px; }
    .hero-image-wrap img { height: 420px; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 40px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.1rem;
    }

    .nav-menu a::after { display: none; }

    .nav-cta {
        margin-top: 20px;
    }

    .btn-nav {
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

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

    .hero-image-wrap img {
        height: 320px;
    }

    .hero-image-badge {
        bottom: 16px;
        right: 16px;
        min-width: 160px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-row.reverse {
        direction: rtl;
    }

    .feature-img img {
        height: 280px;
    }

    .cards-grid-3,
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

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

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

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

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .btn-lg {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}

/* --- Lead Popup --- */
.lead-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lead-overlay.active {
    display: block;
    opacity: 1;
}

.lead-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 420px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    z-index: 2001;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lead-popup.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.lead-popup-close {
    position: absolute;
    top: 12px;
    left: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
    line-height: 1;
}

.lead-popup-close:hover {
    background: var(--color-bg-cream);
    color: var(--color-primary);
}

.lead-popup-header {
    text-align: center;
    margin-bottom: 28px;
}

.lead-popup-stamp {
    margin: 0 auto 16px;
    opacity: 0.8;
}

.lead-popup-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.lead-popup-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.lead-popup-form .form-group {
    margin-bottom: 16px;
}

.lead-popup-form .form-control {
    text-align: right;
    font-size: 1.05rem;
    padding: 16px 18px;
}

.lead-popup-form .form-control[dir="ltr"] {
    text-align: left;
}

.lead-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 4px;
}

.lead-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lead-popup-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 16px;
    margin-bottom: 0;
    opacity: 0.7;
}

.lead-popup-success {
    text-align: center;
    padding: 20px 0;
}

.lead-popup-success .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.lead-popup-success h3 {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.lead-popup-success p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .lead-popup {
        width: 95%;
        padding: 32px 20px 24px;
    }
}
