:root {
    --brand-teal: #28c1d1;
    --brand-blue: #60a5fa;
    --warning-yellow: #facc15;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(40, 193, 209, 0.2);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-teal);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--brand-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-teal);
    transition: width 0.3s;
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.chaos-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--brand-teal);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--brand-blue);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--warning-yellow);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--brand-teal);
    border-radius: 50%;
    top: 40%;
    right: 30%;
    animation-delay: -15s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(40, 193, 209, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(40, 193, 209, 0.2);
    border: 1px solid var(--brand-teal);
    border-radius: 50px;
    color: var(--brand-teal);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chaos-text {
    color: var(--brand-teal);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--brand-teal);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #20a5b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 193, 209, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--brand-teal);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-label {
    display: inline-block;
    color: var(--brand-teal);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.story-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-teal);
    box-shadow: 0 20px 40px rgba(40, 193, 209, 0.1);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-teal);
}

.story-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.story-vision {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.vision-text strong {
    color: var(--brand-teal);
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.3);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.product-showcase.product-reverse .product-mockup {
    order: 2;
}

.product-showcase.product-reverse .product-features {
    order: 1;
}

.product-mockup {
    position: relative;
}

.mockup-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.mockup-container:hover {
    transform: translateY(-4px);
    border-color: var(--brand-teal);
    box-shadow: 0 20px 40px rgba(40, 193, 209, 0.15);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: var(--warning-yellow);
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-teal);
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.sneak-peek-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--warning-yellow);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.4);
    animation: pulse 2s infinite;
}

.sneak-peek-badge-purple {
    background: #a855f7;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.sneak-peek-badge-live {
    background: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.sneak-peek-badge-live:hover {
    background: #059669;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

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

.product-features h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-teal);
}

.product-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-cta {
    text-decoration: none;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

.check-icon {
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.umbrella-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.umbrella-note p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.umbrella-note strong {
    color: var(--brand-teal);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    border-color: var(--brand-teal);
    box-shadow: 0 20px 60px rgba(40, 193, 209, 0.25);
    transform: translateY(-4px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--brand-teal);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.form-input {
    padding: 1.125rem 1.5rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    width: 100%;
}

.form-input:hover {
    border-color: rgba(40, 193, 209, 0.4);
    background: rgba(15, 23, 42, 0.8);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-teal);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 0 3px rgba(40, 193, 209, 0.15), 0 4px 12px rgba(40, 193, 209, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-submit {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(40, 193, 209, 0.3);
}

.contact-submit:hover {
    box-shadow: 0 6px 20px rgba(40, 193, 209, 0.4);
    transform: translateY(-2px);
}

.contact-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    display: none;
    text-align: center;
}

.contact-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #10b981;
}

.contact-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Waitlist Section */
.waitlist-section {
    padding: 6rem 0;
    position: relative;
}

.waitlist-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.waitlist-card:hover {
    border-color: var(--brand-teal);
    box-shadow: 0 20px 60px rgba(40, 193, 209, 0.2);
}

.waitlist-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waitlist-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(40, 193, 209, 0.2);
    border: 1px solid var(--brand-teal);
    border-radius: 50px;
    color: var(--brand-teal);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    margin: 0 auto;
}

.waitlist-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.waitlist-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.waitlist-form {
    margin-top: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: var(--brand-teal);
    background: rgba(15, 23, 42, 0.8);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--brand-teal);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #20a5b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 193, 209, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-privacy {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.waitlist-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    display: none;
}

.waitlist-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #10b981;
}

.waitlist-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--brand-teal);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--brand-teal);
}

.social-link {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-location {
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-showcase.product-reverse .product-mockup,
    .product-showcase.product-reverse .product-features {
        order: initial;
    }
    
    .product-features {
        text-align: left;
    }
    
    .product-features h3 {
        text-align: left;
    }

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

    .footer-links {
        gap: 2rem;
    }
}

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

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card {
        padding: 2rem 1.5rem;
    }

    .form-group {
        flex-direction: column;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

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

    .product-cta {
        width: 100%;
        text-align: center;
    }
    
    .product-showcase {
        gap: 2rem;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
    }
    
    .product-showcase.product-reverse {
        flex-direction: column;
    }
    
    .product-showcase.product-reverse .product-mockup,
    .product-showcase.product-reverse .product-features {
        order: initial;
    }
    
    .product-mockup {
        order: 1;
        width: 100%;
    }
    
    .product-features {
        order: 2;
        width: 100%;
        text-align: left;
    }
    
    .product-features h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .product-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .features-list {
        gap: 1.25rem;
    }
    
    .features-list li {
        font-size: 1rem;
    }
    
    .mockup-container {
        padding: 1.5rem;
        width: 100%;
    }
    
    .contact-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .products-section {
        padding: 4rem 0;
    }
    
    .story-section {
        padding: 4rem 0;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .logo-subtitle {
        display: none;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .hero-logo {
        height: 60px;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .story-card, .mockup-container {
        padding: 1.5rem;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-logo-container {
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .product-showcase {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .product-showcase.product-reverse {
        flex-direction: column;
    }
    
    .product-showcase.product-reverse .product-mockup,
    .product-showcase.product-reverse .product-features {
        order: initial;
    }
    
    .product-mockup {
        order: 1;
    }
    
    .product-features {
        order: 2;
        text-align: left;
    }
    
    .product-features h3 {
        font-size: 1.25rem;
        text-align: left;
    }
    
    .product-description {
        font-size: 0.875rem;
        text-align: left;
    }
    
    .features-list li {
        font-size: 0.9375rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
