@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg-deep: #0e051a;
    --color-bg-surface: #1a0b2e;
    --color-bg-card: #25123e;
    --color-primary: #ff2a85;
    --color-primary-glow: rgba(255, 42, 133, 0.4);
    --color-secondary: #00f0ff;
    --color-secondary-glow: rgba(0, 240, 255, 0.3);
    --color-accent: #ffd200;
    --color-text-main: #f3effa;
    --color-text-muted: #bdaec6;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    --container-max-width: 1300px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

/* Layout Containers */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Mandatory Top Disclaimer Bar */
.disclaimer-bar {
    background: linear-gradient(90deg, #ff2a85 0%, #a100ff 50%, #00f0ff 100%);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 15px rgba(255, 42, 133, 0.3);
}

/* Header */
.header {
    background-color: rgba(14, 5, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 42, 133, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), #d81b60);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    box-shadow: 0 4px 15px var(--color-primary-glow);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 42, 133, 0.6);
}

/* Burger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 42, 133, 0.15), transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(0, 240, 255, 0.1), transparent 40%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 42, 133, 0.1);
    border: 1px solid rgba(255, 42, 133, 0.3);
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 40%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #aa00ff 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: var(--border-radius-full);
    box-shadow: 0 8px 25px var(--color-primary-glow);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 42, 133, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 25px var(--color-secondary-glow);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-candy-sphere {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 42, 133, 0.35) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse 6s infinite alternate;
}

.hero-main-image {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 42, 133, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-1deg);
    transition: var(--transition-smooth);
}

.hero-main-image:hover {
    transform: rotate(1deg) scale(1.02);
}

/* Floating Elements Animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* Game Framework Container */
.game-section {
    padding: 100px 0;
    background-color: var(--color-bg-surface);
    position: relative;
}

.game-cabinet {
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 42, 133, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%), var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    border: 4px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 50px rgba(0, 240, 255, 0.15);
    padding: 24px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.game-cabinet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.game-frame-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    background: #000;
}

.game-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.game-info-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.game-status-pill {
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Feature Cards Grid */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 42, 133, 0.2);
    box-shadow: 0 15px 35px rgba(255, 42, 133, 0.08);
}

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

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 42, 133, 0.2), rgba(0, 240, 255, 0.2));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: var(--color-primary);
}

.feature-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card-description {
    color: var(--color-text-muted);
}

/* User Journey Section */
.journey-section {
    background-color: var(--color-bg-surface);
    padding: 100px 0;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.journey-steps::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 42, 133, 0.1), rgba(0, 240, 255, 0.1));
    z-index: 1;
}

.journey-step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.journey-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-deep);
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 42, 133, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 24px auto;
}

.journey-step-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.journey-step-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 42, 133, 0.15) 0%, rgba(0, 240, 255, 0.05) 100%);
    border-top: 1px solid rgba(255, 42, 133, 0.1);
    border-bottom: 1px solid rgba(255, 42, 133, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(255, 42, 133, 0.3);
}

.faq-item.active .faq-trigger {
    color: var(--color-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    padding-bottom: 24px;
    max-height: 200px; /* arbitrary large enough value */
}

/* Blog Preview Section */
.blog-preview-section {
    padding: 100px 0;
    background-color: var(--color-bg-surface);
}

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

.blog-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition-smooth);
}

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

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.blog-card-link {
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card-link:hover {
    color: var(--color-secondary);
}

/* Contact CTA Banner Section */
.cta-banner-section {
    padding: 80px 0;
}

.cta-banner-card {
    background: linear-gradient(135deg, rgba(255, 42, 133, 0.25) 0%, rgba(0, 240, 255, 0.15) 100%), var(--color-bg-card);
    border: 1px solid rgba(255, 42, 133, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-card h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.cta-banner-card p {
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 32px auto;
    font-size: 1.1rem;
}

/* Footer (Mandatory, No Socials) */
.footer {
    background-color: #080311;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 32px 0;
    color: var(--color-text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h4 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact-info span {
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-disclaimer-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 24px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    line-height: 1.7;
    text-align: center;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 400px;
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 42, 133, 0.15);
    border-radius: var(--border-radius-md);
    padding: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
}

.cookie-banner-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn-accept {
    flex: 1;
    background: linear-gradient(135deg, var(--color-secondary), #00b0ff);
    color: #000;
    border: none;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.cookie-btn-accept:hover {
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Forms */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-control {
    width: 100%;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 42, 133, 0.2);
    background-color: rgba(255,255,255,0.05);
}

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

/* Page Headers (Inside layouts) */
.page-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 11, 46, 0.8) 0%, var(--color-bg-deep) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages Basic Styling (Privacy, Terms, Cookies) */
.content-section {
    padding: 80px 0;
}

.content-block {
    background-color: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-block ul {
    margin-bottom: 24px;
    padding-left: 24px;
    color: var(--color-text-muted);
}

.content-block li {
    margin-bottom: 8px;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-grid, .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .grid-3, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .journey-steps::after {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-deep);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 1000;
        padding: 40px;
    }
    .nav-menu.active {
        left: 0;
    }
    .grid-3, .blog-grid, .stats-grid, .journey-steps {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .content-block {
        padding: 24px;
    }
}