/* XenGolf Nature/Golf-Inspired Design
   Concept C: Organic premium - natural, calming, golf course aesthetic
*/

/* Alpine.js cloak to prevent FOUC */
[x-cloak] {
    display: none !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary - Natural greens */
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --primary-lighter: #34d399;

    /* Secondary - Earth tones */
    --secondary: #92400e;
    --secondary-light: #d97706;

    /* Accent - Sky & water */
    --accent-sky: #0ea5e9;
    --accent-sand: #f5f5dc;

    /* Neutrals - Natural */
    --white: #ffffff;
    --cream: #fdfcf9;
    --cream-dark: #f7f5f0;
    --gray-light: #e8e6e1;
    --gray: #6b7280;
    --gray-dark: #374151;
    --charcoal: #1f2937;
    --dark: #111827;

    /* Gradients */
    --gradient-fairway: linear-gradient(135deg, #047857 0%, #10b981 50%, #34d399 100%);
    --gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #92400e 100%);
    --gradient-natural: linear-gradient(180deg, #fdfcf9 0%, #e8e6e1 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(4, 120, 87, 0.7) 0%, rgba(31, 41, 55, 0.85) 100%);

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(5, 150, 105, 0.08);
    --shadow-lg: 0 10px 25px rgba(5, 150, 105, 0.12);
    --shadow-xl: 0 20px 40px rgba(5, 150, 105, 0.15);

    /* Radius - Organic feel */
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--charcoal);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

i {
    margin-right: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation - Organic feel */
.nav {
    background: rgba(253, 252, 249, 0.95);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fairway);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.mobile-menu-toggle:hover {
    background: var(--gray-light);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-light);
    background: var(--cream);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    color: var(--gray-dark);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.mobile-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Buttons - Organic pill shapes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-fairway);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-block {
    width: 100%;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero Section - Nature inspired */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    width: 100%;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    background-image: url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    will-change: transform;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero-overlay);
    z-index: -1;
}

/* Organic shape decorations */
.hero::before {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--cream);
    border-radius: 100% 100% 0 0;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Blog Highlight in Hero */
.blog-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    margin-bottom: 1.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.blog-highlight:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.blog-highlight-label {
    background: var(--primary-light);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-highlight-title {
    color: white;
    font-weight: 500;
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-highlight-arrow {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-highlight:hover .blog-highlight-arrow {
    transform: translateX(4px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.stat span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--cream-dark);
    position: relative;
}

/* Blob background decoration */
.features::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient-fairway);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.03;
    filter: blur(60px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-fairway);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-fairway);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Benefits Section - Timeline */
.benefits {
    padding: 6rem 0 2rem;
    background: var(--white);
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-row.reverse {
    transform: translateX(50px);
}

.benefit-row.animate-in {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 768px) {
    .benefit-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.benefit-row.reverse > * {
    direction: ltr;
}

@media (prefers-reduced-motion: reduce) {
    .benefit-row {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.benefit-image > div {
    padding: 5rem 3rem;
    border-radius: var(--radius-xl);
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.benefit-image h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.benefit-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 0.75rem 0;
    color: var(--charcoal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-list li i {
    font-size: 1.125rem;
}

/* Partner Slots */
.partner-slots-indicator {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 400px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.slots-taken {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.slots-visual {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}

.slot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}

.slot.filled {
    background: var(--gradient-fairway);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.slot.filled::after {
    content: '\2713';
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.slot.available {
    background: var(--cream);
    border: 2px dashed var(--gray);
}

/* Blog Preview Section */
.blog-preview {
    padding: 6rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--cream);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}

.blog-card-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.blog-card-meta time {
    font-weight: 500;
}

.read-time {
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    border: 1px solid var(--gray-light);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

.blog-card-link i {
    margin-left: 0.25rem;
    margin-right: 0;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-fairway);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.cta-note-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--charcoal);
    color: var(--white);
}

.footer-content {
    padding: 0;
}

/* Footer Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-newsletter-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-button {
    padding: 0.875rem 1.75rem;
    background: var(--gradient-fairway);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.footer-newsletter-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}

.footer-newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer-newsletter-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--primary-light);
    font-weight: 500;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius);
    margin-top: 1rem;
}

.footer-newsletter-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-info p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-lighter);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Urgency Notice */
.urgency-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid var(--secondary-light);
    padding: 1.25rem 1.5rem;
    margin: 2rem auto;
    border-radius: var(--radius-lg);
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-notice i {
    font-size: 1.5rem;
    color: var(--secondary-light);
}

.urgency-notice p {
    margin: 0;
    color: var(--secondary);
}

/* Form Subtitle */
.form-subtitle {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    padding: 0.75rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
        min-height: 100vh;
    }

    .parallax-bg {
        background-attachment: scroll;
        top: 0;
        bottom: 0;
    }

    .hero::before {
        height: 100px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-text h1 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .blog-highlight {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .blog-highlight-title {
        max-width: 200px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 2rem;
    }

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

    .hero-stats {
        gap: 1rem;
        padding: 1rem 1.5rem;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }

    .hero-stats .stat {
        flex: 1;
        min-width: 90px;
    }

    .stat strong {
        font-size: 1.125rem;
    }

    .stat span {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .features,
    .benefits,
    .blog-preview {
        padding: 4rem 0;
    }

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

    .feature-card {
        padding: 2rem;
    }

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

    .benefit-image > div {
        padding: 3rem 1.5rem;
    }

    .cta-note {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-newsletter {
        padding: 1.5rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-input {
        width: 100%;
        min-width: unset;
    }

    .footer-newsletter-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.625rem;
    }

    .blog-highlight {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .blog-highlight-title {
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-stats .stat {
        width: 100%;
        padding: 0.75rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--radius);
    }

    .slots-visual .slot {
        width: 38px;
        height: 38px;
    }

    .urgency-notice {
        flex-direction: column;
        text-align: center;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Text utility colors */
.text-success { color: var(--primary) !important; }
.text-primary { color: var(--accent-sky) !important; }
.text-info { color: var(--accent-sky) !important; }
.text-warning { color: var(--secondary-light) !important; }
