@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ============================================================
   THE LIGHT METHOD — Premium Branding Website
   Minimalist · Elegant · RTL Hebrew
   ============================================================ */

/* ── Design Tokens ── */
:root {
    --cream: #FBF8F3;
    --cream-dark: #F3EDE4;
    --white: #FFFFFF;
    --sage: #A3B8A0;
    --sage-light: #C5D4C3;
    --sage-dark: #8BA888;
    --gold: #C9A96E;
    --gold-light: #D4BC8E;
    --gold-dark: #B8944F;
    --text-primary: #2E2E2E;
    --text-secondary: #5C5C5C;
    --text-muted: #8A8A8A;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Heebo', sans-serif;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.10);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s var(--ease);
    --max-width: 1200px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    direction: rtl;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Container ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Utility: Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(251, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s var(--ease);
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(251, 248, 243, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s var(--ease);
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(163, 184, 160, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(163, 184, 160, 0.15);
    border: 1px solid rgba(163, 184, 160, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(163, 184, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(163, 184, 160, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1.5px solid var(--cream-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage-light);
    border-radius: var(--radius-lg);
    opacity: 0.4;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-left: 1.5px solid var(--text-muted);
    border-bottom: 1.5px solid var(--text-muted);
    transform: rotate(-45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-label .line {
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 680px;
}

/* Gold separator */
.gold-sep {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 24px 0;
    border-radius: 2px;
}

/* ============================================================
   METHOD SECTION
   ============================================================ */
.method {
    background: var(--white);
}

.method-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.method-intro .section-description {
    margin: 0 auto;
}

.method-intro .gold-sep {
    margin: 24px auto;
}

.light-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.light-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.light-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.light-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.light-card:hover::before {
    opacity: 1;
}

.light-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.light-word {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.light-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(163, 184, 160, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-image {
    position: relative;
    order: 2;
}

.app-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.app-image::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--gold-light);
    border-left: 2px solid var(--gold-light);
    border-radius: 4px;
    opacity: 0.5;
}

.app-text {
    order: 1;
}

.app-text .section-description {
    margin-bottom: 36px;
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--text-primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #1a1a1a;
}

.store-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.store-btn .store-label {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.store-btn .store-small {
    font-size: 0.65rem;
    font-weight: 300;
    opacity: 0.8;
}

.store-btn .store-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience {
    background: var(--white);
}

.audience-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.audience-header .gold-sep {
    margin: 24px auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.audience-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sage-light);
}

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(163, 184, 160, 0.2), rgba(163, 184, 160, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
}

.audience-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    position: relative;
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-content .gold-sep {
    margin: 24px auto;
}

.about-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-role {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.about-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
}

/* Decorative border */
.about-content::before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--gold-light);
    border-right: 2px solid var(--gold-light);
    margin: 0 auto 40px;
    border-radius: 4px;
    opacity: 0.4;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-description {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-detail .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 44px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    outline: none;
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(163, 184, 160, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #D4766E;
    box-shadow: 0 0 0 3px rgba(212, 118, 110, 0.1);
}

.error-msg {
    font-size: 0.78rem;
    color: #D4766E;
    margin-top: 6px;
    display: none;
}

.error-msg.show {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(163, 184, 160, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(163, 184, 160, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Newsletter */
.newsletter {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-dark);
}

.newsletter-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.newsletter-row {
    display: flex;
    gap: 10px;
}

.newsletter-row input {
    flex: 1;
    padding: 12px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 100px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    direction: rtl;
    outline: none;
    transition: border-color 0.3s var(--ease);
}

.newsletter-row input:focus {
    border-color: var(--sage);
}

.newsletter-btn {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success .success-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success .success-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--cream-dark);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image::before,
    .hero-image::after {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .light-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .app-text {
        order: 1;
        text-align: center;
    }

    .app-text .section-description {
        margin: 0 auto 36px;
    }

    .app-image {
        order: 2;
    }

    .app-image img {
        max-width: 500px;
        margin: 0 auto;
    }

    .store-buttons {
        justify-content: center;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-detail {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image img {
        height: 320px;
    }

    .light-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .light-card {
        padding: 28px 20px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 28px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .light-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-btn {
        justify-content: center;
    }

    .newsletter-row {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.7rem;
    }
}