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

    :root {
        --black: #0a0a0a;
        --black-soft: #1a1a1a;
        --black-lighter: #2a2a2a;
        --white: #ffffff;
        --white-soft: #f5f5f5;
        --accent: #d4af37;
        --accent-dark: #b8941f;
        --accent-light: #e8c968;
        --text-primary: #0a0a0a;
        --text-secondary: #666666;
        --text-muted: #999999;
        --border: rgba(0, 0, 0, 0.1);
        --shadow: rgba(0, 0, 0, 0.1);

        /* ZMĚNA: Vše nyní používá font Fredoka jako logo */
        --font-display: 'Fredoka', sans-serif;
        --font-body: 'Fredoka', sans-serif;

        --ease: cubic-bezier(0.23, 1, 0.32, 1);
        --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    [data-theme="dark"] {
        --black: #ffffff;
        --black-soft: #f5f5f5;
        --black-lighter: #e5e5e5;
        --white: #0a0a0a;
        --white-soft: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --text-muted: #999999;
        --border: rgba(255, 255, 255, 0.1);
        --shadow: rgba(0, 0, 0, 0.5);
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        background: var(--white);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        transition: background 0.4s var(--ease), color 0.4s;
    }

    /* Grain Effect */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 10000;
        opacity: 0.5;
    }
    .contact-info.reveal {
        display: flex;
        flex-direction: column;
    }

    ::selection {
        background: var(--accent);
        color: var(--white);
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--white-soft);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 5px;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1.5rem 3rem;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        transition: all 0.4s var(--ease);
    }

    [data-theme="dark"] nav {
        background: rgba(10, 10, 10, 0.8);
    }

    nav.scrolled {
        padding: 1rem 3rem;
        box-shadow: 0 4px 30px var(--shadow);
    }

    nav.hidden {
        transform: translateY(-100%);
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
    }

    .logo-img {
        height: 50px;
        width: auto;
        transition: transform 0.3s var(--ease);
    }

    .logo-container:hover .logo-img {
        transform: scale(1.05) rotate(-2deg);
    }

    .logo-text {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.02em;
    }

    .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        font-family: var(--font-body);
        font-size: 1.05rem; /* Mírně zvětšeno pro Fredoka font */
        font-weight: 500;
        color: var(--text-secondary);
        text-decoration: none;
        position: relative;
        transition: color 0.3s;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
        transition: width 0.3s var(--ease);
    }

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

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

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .theme-btn, .lang-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid var(--border);
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s var(--ease);
        color: var(--text-primary);
    }

    .lang-btn {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.85rem;
    }

    .theme-btn:hover, .lang-btn:hover {
        border-color: var(--accent);
        transform: rotate(180deg) scale(1.1);
        background: var(--accent);
        color: var(--white);
    }

    .lang-btn:hover {
        transform: scale(1.1);
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 2.5px;
        background: var(--text-primary);
        border-radius: 3px;
        transition: all 0.3s var(--ease);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 999;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 30px var(--shadow);
    }

    [data-theme="dark"] .mobile-menu {
        background: var(--white-soft);
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .mobile-menu a {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        display: block;
        transition: all 0.3s;
    }

    .mobile-menu a:hover {
        color: var(--accent);
        transform: translateX(10px);
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 998;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 8rem 2rem 4rem;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        opacity: 0.08;
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(50px, -50px) rotate(120deg); }
        66% { transform: translate(-30px, 30px) rotate(240deg); }
    }

    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
    }

    .hero-content {
        opacity: 0;
        animation: slideInLeft 1s 0.2s var(--ease) forwards;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.6rem 1.5rem;
        background: var(--accent);
        color: var(--white);
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 2rem;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }

    .badge-dot {
        width: 8px;
        height: 8px;
        background: var(--white);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.8; }
    }

    .hero h1 {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 7vw, 5.5rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
    }

    .hero h1 .accent {
        color: var(--accent);
        position: relative;
        display: inline-block;
    }

    .hero h1 .accent::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 12px;
        background: var(--accent);
        opacity: 0.2;
        z-index: -1;
        border-radius: 4px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        max-width: 550px;
        font-weight: 400;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn {
        padding: 1.1rem 2.5rem;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        cursor: pointer;
        border: none;
        transition: all 0.3s var(--ease);
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: var(--accent);
        color: var(--white);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        background: var(--accent-dark);
        border-radius: 50%;
        transition: all 0.5s var(--ease);
    }

    .btn-primary:hover::before {
        width: 300%;
        height: 300%;
    }

    .btn-primary span {
        position: relative;
        z-index: 1;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    }

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

    .btn-secondary:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-3px);
    }

    /* Hero Visual */
    .hero-visual {
        opacity: 0;
        animation: slideInRight 1s 0.4s var(--ease) forwards;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .product-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-card {
        aspect-ratio: 3/4;
        background: var(--white-soft);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        position: relative;
        overflow: hidden;
        border: 2px solid var(--border);
        transition: all 0.4s var(--ease);
        cursor: pointer;
    }

    .product-card i {
        font-size: 4rem;
        color: var(--text-secondary);
        transition: all 0.4s var(--ease);
    }

    .product-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .product-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    }

    .product-card:hover i {
        color: var(--accent);
        transform: scale(1.1);
    }

    .product-card:hover::before {
        opacity: 0.1;
    }

    .product-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 600;
        transform: translateY(100%);
        transition: transform 0.4s var(--ease);
        z-index: 2;
    }

    .product-card:hover .product-label {
        transform: translateY(0);
    }

    .product-card:nth-child(1) {
        animation: cardFloat1 6s ease-in-out infinite;
    }

    .product-card:nth-child(2) {
        animation: cardFloat2 7s ease-in-out 0.5s infinite;
    }

    .product-card:nth-child(3) {
        animation: cardFloat3 8s ease-in-out 1s infinite;
    }

    .product-card:nth-child(4) {
        animation: cardFloat1 6.5s ease-in-out 1.5s infinite;
    }

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

    @keyframes cardFloat2 {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-18px); }
    }

    @keyframes cardFloat3 {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    /* Section Styles */
    section {
        padding: 6rem 2rem;
        position: relative;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-label {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 600;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }

    .section-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
        color: var(--text-secondary);
        line-height: 1.8;
    }

    /* Services Grid */
    .services-container {
        max-width: 1400px;
        margin: 0 auto;
    }

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

    .service-card {
        padding: 2.5rem;
        background: var(--white-soft);
        border-radius: 20px;
        border: 2px solid var(--border);
        position: relative;
        overflow: hidden;
        transition: all 0.4s var(--ease);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--accent-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s var(--ease);
    }

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

    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 20px 60px var(--shadow);
    }

    .service-number {
        font-family: var(--font-display);
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--accent);
        opacity: 0.15;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        line-height: 1;
    }

    .service-card h3 {
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .service-card p {
        color: var(--text-secondary);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Process Timeline */
    .process-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .timeline {
        position: relative;
        padding-left: 80px;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--accent), var(--accent-light));
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
    }

    .timeline-dot {
        position: absolute;
        left: -80px;
        top: 0;
        width: 60px;
        height: 60px;
        background: var(--white);
        border: 4px solid var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent);
        transition: all 0.3s var(--ease);
        z-index: 1;
    }

    .timeline-item:hover .timeline-dot {
        background: var(--accent);
        color: var(--white);
        transform: scale(1.15);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    }

    .timeline-content {
        background: var(--white-soft);
        padding: 2rem;
        border-radius: 20px;
        border: 2px solid var(--border);
        transition: all 0.3s var(--ease);
    }

    .timeline-item:hover .timeline-content {
        border-color: var(--accent);
        box-shadow: 0 10px 40px var(--shadow);
    }

    .timeline-content h3 {
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 0.8rem;
    }

    .timeline-content p {
        color: var(--text-secondary);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Gallery */
    .gallery-wrapper {
        position: relative;
        overflow: hidden;
        padding: 2rem 0;
    }

    .gallery-track {
        display: flex;
        gap: 2rem;
        animation: scrollGallery 40s linear infinite;
    }

    .gallery-track:hover {
        animation-play-state: paused;
    }

    @keyframes scrollGallery {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .gallery-item {
        flex-shrink: 0;
        width: 280px;
        aspect-ratio: 3/4;
        background: var(--white-soft);
        border-radius: 20px;
        border: 2px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        transition: all 0.3s var(--ease);
        cursor: pointer;
    }

    .gallery-item i {
        font-size: 4rem;
        color: var(--text-secondary);
        transition: all 0.3s var(--ease);
    }

    .gallery-item:hover {
        transform: scale(1.05);
        border-color: var(--accent);
        box-shadow: 0 15px 50px var(--shadow);
    }

    .gallery-item:hover i {
        color: var(--accent);
    }

    /* Contact Section */
    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info h3 {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
    }

    .contact-info p {
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        background: var(--accent);
        color: var(--white);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        transition: all 0.3s var(--ease);
    }

    .contact-item:hover .contact-icon {
        transform: rotate(10deg) scale(1.1);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

    .contact-text small {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: 0.1em;
        margin-bottom: 0.3rem;
    }

    .contact-text a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        font-size: 1.1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem 1.3rem;
        background: var(--white-soft);
        border: 2px solid var(--border);
        border-radius: 12px;
        color: var(--text-primary);
        font-size: 1.05rem;
        transition: all 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 130px;
    }

    /* Footer */
    footer {
        background: var(--black);
        color: var(--white);
        padding: 4rem 2rem 2rem;
        border-top: 3px solid var(--accent);
    }

    [data-theme="dark"] footer {
        background: var(--black-soft);
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
        margin-bottom: 3rem;
    }

    .footer-brand h3 {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .footer-brand p {
        color: var(--accent);
        line-height: 1.8;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        background: var(--white);
        color: var(--black);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.3rem;
        transition: all 0.3s var(--ease);
    }

    .social-link:hover {
        background: var(--accent);
        color: var(--white);
        transform: translateY(-5px);
    }

    .footer-links h4 {
        font-family: var(--font-display);
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .footer-links ul {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: var(--accent);
        text-decoration: none;
        transition: color 0.3s;
        font-size: 1rem;
    }

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

    .footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid var(--accent);
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--accent);
        font-size: 0.95rem;
    }

    .footer-bottom a {
        color: var(--accent);
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-bottom a:hover {
        color: var(--accent);
    }

    /* Scroll Reveal */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s var(--ease);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-container {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        nav {
            padding: 1rem 1.5rem;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .hero {
            padding: 6rem 1.5rem 3rem;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        section {
            padding: 4rem 1.5rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .product-showcase {
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .timeline {
            padding-left: 60px;
        }

        .timeline-dot {
            width: 50px;
            height: 50px;
            left: -60px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .logo-img {
            height: 40px;
        }

        .logo-text {
            font-size: 1.4rem;
        }

        .hero-badge {
            font-size: 0.8rem;
            padding: 0.5rem 1.2rem;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            text-align: center;
        }

        .product-showcase {
            grid-template-columns: 1fr;
        }
    }
    #contact {
        padding: 4rem 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    #home {
        padding: 4rem 1.5rem;
        margin-top: 40px;
    }
    .footer-container {
        padding: 4rem 1.5rem;
    }