/* ========================================
   GolfHub.it Landing Page - Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --success: #10b981;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gradient-primary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0d9488 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-icon {
    height: 4rem;
    width: auto;
    display: block;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--gray-600);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-size: 0.938rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: var(--radius);
}

.nav-dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--primary-light);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Laptop Mockup - Updated for 1880x900 screenshots */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.laptop-mockup.light .laptop-screen {
    background: var(--white);
    border-color: var(--gray-300);
}

.laptop-mockup.light .laptop-base {
    background: linear-gradient(to bottom, var(--gray-200), var(--gray-300));
}

.laptop-mockup.light .laptop-base::before {
    background: var(--gray-400);
}

.laptop-screen {
    background: var(--gray-800);
    border-radius: 12px 12px 0 0;
    padding: 8px;
    border: 3px solid var(--gray-700);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1880 / 900;
}

.screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    display: block;
}

.screenshot-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    border-radius: 6px;
    color: var(--gray-400);
}

.screenshot-placeholder.light {
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
}

.screenshot-placeholder i {
    font-size: 3rem;
}

.screenshot-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--gray-200);
    border-radius: var(--radius);
}

.laptop-base {
    height: 16px;
    background: linear-gradient(to bottom, var(--gray-600), var(--gray-700));
    border-radius: 0 0 8px 8px;
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 6px;
    background: var(--gray-500);
    border-radius: 3px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Row Layout */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse .feature-text {
    order: 2;
}

.feature-row.reverse .feature-mockup {
    order: 1;
}

.feature-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.25rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.938rem;
    color: var(--gray-600);
}

.feature-list li i {
    color: var(--success);
    font-size: 1rem;
}

.feature-mockup {
    display: flex;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}

/* Gare Section */
.gare-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.gare-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.gare-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}

.gare-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.gare-feature p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.customization-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
}

.customization-badge i {
    font-size: 1.25rem;
    color: var(--primary);
}

.customization-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.customization-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.customization-badge.light i,
.customization-badge.light span {
    color: var(--white);
}

/* Campionati Section */
.campionati-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
}

.campionati-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.campionati-text {
    color: var(--white);
}

.campionati-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.campionati-text > p {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.campionati-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.campionato-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.campionato-feature > i {
    font-size: 1.5rem;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.campionato-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.campionato-feature p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.campionati-mockup {
    display: flex;
    justify-content: center;
}

/* CMS Section */
.cms-section {
    padding: 6rem 0;
    background: var(--white);
}

.cms-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.cms-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.cms-feature:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.cms-feature i {
    font-size: 1.25rem;
    color: var(--primary);
}

/* Dual Laptop Mockup Layout */
.dual-laptop-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    gap: 1rem;
}

.dual-laptop-mockup .laptop-mockup {
    position: absolute;
}

.dual-laptop-mockup .laptop-primary {
    position: relative;
    z-index: 2;
    transform: translateX(-60px) translateY(30px) rotate(-3deg);
    max-width: 480px;
}

.dual-laptop-mockup .laptop-secondary {
    position: absolute;
    z-index: 1;
    transform: translateX(70px) translateY(-25px) rotate(2deg) scale(0.88);
    max-width: 480px;
}

/* Users Section */
.users-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.users-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.user-card-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all 0.2s ease;
}

.user-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.user-card-mini.admin {
    border-color: var(--primary);
}

.user-icon-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.user-card-mini.admin .user-icon-mini {
    background: var(--gradient-primary);
    color: var(--white);
}

.user-card-mini.user .user-icon-mini {
    background: var(--gray-100);
    color: var(--gray-600);
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.user-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Security Section */
.security-section {
    padding: 6rem 0;
    background: var(--white);
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.security-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.security-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.security-feature p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Tech Section */
.tech-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tech-icon {
    font-size: 2.5rem;
}

.tech-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features i {
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--gray-900);
    padding: 4rem 0 2rem;
    color: var(--gray-400);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.938rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-tagline {
    color: var(--primary-light);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-row.reverse .feature-text,
    .feature-row.reverse .feature-mockup {
        order: unset;
    }

    .campionati-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .campionati-text {
        text-align: center;
    }

    .campionati-features {
        max-width: 500px;
        margin: 0 auto 2rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 8rem 0 6rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .laptop-mockup {
        max-width: 100%;
    }

    .cms-features-grid {
        grid-template-columns: 1fr;
    }

    .security-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Dual laptop mobile layout */
    .dual-laptop-mockup {
        min-height: 350px;
    }

    .dual-laptop-mockup .laptop-primary {
        transform: translateX(-25px) translateY(20px) rotate(-2deg);
        max-width: 300px;
    }

    .dual-laptop-mockup .laptop-secondary {
        transform: translateX(35px) translateY(-15px) rotate(1deg) scale(0.82);
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Menu Active State */
.nav-links.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    gap: 0.5rem;
}

.nav-links.active a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.nav-links.active a:hover {
    background: #f1f5f9;
}

/* Mobile Dropdown */
.nav-links.active .nav-dropdown {
    display: flex;
    flex-direction: column;
}

.nav-links.active .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
    box-shadow: none;
    background: var(--gray-50);
    padding: 0.5rem;
}

.nav-links.active .nav-dropdown-toggle {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.nav-links.active .nav-dropdown-toggle:hover {
    background: #f1f5f9;
}

/* Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-900);
    border-color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.screenshot {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.screenshot:hover {
    transform: scale(1.02);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .image-modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}
