/* ============================================================
   GOOGLE FONTS — Playfair Display + DM Sans
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ============================================================
   CSS VARIABLES — מערכת עיצוב EVENTOSS
   ============================================================ */
:root {
    /* Brand colors */
    --gold:         #C9A84C;
    --gold-light:   #E8D5A3;
    --gold-pale:    #F5EDD5;
    --champagne:    #F5E6C8;
    --cream:        #FDFAF5;
    --dark:         #1A1208;
    --dark-mid:     #2C1F0E;
    --accent:       #B8860B;
    --text-muted:   #6B5B3E;
    --text-light:   #9E8C6D;

    /* UI colors */
    --white:        #FFFFFF;
    --border:       #E8DCCB;
    --border-light: #F0E8D8;
    --bg-section:   rgba(245, 230, 200, 0.18);

    /* Fonts */
    --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

    /* Sizing */
    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    16px;
    --radius-xl:    24px;
    --radius-full:  9999px;

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(26, 18, 8, 0.06);
    --shadow-md:    0 4px 20px rgba(26, 18, 8, 0.08);
    --shadow-lg:    0 8px 40px rgba(26, 18, 8, 0.12);
    --shadow-gold:  0 8px 32px rgba(201, 168, 76, 0.25);

    /* Transitions */
    --ease:         0.3s ease;

    /* Layout */
    --container-max:    1200px;
    --container-narrow: 760px;
    --section-pad:      100px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
}

img, video { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
blockquote { margin: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Gradient text — gold shimmer */
.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ============================================================
   SHARED SECTION HEADER — gold underline treatment
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* Gold decorative underline */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 12px auto 0;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
    margin-top: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}

/* Nav ghost — transparent, gold border on hover */
.btn--ghost {
    background: rgba(201, 168, 76, 0.1);
    color: rgba(253, 250, 245, 0.85);
    border-color: rgba(201, 168, 76, 0.35);
}

.btn--ghost:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Nav primary — gold */
.btn--primary {
    background: var(--gold);
    color: var(--dark);
    border-color: transparent;
    font-weight: 700;
}

.btn--primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Scrolled nav ghost */
.nav--scrolled .btn--ghost {
    color: var(--text-muted);
    border-color: var(--border);
    background: transparent;
}

.nav--scrolled .btn--ghost:hover {
    background: var(--champagne);
    border-color: var(--gold);
    color: var(--dark);
}

.nav--scrolled .btn--primary {
    background: var(--gold);
    color: var(--dark);
}

/* Outlined — used on non-popular pricing cards */
.btn--outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Hero CTA primary — large gold */
.btn--cta-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-lg);
    border-color: transparent;
}

.btn--cta-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Hero CTA ghost — transparent, gold border */
.btn--cta-ghost {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold);
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.btn--cta-ghost:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* Final CTA button */
.btn--cta-final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 52px;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    background: var(--gold);
    color: var(--dark);
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
}

.btn--cta-final:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(201, 168, 76, 0.5);
}

.btn--full { width: 100%; }

.btn__play { font-size: 11px; opacity: 0.85; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: background var(--ease), box-shadow var(--ease);
}

.nav__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row-reverse;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    transition: color var(--ease);
}


.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.nav__links a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: rgba(253, 250, 245, 0.75);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--ease), background var(--ease);
}

.nav__links a:hover {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.12);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-direction: row-reverse;
}

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
}

.nav__mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--ease);
}

/* Subtle gold accent line below nav */
.nav__gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--ease);
}

/* Scrolled state */
.nav--scrolled {
    background: rgba(253, 250, 245, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav--scrolled .nav__logo {
    color: var(--dark);
}

.nav--scrolled .nav__links a {
    color: var(--text-muted);
}

.nav--scrolled .nav__links a:hover {
    color: var(--accent);
    background: var(--champagne);
}

.nav--scrolled .nav__mobile-toggle span {
    background: var(--dark);
}

.nav--scrolled .nav__gold-line {
    opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(26, 18, 8, 0.65) 0%,
        rgba(26, 18, 8, 0.35) 50%,
        rgba(26, 18, 8, 0.55) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 780px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-family: var(--font-sans);
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(245, 237, 213, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

/* Staggered hero entrance delays */
.hero__badge       { animation-delay: 0.10s; }
.hero__headline    { animation-delay: 0.25s; }
.hero__subheadline { animation-delay: 0.38s; }
.hero__ctas        { animation-delay: 0.52s; }

/* Animated scroll chevron */
.hero__scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: opacity 0.5s ease;
    animation: chevronBounce 1.8s ease-in-out infinite;
}

.scroll-chevron {
    width: 28px;
    height: 28px;
    color: rgba(201, 168, 76, 0.7);
}

@keyframes chevronBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ============================================================
   FEATURES SECTION — 2×2 grid
   ============================================================ */
.features {
    padding: var(--section-pad) 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
    overflow: hidden;
    cursor: default;
}

/* Gold inline-start accent bar — slides in on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    opacity: 0;
    transition: opacity var(--ease), width 0.25s ease;
}

/* Warm gold glow + lift + border brightening */
.feature-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 16px 48px rgba(201, 168, 76, 0.18),
        0 4px 16px rgba(26, 18, 8, 0.07);
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(245, 237, 213, 0.55);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Icon scale + subtle warm background on hover */
.feature-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: rgba(201, 168, 76, 0.07);
    transition: transform 0.25s ease, background 0.25s ease;
    line-height: 1;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.12) rotate(-3deg);
    background: rgba(201, 168, 76, 0.15);
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    transition: color var(--ease);
}

.feature-card:hover .feature-card__title {
    color: var(--accent);
}

.feature-card__description {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works {
    padding: var(--section-pad) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Subtle texture */
.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

/* Dashed connector line between steps */
.steps__grid::before {
    content: '';
    position: absolute;
    top: 52px;
    right: 22%;
    left: 22%;
    height: 0;
    border-top: 2px dashed rgba(201, 168, 76, 0.35);
    pointer-events: none;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 28px 0;
}

.step__visual {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

/* Large decorative step number behind icon */
.step__bg-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.step__icon {
    position: relative;
    z-index: 1;
    font-size: 52px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.step__title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step__description {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 240px;
    margin: 0 auto;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
    padding: var(--section-pad) 0;
    background: rgba(245, 230, 200, 0.28);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
}

/* Decorative large quotation mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 20px;
    font-family: var(--font-serif);
    font-size: 96px;
    color: var(--gold-light);
    line-height: 1;
    opacity: 0.55;
    pointer-events: none;
}

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

.testimonial-card__stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.testimonial-card__quote {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--dark-mid);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-direction: row-reverse;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.avatar::after {
    content: attr(data-initials);
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.testimonial-card__name {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-card__role {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
    padding: var(--section-pad) 0;
    background: var(--white);
}

/* ============================================================
   PRICING CALCULATOR
   ============================================================ */
.pricing-calculator {
    background: linear-gradient(135deg, rgba(245, 237, 213, 0.55) 0%, var(--champagne) 100%);
    border: 1px solid var(--gold-pale);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.pricing-calculator__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-direction: row-reverse;
}

.pricing-calculator__input-group {
    flex: 1;
}

.pricing-calculator__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: right;
}

.pricing-calculator__control {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

.pricing-calculator__input {
    width: 110px;
    padding: 12px 14px;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: border-color var(--ease), box-shadow var(--ease);
    -moz-appearance: textfield;
    appearance: textfield;
}

.pricing-calculator__input::-webkit-outer-spin-button,
.pricing-calculator__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pricing-calculator__input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.pricing-calculator__unit {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-calculator__range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    touch-action: pan-y;        /* lets vertical scroll pass through; left/right drives slider */
    background: linear-gradient(to left, var(--border) 0%, var(--gold) 20%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.pricing-calculator__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.45);
    border: 2px solid var(--white);
    transition: transform 0.15s ease;
}

.pricing-calculator__range::-webkit-slider-thumb:hover {
    transform: scale(1.18);
}

.pricing-calculator__range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.45);
    border: 2px solid var(--white);
}

.pricing-calculator__result {
    flex-shrink: 0;
    min-width: 200px;
    padding: 28px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.pricing-calculator__result-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-calculator__prices {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.pricing-calculator__original {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.02em;
    line-height: 1;
    opacity: 0.7;
}

.pricing-calculator__original s {
    text-decoration: line-through;
    text-decoration-color: rgba(107, 91, 62, 0.55);
}

.pricing-calculator__total {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    transition: color 0.2s ease;
}

.pricing-calculator__note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Trust badge ─────────────────────────────────────────── */
.pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row-reverse;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: var(--radius-full);
    padding: 11px 24px;
    margin: 0 auto 48px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--dark-mid);
    width: fit-content;
}

.pricing-trust__icon {
    font-size: 17px;
}

.pricing-trust strong {
    color: var(--accent);
}

/* Pricing CTA — below calculator */
.pricing-calculator__cta {
    margin-top: 36px;
    text-align: center;
}

.pricing-calculator__cta .btn {
    min-width: 280px;
    font-size: 17px;
    padding: 16px 40px;
}

/* Pricing grid */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    background: var(--cream);
    position: relative;
    transition: transform var(--ease), box-shadow var(--ease);
}

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

/* Popular card */
.pricing-card--popular {
    border: 2px solid var(--gold);
    background: linear-gradient(160deg, rgba(245, 237, 213, 0.6) 0%, var(--cream) 100%);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.pricing-card--popular:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.3);
}

.pricing-card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--accent));
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}

.pricing-card__header {
    margin-bottom: 28px;
}

.pricing-card__name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.pricing-card__price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 12px;
    line-height: 1;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.pricing-card__currency {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: 8px;
}

.pricing-card--popular .pricing-card__currency {
    color: var(--accent);
}

.pricing-card__amount {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.04em;
    transition: all var(--ease);
}

.pricing-card--popular .pricing-card__amount {
    color: var(--accent);
}

.pricing-card__amount--free {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-muted);
    padding-bottom: 8px;
}

.pricing-card__period {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    padding-bottom: 10px;
}

.pricing-card__description {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-feature {
    font-family: var(--font-sans);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.pricing-feature--included {
    color: var(--dark-mid);
}

.pricing-feature--included::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    order: 1;
}

.pricing-feature--excluded {
    color: var(--text-light);
}

.pricing-feature--excluded::before {
    content: '–';
    color: var(--border);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    order: 1;
}

/* Highlighted feature row — used for standout bullets (e.g. phone-call tier) */
.pricing-feature--highlight {
    color: var(--accent);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    margin: 2px 0;
}

.pricing-feature--highlight::before {
    color: var(--gold);
}

/* ── Per-record price layout ─────────────────────────────── */
.pricing-card__price--per-record {
    align-items: baseline;
    gap: 6px;
}

.pricing-card__price--per-record .pricing-card__amount {
    font-size: 42px;
}

/* ── Tier badges ─────────────────────────────────────────── */
.pricing-card__tier-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.pricing-card__tier-badge--free {
    background: rgba(107, 91, 62, 0.1);
    color: var(--text-muted);
}

.pricing-card__tier-badge--standard {
    background: rgba(201, 168, 76, 0.16);
    color: var(--accent);
}

.pricing-card__tier-badge--enterprise {
    background: rgba(26, 18, 8, 0.07);
    color: var(--dark-mid);
}

/* ── Contact / special price ─────────────────────────────── */
.pricing-card__amount--contact {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: 8px;
}

/* ── VS Comparison block ─────────────────────────────────── */
.pricing-vs {
    margin-top: 64px;
    text-align: center;
}

.pricing-vs__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.pricing-vs__grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 620px;
    margin: 0 auto;
    flex-direction: row-reverse;
}

.pricing-vs__item {
    flex: 1;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
}

.pricing-vs__item--us {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(245, 237, 213, 0.45) 100%);
    border: 2px solid var(--gold-pale);
}

.pricing-vs__item--alt {
    background: rgba(200, 200, 200, 0.1);
    border: 1px solid var(--border-light);
}

.pricing-vs__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.pricing-vs__name {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-vs__price {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.pricing-vs__item--us .pricing-vs__price {
    color: var(--accent);
}

.pricing-vs__note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   FAQ / ACCORDION SECTION
   ============================================================ */
.faq {
    padding: var(--section-pad) 0;
    background: var(--cream);
    direction: rtl;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    direction: rtl;
}

.accordion__item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

/* Hover on closed items — champagne tint */
.accordion__item:not(.accordion__item--open):hover {
    background: rgba(245, 230, 200, 0.35);
    border-color: var(--gold-pale);
}

/* Open state — gold left border */
.accordion__item--open {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    border-right-width: 3px;
    border-right-color: var(--gold);
}

.accordion__header {
    width: 100%;
    display: flex;
    flex-direction: row;          /* RTL direction on parent drives order */
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    text-align: right;
    direction: rtl;
    cursor: pointer;
    transition: color var(--ease);
    background: transparent;
}

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

.accordion__item--open .accordion__header {
    color: var(--accent);
    font-weight: 600;
}

.accordion__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--ease), color var(--ease);
}

.accordion__item--open .accordion__chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

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

.accordion__item--open .accordion__content {
    max-height: 240px;
}

.accordion__content p {
    padding: 0 24px 22px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    direction: rtl;
    text-align: right;
}

/* ============================================================
   FINAL CTA SECTION — dark with gold glow
   ============================================================ */
.cta-final {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* Radial gold glow in center */
.cta-final__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final__headline {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-final__subheadline {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--champagne);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final__note {
    margin-top: 20px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(245, 230, 200, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark-mid);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding: 56px 0 36px;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    flex-direction: row;            /* RTL inherited from <html> — brand flows to right naturally */
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;        /* flex-start = right edge in RTL column — aligns logo/tagline to the right */
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    transition: color var(--ease);
}

.footer__logo:hover {
    color: var(--gold);
}

.footer__tagline {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(232, 213, 163, 0.4);
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px 2px;
    flex-wrap: wrap;
    flex-direction: row;            /* RTL order driven by direction: rtl inheritance */
}

.footer__nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(245, 230, 200, 0.5);
    padding: 10px 12px;             /* 10px vertical — comfortable mobile tap target */
    border-radius: var(--radius-sm);
    transition: color var(--ease);
}

.footer__nav a:hover {
    color: var(--gold-light);
}

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

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: rgba(232, 213, 163, 0.5);
    transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.footer__social-link:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.footer__bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    padding-top: 24px;
}

.footer__bottom p {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(245, 230, 200, 0.25);
    text-align: center;
}

.footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;        /* RTL: right → left */
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 14px;
}

.footer__legal a {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(245, 230, 200, 0.28);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: #b89146;
}

.footer__legal-sep {
    font-size: 11px;
    color: rgba(245, 230, 200, 0.15);
    user-select: none;
    line-height: 1;
}

/* ============================================================
   ANIMATIONS — @keyframes
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.features__grid .feature-card:nth-child(1),
.testimonials__grid .testimonial-card:nth-child(1),
.pricing__grid .pricing-card:nth-child(1) { transition-delay: 0.05s; }

.features__grid .feature-card:nth-child(2),
.testimonials__grid .testimonial-card:nth-child(2),
.pricing__grid .pricing-card:nth-child(2) { transition-delay: 0.13s; }

.features__grid .feature-card:nth-child(3),
.testimonials__grid .testimonial-card:nth-child(3),
.pricing__grid .pricing-card:nth-child(3) { transition-delay: 0.21s; }

.features__grid .feature-card:nth-child(4),
.testimonials__grid .testimonial-card:nth-child(4) { transition-delay: 0.29s; }

.features__grid .feature-card:nth-child(5) { transition-delay: 0.08s; }
.features__grid .feature-card:nth-child(6) { transition-delay: 0.16s; }

.steps__grid .step:nth-child(1) { transition-delay: 0.05s; }
.steps__grid .step:nth-child(2) { transition-delay: 0.18s; }
.steps__grid .step:nth-child(3) { transition-delay: 0.31s; }

/* ============================================================
   RESPONSIVE — Tablet (769px – 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

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

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

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

    .pricing-card--popular { transform: translateY(-4px); }
    .pricing-card--popular:hover { transform: translateY(-8px); }
}

@media (max-width: 900px) {
    .testimonials__grid { grid-template-columns: 1fr; }

    .steps__grid::before { display: none; }

    .footer__content { flex-direction: column; align-items: flex-end; gap: 24px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   All overrides below — desktop styles untouched above this point.
   ============================================================ */
@media (max-width: 768px) {

    /* ── Global ─────────────────────────────────────────────── */
    :root { --section-pad: 60px; }

    /* Tighter horizontal container on mobile */
    .container,
    .container--narrow {
        padding: 0 16px;
    }

    /* Section titles scale down */
    .section-title {
        font-size: clamp(22px, 5vw, 28px);
    }

    .section-subtitle  { font-size: 15px; }
    .section-header    { margin-bottom: 40px; }

    /* ── Navigation ─────────────────────────────────────────── */
    .nav__container {
        flex-direction: row;        /* logo left, hamburger right */
        justify-content: space-between;
        padding: 0 16px;
    }

    /* Desktop links hidden — show only via toggle */
    .nav__links {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: #1A1208;
        gap: 0;
        /* remove any backdrop that may block touch */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 999;
    }

    .nav__links--open {
        max-height: 500px;
    }

    /* Each nav link — 48px tall touch target, gold hover */
    .nav__links li a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 20px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(232, 213, 163, 0.85);
        border-radius: 0;
        text-align: right;
        transition: background var(--ease), color var(--ease);
    }

    .nav__links li a:hover,
    .nav__links li a:active {
        background: rgba(201, 168, 76, 0.15);
        color: var(--gold-light);
    }

    /* Scrolled nav — light background for links */
    .nav--scrolled .nav__links {
        background: rgba(253, 250, 245, 0.98);
    }

    .nav--scrolled .nav__links li a {
        color: var(--text-muted);
    }

    .nav--scrolled .nav__links li a:hover,
    .nav--scrolled .nav__links li a:active {
        color: var(--accent);
        background: var(--champagne);
    }

    /* Action buttons in the mobile header bar — compact sizing */
    .nav__actions {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    .nav__actions .btn {
        padding: 4px 8px;
        font-size: 12px;
        height: auto;
        line-height: 1.4;
        border-radius: 7px;
        white-space: nowrap;
    }

    /* Show hamburger, ensure 44px tap target */
    .nav__mobile-toggle {
        display: flex;
        min-height: 44px;
        min-width: 44px;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    /* Hamburger → X animation */
    .nav__mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav__mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav--scrolled .nav__mobile-toggle span { background: var(--dark); }

    /* ── Hero ───────────────────────────────────────────────── */
    .hero__overlay {
        /* Darker on mobile — video needs to stay legible */
        background: linear-gradient(
            170deg,
            rgba(26, 18, 8, 0.82) 0%,
            rgba(26, 18, 8, 0.58) 50%,
            rgba(26, 18, 8, 0.78) 100%
        );
    }

    .hero__content {
        padding: 88px 24px 48px;    /* top clears fixed nav; bottom avoids scroll-chevron */
        width: 100%;
        max-width: 100%;
    }

    .hero__badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero__headline {
        font-size: clamp(26px, 7.5vw, 34px);
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero__subheadline {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 24px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    /* CTAs: stacked, constrained width, 52px height */
    .hero__ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .btn--cta-primary,
    .btn--cta-ghost {
        width: 100%;
        height: 52px;
        padding: 0 16px;
        font-size: 15px;
        border-radius: var(--radius-md);
        justify-content: center;
    }

    /* ── Features ───────────────────────────────────────────── */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card__icon {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .feature-card__title  { font-size: 18px; }
    .feature-card__description { font-size: 14px; }

    /* ── How It Works ───────────────────────────────────────── */
    .steps__grid {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }

    /* Vertical dashed gold connector along the icon column (RTL: right side) */
    .steps__grid::before {
        display: block;
        top: 36px;
        right: 35px;     /* center of icon: icon is 72px wide, right-edge flush */
        left: auto;
        bottom: 36px;
        width: 0;
        height: auto;
        border-top: none;
        border-right: 2px dashed rgba(201, 168, 76, 0.35);
    }

    /* Each step: icon on right, text to the left (RTL grid) */
    .step {
        display: grid;
        grid-template-columns: auto 1fr; /* col1=icon(right), col2=text(left) in RTL */
        grid-template-rows: auto auto;
        column-gap: 18px;
        row-gap: 4px;
        align-items: start;
        padding: 20px 0;
        text-align: right;
    }

    .step__visual {
        grid-column: 1;  /* RTL col1 = right side */
        grid-row: 1 / 3; /* span title + description rows */
        margin-bottom: 0;
        position: relative;
        z-index: 1;
    }

    .step__icon {
        width: 72px;
        height: 72px;
        font-size: 36px;
    }

    .step__bg-number {
        font-size: 40px;
    }

    .step__title {
        grid-column: 2;  /* RTL col2 = left side */
        grid-row: 1;
        font-size: 17px;
        margin-bottom: 0;
        padding-top: 10px;
        text-align: right;
    }

    .step__description {
        grid-column: 2;
        grid-row: 2;
        font-size: 14px;
        max-width: none;
        margin: 0;
        line-height: 1.7;
        text-align: right;
    }

    /* ── Testimonials ───────────────────────────────────────── */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card {
        padding: 28px 20px 24px;
    }

    /* Reduce quote mark on mobile */
    .testimonial-card::before {
        font-size: 60px;
        top: 4px;
        right: 14px;
    }

    /* ── Pricing ────────────────────────────────────────────── */
    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* Popular card: float to top, extra gold tint */
    .pricing-card--popular {
        transform: none;
        order: -1;
        background: linear-gradient(
            160deg,
            rgba(201, 168, 76, 0.06) 0%,
            var(--cream) 100%
        );
    }

    .pricing-card--popular:hover {
        transform: translateY(-4px);
    }

    /* Smaller price number on mobile */
    .pricing-card__amount {
        font-size: 36px;
    }

    /* Feature list: easier to read */
    .pricing-feature {
        font-size: 14px;
        line-height: 1.8;
    }

    /* All buttons in pricing cards: full width, 50px tall */
    .pricing-card .btn {
        width: 100%;
        height: 50px;
        padding: 0 16px;
        justify-content: center;
    }

    /* ── Calculator mobile ──────────────────────────────────── */
    .pricing-calculator {
        padding: 24px 20px;
    }

    .pricing-calculator__inner {
        flex-direction: column;
        gap: 24px;
    }

    .pricing-calculator__result {
        width: 100%;
    }

    .pricing-calculator__prices {
        gap: 10px;
        align-items: baseline;
    }

    .pricing-calculator__original {
        font-size: 22px;
    }

    .pricing-calculator__total {
        font-size: 40px;
    }

    /* Larger slider thumb for fat-finger accuracy */
    .pricing-calculator__range::-webkit-slider-thumb {
        width: 30px;
        height: 30px;
    }
    .pricing-calculator__range::-moz-range-thumb {
        width: 30px;
        height: 30px;
    }

    /* Prevent iOS auto-zoom on input focus (requires ≥ 16px) */
    .pricing-calculator__input,
    .lead-form__input {
        font-size: 16px;
    }

    /* ── VS comparison mobile ───────────────────────────────── */
    .pricing-vs__grid {
        flex-direction: column;
        gap: 8px;
    }

    .pricing-vs__divider {
        padding: 4px 0;
    }

    /* ── FAQ ────────────────────────────────────────────────── */
    .accordion__header {
        font-size: 15px;
        min-height: 56px;       /* 44px+ tap target */
        padding: 0 16px;
    }

    .accordion__content p {
        padding: 0 16px 18px;
        font-size: 14px;
        line-height: 1.75;
    }

    /* ── Final CTA ──────────────────────────────────────────── */
    .cta-final {
        padding: 60px 24px;
    }

    .cta-final__headline {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.25;
    }

    .cta-final__subheadline {
        font-size: 15px;
        margin-bottom: 32px;
    }

    /* Full-width, 54px tall CTA button */
    .btn--cta-final {
        width: 100%;
        max-width: 400px;
        height: 54px;
        padding: 0 24px;
        font-size: 16px;
    }

    /* ── Footer ─────────────────────────────────────────────── */
    .footer__content {
        flex-direction: column;
        align-items: center;        /* centre all three columns when stacked */
        gap: 24px;
        text-align: center;
    }

    .footer__brand {
        align-items: center;        /* centre logo + tagline when stacked */
    }

    .footer__nav {
        gap: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer__social {
        justify-content: center;
    }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero__content    { padding: 80px 16px 40px; }
    .hero__headline   { font-size: 24px; margin-bottom: 10px; }
    .hero__subheadline { font-size: 13px; margin-bottom: 20px; }
    .hero__ctas       { max-width: 100%; }
    .hero__badge      { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }

    .feature-card     { padding: 18px 14px; }

    /* Steps: slightly smaller icon */
    .step__icon       { width: 64px; height: 64px; font-size: 30px; }
    .step__bg-number  { font-size: 36px; }
    /* Adjust vertical line to match smaller icon center */
    .steps__grid::before { right: 31px; }

    .testimonial-card      { padding: 24px 16px 20px; }
    .testimonial-card::before { font-size: 52px; }

    .pricing-card          { padding: 20px 16px; }
    .pricing-card__amount  { font-size: 32px; }

    .btn--cta-final        { font-size: 15px; }
}

/* ============================================================
   LEAD CAPTURE FORM — inside final CTA section
   ============================================================ */
.lead-form {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    direction: rtl;
    text-align: right;
}

.lead-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 280px));
    gap: 14px;
    margin-bottom: 24px;
    justify-content: center;
    direction: rtl;
}

.lead-form__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: right;
}

.lead-form__label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 213, 163, 0.65);
}

.lead-form__input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--dark);
    background: rgba(253, 250, 245, 0.96);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    text-align: right;
    direction: rtl;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form__input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.lead-form__input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

/* Red ring on invalid fields */
.lead-form__input--error {
    border-color: #d95a5a;
    box-shadow: 0 0 0 3px rgba(217, 90, 90, 0.18);
}

.lead-form__submit {
    display: block;
    margin: 0 auto 18px;
    min-width: 240px;
}

.lead-form__success {
    direction: rtl;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--champagne);
    padding: 24px 0 8px;
    animation: fadeInUp 0.45s ease both;
}

/* Disabled/loading state */
.lead-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--dark);
    color: var(--champagne);
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.35);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    text-align: center;
    direction: rtl;
}

.toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast--error {
    border-color: rgba(217, 90, 90, 0.45);
    color: #f5b8b8;
}

/* Lead form responsive */
@media (max-width: 600px) {
    .lead-form__fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lead-form__submit {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .toast {
        left: 16px;
        right: 16px;
        transform: translateY(12px);
        white-space: normal;
    }

    .toast--visible {
        transform: translateY(0);
    }
}

/* ============================================================
   SMART LEAD MODAL
   ============================================================ */
.slm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 8, 0.70);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.slm-overlay.slm-open {
    opacity: 1;
    visibility: visible;
}

.slm-box {
    background: linear-gradient(155deg, #1e150a 0%, #2c1f0e 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 22px;
    padding: 44px 40px 36px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(201, 168, 76, 0.07) inset;
    direction: rtl;
    transform: translateY(28px) scale(0.97);
    transition: transform 0.34s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.slm-overlay.slm-open .slm-box {
    transform: translateY(0) scale(1);
}

.slm-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(232, 213, 163, 0.40);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
}

.slm-close:hover {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
}

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

.slm-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.14);
    border: 1px solid rgba(201, 168, 76, 0.30);
    border-radius: var(--radius-full);
    padding: 5px 16px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.slm-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.slm-subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(232, 213, 163, 0.45);
    line-height: 1.6;
}

.slm-field {
    margin-bottom: 16px;
}

.slm-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(232, 213, 163, 0.55);
    margin-bottom: 7px;
}

.slm-input {
    width: 100%;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(201, 168, 76, 0.18);
    border-radius: 11px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--white);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.slm-input::placeholder { color: rgba(255, 255, 255, 0.18); }

.slm-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.slm-input.slm-input--error {
    border-color: #d95a5a;
    box-shadow: 0 0 0 3px rgba(217, 90, 90, 0.12);
}

.slm-error {
    background: rgba(217, 90, 90, 0.10);
    border: 1px solid rgba(217, 90, 90, 0.28);
    border-radius: 9px;
    padding: 10px 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #f5b8b8;
    margin-bottom: 14px;
    line-height: 1.55;
}

.slm-submit {
    width: 100%;
    padding: 15px;
    margin-top: 8px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 11px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.slm-submit:hover:not(:disabled) {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.slm-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

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

.slm-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(72, 187, 120, 0.14);
    border: 2px solid rgba(72, 187, 120, 0.40);
    color: #68d391;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.slm-success p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: rgba(232, 213, 163, 0.75);
    line-height: 1.6;
}

@media (max-width: 480px) {
    .slm-overlay { align-items: flex-end; padding: 0; }
    .slm-box {
        padding: 32px 18px 28px;
        border-radius: 22px 22px 0 0;
        max-height: 92svh;
        overflow-y: auto;
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================================
   WHATSAPP FLOATING WIDGET
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    left: auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 16px rgba(37, 211, 102, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.55),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:active {
    transform: scale(0.96);
}

.whatsapp-float__icon {
    width: 32px;
    height: 32px;
}
