/* Beautiful Light Theme for Sekokuva - Professional Design */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    /* Beautiful light colors */
    --primary-text: #1a202c;
    --secondary-text: #4a5568;
    --muted-text: #718096;
    --accent-orange: #FF6F1A;
    --accent-hover: #e55a0b;
    
    /* Light backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-headings: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-headings);
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--bg-primary);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CookieHub consent popup fixes */
#cookiehub-root,
#cookiehub,
[data-cookiehub],
.cookiehub,
.cookie-banner,
.consent-popup {
    z-index: 10000 !important;
    position: fixed !important;
}

#cookiehub-container,
.cookiehub-container {
    z-index: 10000 !important;
    position: fixed !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
}

/* Alternative positioning for bottom/top positioned consent banners */
.consent-bottom {
    bottom: 20px !important;
    top: auto !important;
    transform: translateX(-50%) !important;
}

.consent-top {
    top: 20px !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-text);
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 111, 26, 0.3);
}

.btn--secondary {
    background: var(--bg-card);
    color: var(--primary-text);
    border: 2px solid var(--border-color);
}

.btn--secondary:hover {
    border-color: var(--accent-orange);
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn__icon {
    width: 20px;
    height: 20px;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo {
    width: 40px;
    height: 40px;
}

.nav__title {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-text);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: var(--secondary-text);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav__link:hover {
    color: var(--accent-orange);
}

.nav__link--cta {
    background: var(--accent-orange);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav__link--cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-text);
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    width: 100%;
    overflow: hidden;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero__title {
    margin-bottom: 1.5rem;
    color: var(--primary-text);
    line-height: 1.1;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--primary-text);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Showcase Gallery */
.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
}

.showcase-item {
    text-align: center;
}

.showcase-image,
.showcase-video {
    width: 100%;
    height: 200px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.showcase-image:hover,
.showcase-video:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.sample-image,
.sample-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.sample-video {
    cursor: pointer;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-text);
}

.placeholder-icon {
    font-size: 2.5rem;
}

.placeholder-text {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-play-button {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 111, 26, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 111, 26, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.video-play-button:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.showcase-label {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-text);
}

.device-mockup {
    width: 300px;
    height: 600px;
    background: var(--primary-text);
    border-radius: 30px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--primary-text);
    color: white;
    padding: 1rem;
    text-align: center;
}

.app-title {
    font-weight: 600;
    font-size: 1rem;
}

.app-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prompt-box {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1rem;
    border: 2px dashed var(--border-color);
}

.prompt-text {
    font-size: 0.875rem;
    color: var(--secondary-text);
    font-style: italic;
}

.generated-image {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    color: var(--muted-text);
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.app-controls {
    display: flex;
    gap: 0.5rem;
}

.control-button {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--secondary-text);
}

.control-button.active {
    background: var(--accent-orange);
    color: white;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card--1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 30%;
    left: 0%;
    animation-delay: 2s;
}

.floating-card--3 {
    top: 60%;
    right: -10%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 500;
    color: var(--primary-text);
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
    width: 100%;
    overflow: hidden;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card__icon svg {
    width: 30px;
    height: 30px;
}

.feature-card__title {
    color: var(--primary-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card__description {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card__list {
    list-style: none;
}

.feature-card__list li {
    padding: 0.5rem 0;
    color: var(--secondary-text);
    position: relative;
    padding-left: 1.5rem;
}

.feature-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-primary);
    width: 100%;
    overflow: hidden;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 1024px) {
    .about__content {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .about__description {
        text-align: left;
    }
    
    .about__actions {
        justify-content: center;
    }
}

.about__title {
    color: var(--primary-text);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.about__description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--secondary-text);
    word-wrap: break-word;
    hyphens: auto;
}

.about__actions {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.stat__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: var(--font-headings);
}

.stat__label {
    color: var(--secondary-text);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.fun-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fun-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.fun-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.fun-icon {
    font-size: 2rem;
}

/* Notify Section */
.notify {
    padding: 120px 0;
    background: var(--primary-text);
    color: white;
}

.notify__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.notify__title {
    color: white;
    margin-bottom: 1.5rem;
}

.notify__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.notify__form {
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.15);
}

.form-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.notify__benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit__icon {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
}

/* Footer */
.footer {
    background: var(--primary-text);
    color: white;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer__membership {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.membership-logo {
    height: 120px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.membership-logo:hover {
    opacity: 1;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer__company-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer__list a:hover {
    color: var(--accent-orange);
}

.footer__list span {
    color: rgba(255, 255, 255, 0.5);
}

.footer__company {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 280px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-name {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    white-space: nowrap;
}

.company-address div,
.company-details div {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.company-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.company-details a:hover {
    color: var(--accent-orange);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Form states */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-success {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.form-error {
    background: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.btn--loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn--loading .btn-text {
    opacity: 0;
}

.btn--loading .btn-spinner {
    display: flex !important;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-top: none;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 1.5rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav__menu--active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__toggle {
        display: flex;
        position: relative;
        z-index: 1000;
    }
    
    .nav__toggle--active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle--active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle--active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav__brand {
        flex-shrink: 0;
        max-width: calc(100vw - 100px);
    }
    
    .nav__title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav__link {
        text-align: center;
        padding: 0.5rem 0;
        font-size: 1.125rem;
    }
    
    .nav__link--cta {
        margin-top: 1rem;
        justify-self: center;
        align-self: center;
        padding: 1rem 2rem !important;
        font-size: 1.125rem;
        border-radius: 12px;
        min-width: 140px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .about__content {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .about__description {
        text-align: left;
        font-size: 1.125rem;
    }
    
    .about__actions {
        justify-content: center;
    }
    
    .about__actions .btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        min-width: 140px;
    }
    
    .hero__content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem;
        width: 100%;
        max-width: 100%;
    }
    
    .showcase-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .showcase-image,
    .showcase-video {
        height: 150px;
    }
    
    .about__content {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
        max-width: 100%;
        width: 100%;
        overflow: visible;
    }
    
    .about__description {
        font-size: 1.125rem;
        text-align: left;
    }
    
    .about__actions {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .about__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .fun-highlights {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .notify__benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer__company {
        grid-column: 1 / -1;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav {
        padding: 0.75rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .nav__logo {
        width: 32px;
        height: 32px;
    }
    
    .nav__title {
        font-size: 1.125rem;
    }
    
    .hero {
        padding: 120px 0 60px;
        width: 100%;
    }
    
    .hero__content {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .about__content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .about__actions {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .about__stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .device-mockup {
        width: 250px;
        height: 500px;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .floating-card--1,
    .floating-card--2,
    .floating-card--3 {
        display: none;
    }
}