/* ========================================
   POINTS WALLET - THE POINTS MOM BRANDING
   Clean, Modern Design with The Points Mom Brand Identity
   ======================================== */

:root {
    /* The Points Mom Brand Colors */
    --color-primary-teal: #43878A;
    --color-light-teal: #62BEC4;
    --color-accent-orange: #F88F55;
    --color-dark-gray: #1F2937;
    --color-medium-gray: #6B7280;
    --color-light-gray: #F9FAFB;
    --color-white: #FFFFFF;
    --color-cream: #FAFAFA;

    /* Semantic color mapping for consistency */
    --color-emerald: var(--color-primary-teal);
    --color-emerald-light: var(--color-light-teal);
    --color-emerald-dark: #366A6D;
    --color-gold: var(--color-accent-orange);
    --color-gold-light: #FFA775;
    --color-gold-dark: #E67E3F;
    --color-charcoal: var(--color-dark-gray);
    --color-charcoal-light: var(--color-medium-gray);

    /* Typography - App-inspired with Inter */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 10rem;

    /* Effects - Teal-tinted shadows */
    --shadow-soft: 0 4px 24px rgba(67, 135, 138, 0.08);
    --shadow-medium: 0 8px 40px rgba(67, 135, 138, 0.12);
    --shadow-strong: 0 16px 60px rgba(67, 135, 138, 0.18);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Grain Texture Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Container System */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 243, 239, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(26, 95, 74, 0.08);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(245, 243, 239, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-full {
    height: 88px;
    width: auto;
}

.logo-icon {
    color: var(--color-emerald);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    font-family: 'Poppins', var(--font-body);
    font-size: 1.0546875rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--color-emerald);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition-fast);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-emerald);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-text:hover {
    color: var(--color-emerald-light);
}

.btn-text-large {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-emerald);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-text-large:hover {
    color: var(--color-emerald-light);
    transform: translateX(4px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-emerald);
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-fast);
    border: 1px solid var(--color-emerald);
}

.btn-primary:hover {
    background: var(--color-emerald-light);
    border-color: var(--color-emerald-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 95, 74, 0.2);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: var(--color-emerald);
    color: var(--color-white);
    font-size: 1.0625rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all var(--transition-fast);
    border: 1px solid var(--color-emerald);
}

.btn-primary-large:hover {
    background: var(--color-emerald-light);
    border-color: var(--color-emerald-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 95, 74, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--color-emerald);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: 1.5px solid var(--color-emerald);
    transition: all var(--transition-fast);
}

.btn-outline:hover {
    background: var(--color-emerald);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 95, 74, 0.15);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-emerald-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--color-gold);
    font-weight: 500;
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-lg);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-proof {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(26, 95, 74, 0.12);
}

.proof-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-emerald);
    line-height: 1;
}

.proof-number sup {
    font-size: 1.5rem;
    font-weight: 400;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--color-charcoal-light);
    max-width: 320px;
}

/* Hero Visual - Card Stack */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 500px;
}

.premium-card {
    position: absolute;
    width: 380px;
    height: 240px;
    background: linear-gradient(135deg, var(--color-emerald-dark), var(--color-emerald));
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-strong);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 143, 85, 0.15), transparent);
    pointer-events: none;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: cardShine 8s infinite;
}

@keyframes cardShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.premium-card.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: cardFloat1 6s ease-in-out infinite;
}

.premium-card.card-2 {
    top: 60px;
    left: 30px;
    z-index: 2;
    background: linear-gradient(135deg, var(--color-emerald-dark), var(--color-light-teal));
    animation: cardFloat2 6s ease-in-out infinite;
}

.premium-card.card-3 {
    top: 120px;
    left: 60px;
    z-index: 1;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    animation: cardFloat3 6s ease-in-out infinite;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(-3deg); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-chip {
    width: 48px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border-radius: 6px;
    margin-bottom: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-name {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.card-benefits {
    display: flex;
    gap: 6px;
}

.benefit-indicator {
    width: 32px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.benefit-indicator.active {
    background: var(--color-gold-light);
    box-shadow: 0 0 8px rgba(197, 165, 114, 0.4);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.gradient-sphere.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-emerald-light), transparent);
    top: -200px;
    right: -100px;
    animation: sphereFloat1 15s ease-in-out infinite;
}

.gradient-sphere.sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-gold), transparent);
    bottom: -150px;
    left: -100px;
    animation: sphereFloat2 12s ease-in-out infinite;
}

@keyframes sphereFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -30px); }
}

@keyframes sphereFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

/* ========================================
   VALUE PROPOSITION
   ======================================== */

.value-prop {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-item {
    padding: var(--spacing-md);
}

.value-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-emerald-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */

.philosophy {
    padding: var(--spacing-xxl) 0;
    background: var(--color-cream);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.section-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-emerald-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.015em;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
    max-width: 640px;
    margin: 0 auto var(--spacing-lg);
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.philosophy-text p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-charcoal-light);
}

.philosophy-stats {
    display: flex;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(26, 95, 74, 0.12);
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--color-emerald);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-emerald-light);
}

.stat-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-charcoal-light);
}

/* Feature Showcase */
.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
}

.showcase-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    padding: var(--spacing-sm);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.showcase-item:hover {
    background: rgba(26, 95, 74, 0.03);
    transform: translateX(4px);
}

.showcase-icon {
    flex-shrink: 0;
    color: var(--color-emerald);
}

.showcase-text {
    flex: 1;
}

.showcase-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-emerald-dark);
    margin-bottom: 0.25rem;
}

.showcase-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-charcoal-light);
}

/* ========================================
   FEATURES SHOWCASE WITH SCREENSHOTS
   ======================================== */

.features-showcase {
    padding: var(--spacing-xxl) 0;
    background: var(--color-light-gray);
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
}

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

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-showcase-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(74, 142, 139, 0.1);
    color: var(--color-emerald);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    align-self: flex-start;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.feature-showcase-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-emerald-dark);
    line-height: 1.2;
    margin-top: 0.5rem;
}

.feature-showcase-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
    margin-top: 0.5rem;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--spacing-sm);
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-charcoal);
    font-weight: 500;
}

.feature-checklist svg {
    flex-shrink: 0;
}

.feature-showcase-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.rounded-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(74, 142, 139, 0.15),
                0 8px 24px rgba(74, 142, 139, 0.1);
    transition: all var(--transition-slow);
    border: 1px solid rgba(74, 142, 139, 0.08);
}

.rounded-screenshot:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(74, 142, 139, 0.2),
                0 12px 32px rgba(74, 142, 139, 0.15);
}

/* App Preview in Hero */
.app-preview-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(74, 142, 139, 0.2),
                0 10px 30px rgba(74, 142, 139, 0.12);
    border: 1px solid rgba(74, 142, 139, 0.1);
    position: relative;
    z-index: 2;
}

.preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 142, 139, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
}

/* ========================================
   VALUE PROPOSITION with ICONS
   ======================================== */

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 142, 139, 0.08);
    border-radius: 16px;
    color: var(--color-emerald);
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-base);
}

.value-item:hover .value-icon {
    background: rgba(74, 142, 139, 0.12);
    transform: translateY(-4px);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--color-cream);
    border-radius: 16px;
    padding: 0;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 95, 74, 0.12);
    box-shadow: var(--shadow-medium);
}

.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    color: var(--color-emerald);
    margin-bottom: var(--spacing-sm);
}

.feature-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image svg {
    width: 100%;
    height: auto;
    display: block;
}

.feature-image-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
}

.feature-image-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 135, 138, 0.15) 0%, rgba(248, 143, 85, 0.15) 100%);
    pointer-events: none;
}

.feature-image-fullwidth {
    width: 100%;
    overflow: hidden;
}

.feature-image-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-card-content {
    padding: var(--spacing-lg);
}

.feature-icon-large {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 16px;
    color: var(--color-emerald);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-emerald-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-sm);
}

.feature-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.feature-details span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-emerald);
    background: rgba(26, 95, 74, 0.08);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: var(--spacing-xxl) 0;
    background: var(--color-cream);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pricing-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    gap: var(--spacing-lg);
    justify-content: center;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 95, 74, 0.12);
    box-shadow: var(--shadow-medium);
}

.pricing-featured {
    border-color: var(--color-emerald);
    background: linear-gradient(to bottom, var(--color-white), rgba(26, 95, 74, 0.02));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-emerald);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.375rem 1rem;
    border-radius: 20px;
}

.pricing-tier {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.pricing-amount {
    margin-bottom: var(--spacing-xs);
}

.price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    color: var(--color-emerald-dark);
    line-height: 1;
}

.period {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-charcoal-light);
}

.pricing-description {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-md);
}

.pricing-save {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(26, 95, 74, 0.08);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
}

.pricing-features svg {
    color: var(--color-emerald);
    flex-shrink: 0;
}

.pricing-footer {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #F88F55, #E67E3F);
    border-radius: 16px;
    margin-top: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(248, 143, 85, 0.3);
}

.pricing-footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-footer-icon {
    color: #FFFFFF;
    flex-shrink: 0;
}

.pricing-footer p {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFFFFF;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .pricing-footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .pricing-footer p {
        text-align: center;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--color-cream);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(26, 95, 74, 0.08);
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-emerald-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--color-charcoal-light);
}

/* ========================================
   ABOUT CINDY
   ======================================== */

.about-cindy {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(to bottom, var(--color-white), var(--color-cream));
}

.about-cindy-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-cindy-images {
    position: relative;
}

.about-cindy-image-main {
    margin-bottom: var(--spacing-md);
}

.about-cindy-image-main img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: block;
}

.about-cindy-image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.about-cindy-image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    display: block;
    aspect-ratio: 1;
    transition: transform var(--transition-fast);
}

.about-cindy-image-gallery img:hover {
    transform: scale(1.05);
}

.about-cindy-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.about-cindy-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-md);
}

.about-cindy-content em {
    font-style: italic;
    color: var(--color-emerald);
    font-weight: 500;
}

.about-cindy-content a {
    color: var(--color-emerald-dark);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.about-cindy-content a:hover {
    color: var(--color-emerald);
}

.about-cindy-signature {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-emerald);
    margin-top: var(--spacing-lg);
    font-style: italic;
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-emerald-dark), var(--color-emerald));
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.08), transparent);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.015em;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
}

.cta-content .btn-primary-large {
    background: var(--color-white);
    color: var(--color-emerald);
    border-color: var(--color-white);
}

.cta-content .btn-primary-large:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
}

.cta-meta {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: var(--spacing-xxl) 0 calc(var(--spacing-xxl) * 1.5);
    background: var(--color-white);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.faq-item {
    background: var(--color-cream);
    padding: 0;
    border-radius: 16px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(26, 95, 74, 0.12);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: rgba(26, 95, 74, 0.04);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-emerald);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-emerald);
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin: 0;
    opacity: 0.85;
}

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

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-logo .logo-icon {
    color: var(--color-gold);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */

/* Make content visible by default (prevents blank screen if JS fails) */
[data-scroll-reveal] {
    opacity: 1;
    transform: translateY(0);
}

/* Only apply scroll reveal animation if JavaScript is enabled */
.js-enabled [data-scroll-reveal]:not(.revealed) {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.js-enabled [data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
/* ========================================
   MOBILE-FIRST RESPONSIVE IMPROVEMENTS
   Applied using frontend-responsive skill
   ======================================== */

/* MOBILE BASE STYLES (Default - already in main CSS) */

/* Typography - Use relative units for better scaling */
html {
    font-size: 16px; /* Base for rem calculations */
}

/* Touch-friendly button sizes (minimum 44x44px) */
.btn-primary,
.btn-outline,
.btn-text {
    min-height: 2.75rem; /* 44px minimum tap target */
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-large {
    min-height: 3.5rem; /* 56px for primary CTA */
    padding: 1rem 2rem;
}

/* Mobile menu toggle - ensure 44x44px */
.mobile-menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem;
}

/* Navigation improvements */
.nav-links a {
    padding: 0.75rem 1rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
}

/* Responsive spacing adjustments */
:root {
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2.5rem;   /* 40px */
    --spacing-xl: 4rem;     /* 64px */
    --spacing-xxl: 6rem;    /* 96px */
}

/* Container responsive padding */
.container,
.container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero section mobile improvements */
.hero-title {
    font-size: 2.5rem;  /* 40px base mobile */
    line-height: 1.1;
}

.hero-description {
    font-size: 1rem;    /* 16px base */
    line-height: 1.6;
}

/* Section titles mobile */
.section-title {
    font-size: 2rem;    /* 32px base */
    line-height: 1.2;
}

/* Feature cards - stack on mobile */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Pricing cards - stack on mobile */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Testimonials - stack on mobile */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* About section - stack on mobile */
.about-cindy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Footer - stack on mobile */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ========================================
   SMALL TABLETS (min-width: 640px / 40rem)
   ======================================== */

@media (min-width: 40rem) {
    .container,
    .container-narrow {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;  /* 48px */
    }

    .section-title {
        font-size: 2.5rem;  /* 40px */
    }

    /* Two-column layouts start */
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

/* ========================================
   TABLETS (min-width: 768px / 48rem)
   ======================================== */

@media (min-width: 48rem) {
    .container,
    .container-narrow {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-title {
        font-size: 4rem;  /* 64px */
    }

    .section-title {
        font-size: 3rem;  /* 48px */
    }

    .hero-description {
        font-size: 1.125rem;  /* 18px */
    }

    /* Three-column layouts */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Hero side-by-side */
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-visual {
        order: 2;
        height: auto;
    }

    /* Navigation horizontal */
    .mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-cta .btn-text {
        display: inline-flex;
    }

    /* Footer multi-column */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ========================================
   DESKTOPS (min-width: 1024px / 64rem)
   ======================================== */

@media (min-width: 64rem) {
    :root {
        --spacing-lg: 4rem;
        --spacing-xl: 6rem;
        --spacing-xxl: 10rem;
    }

    .hero-title {
        font-size: 5rem;  /* 80px */
    }

    .section-title {
        font-size: 3.5rem;  /* 56px */
    }

    /* Full feature grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    /* About Cindy side-by-side */
    .about-cindy-grid {
        grid-template-columns: 400px 1fr;
        gap: 4rem;
    }

    /* Hero CTA horizontal */
    .hero-cta {
        flex-direction: row;
        gap: 1rem;
    }

    /* Feature showcase alternating layout */
    .feature-showcase-item {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .feature-reverse {
        direction: rtl;
    }

    .feature-reverse > * {
        direction: ltr;
    }
}

/* ========================================
   LARGE DESKTOPS (min-width: 1280px / 80rem)
   ======================================== */

@media (min-width: 80rem) {
    .hero-title {
        font-size: 6rem;  /* 96px */
    }

    .premium-card {
        width: 380px;
        height: 240px;
    }

    .card-stack {
        max-width: 400px;
    }
}

/* ========================================
   EXTRA LARGE (min-width: 1536px / 96rem)
   ======================================== */

@media (min-width: 96rem) {
    .container {
        max-width: 1400px;
    }

    .container-narrow {
        max-width: 1200px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .mobile-menu-toggle,
    .grain-overlay,
    .hero-background,
    .btn-primary,
    .btn-primary-large,
    .btn-outline {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
/* ========================================
   MOBILE FIXES
   1. FAQ toggle functionality on mobile
   2. About Cindy image placement after text on mobile
   3. Hamburger menu visibility
   ======================================== */

/* FIX 1: FAQ Mobile Improvements */
/* Make FAQ questions more touch-friendly and ensure proper toggle */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
    min-height: 2.75rem; /* 44px touch target */
    -webkit-tap-highlight-color: transparent;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-emerald);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-emerald);
    transition: transform var(--transition-base);
    margin-top: 0.25rem;
}

/* Improved FAQ answer animations */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px; /* Increased for mobile text wrapping */
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin: 0;
    opacity: 0.85;
}

/* FIX 2: Hamburger Menu Visibility */
/* Show hamburger on mobile, hide navigation links */
.mobile-menu-toggle {
    display: flex !important; /* Force display on mobile */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition-fast);
    display: block;
}

/* Animated hamburger to X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Hide nav links on mobile by default */
.nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-links.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.nav-links li {
    width: 100%;
    text-align: center;
}

.nav-links a {
    display: block;
    padding: 1rem;
    min-height: 2.75rem;
    font-size: 1.25rem;
}

/* Nav CTA visibility handled in later media queries */

/* FIX 3: About Cindy - Images After Text on Mobile */
.about-cindy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* On mobile, content comes first, images second */
.about-cindy-content {
    order: 1;
}

.about-cindy-images {
    order: 2;
}

/* Mobile-specific adjustments */
@media (max-width: 47.9375rem) {
    /* Ensure FAQ grid is single column on mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Improve FAQ item spacing on mobile */
    .faq-item {
        margin-bottom: 0;
    }

    /* About Cindy images responsive sizing */
    .about-cindy-image-main img {
        max-width: 100%;
        height: auto;
    }

    .about-cindy-image-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}
/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Ensure navbar stays on top when menu is open */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Add padding to body so content isn't hidden behind fixed navbar */
body {
    padding-top: 0;
}

.hero {
    margin-top: 0;
}
/* Update nav-cta visibility for mobile */
/* Show nav CTA on desktop, adjust for mobile */
.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* On mobile, adjust the layout */
@media (max-width: 47.9375rem) {
    /* Keep nav-cta visible but adjust button sizing */
    .nav-cta {
        display: flex;
        flex-shrink: 0;
    }

    .nav-cta .btn-text {
        display: none; /* Hide "Sign In" text on very small screens */
    }

    .nav-cta .btn-primary {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        white-space: nowrap;
    }

    /* Adjust nav-content to fit everything */
    .nav-content {
        gap: 0.75rem;
    }

    /* Make logo slightly smaller on mobile */
    .logo-full {
        height: 60px;
    }
}

@media (max-width: 360px) {
    /* On very small screens, hide Sign In button */
    .nav-cta .btn-text {
        display: none;
    }

    .nav-cta .btn-primary {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .logo-full {
        height: 50px;
    }
}
