/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0f172a;
    overflow-x: hidden;
    position: relative;
    font-display: swap;
}

/* Animowane tło - CSS only, bez JavaScript */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translateX(-10px) translateY(-5px) scale(1.02);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(5px) translateY(-10px) scale(0.98);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(-5px) translateY(5px) scale(1.01);
        opacity: 0.85;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

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

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo h2 {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-logo h2:hover {
    color: #60a5fa;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: transparent; /* desktop: brak tła/obwódek */
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
}

.nav-link {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

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

.lang-switcher {
    background: transparent;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 8px 16px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    min-height: 40px;
    margin-left: 1rem;
}

.lang-switcher:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.lang-switcher:active {
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e5e7eb;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Sekcja Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    overflow: hidden;
}

/* Bardziej animowane, ale lekkie tło w HERO */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 10% 20%, rgba(59,130,246,0.18), transparent 60%),
        radial-gradient(600px 300px at 80% 30%, rgba(6,182,212,0.15), transparent 60%),
        radial-gradient(700px 350px at 40% 80%, rgba(99,102,241,0.12), transparent 60%);
    mix-blend-mode: screen;
    animation: heroParallax 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroParallax {
    0%   { transform: translate3d(0,0,0) scale(1); }
    50%  { transform: translate3d(-1.5%, -1%, 0) scale(1.015); }
    100% { transform: translate3d(1%, 1.5%, 0) scale(1.01); }
}

.hero-container {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.typing-container {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.typing-text {
    color: #06b6d4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.cursor {
    animation: blink 1s infinite;
    color: #06b6d4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    min-height: 48px;
    min-width: 120px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
    min-height: 56px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #3b82f6;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #3b82f6;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Animowane tło Hero */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Proste interaktywne tło z efektem myszy */
.hero-automation {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: default;
}

/* Interaktywne efekty myszy */
.hero-automation .mouse-effect {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.16) 0%, rgba(6, 182, 212, 0.08) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.08s ease;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(1px);
}

.hero-automation .mouse-effect.active {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1);
}

.hero-automation .mouse-trail {
    position: absolute;
    width: var(--size, 90px);
    height: var(--size, 90px);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.18;
    filter: blur(2px);
    background: radial-gradient(circle at 40% 40%, var(--c1, rgba(59,130,246,0.16)) 0%, var(--c2, rgba(6,182,212,0.08)) 55%, transparent 75%);
    animation: blobFade var(--life, 3600ms) ease-out forwards;
}

@keyframes blobFade {
    0%   { opacity: 0.95; transform: translate(-50%, -50%) scale(0.9); }
    60%  { opacity: 0.7;  transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 0;    transform: translate(-50%, -50%) scale(1.15); }
}

/* Sekcja O Flowtomat */
.about {
    padding: 100px 0;
    background: #1e293b;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-item {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-item:nth-child(1) { animation-delay: 0.5s; }
.about-item:nth-child(2) { animation-delay: 0.7s; }
.about-item:nth-child(3) { animation-delay: 0.9s; }

.about-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.about-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.about-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

.visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.automation-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 15px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.4));
}

.flow-step span {
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.about-cta {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
    margin-top: 3rem;
}

/* Sekcja Jak działamy */
.process {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-content {
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.process-step-icon {
    font-size: 3rem;
    margin: 0 auto 1rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.6s ease;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.process-step p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Sekcja Portfolio - zakomentowana */
/* .portfolio {
    padding: 100px 0;
    background: white;
} */

/* Portfolio styles - zakomentowane */
/* .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.2s; }
.portfolio-item:nth-child(2) { animation-delay: 0.4s; }
.portfolio-item:nth-child(3) { animation-delay: 0.6s; }

.portfolio-placeholder {
    background: #f8fafc;
    border: 2px dashed #d1d5db;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-placeholder:hover {
    border-color: #6366f1;
    background: #f0f4ff;
    transform: translateY(-5px);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.portfolio-placeholder p {
    color: #6b7280;
} */

/* Sekcja Kontakt */
.contact {
    padding: 100px 0;
    background: #1e293b;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.4s; }
.contact-item:nth-child(3) { animation-delay: 0.6s; }

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #f1f5f9;
}

.contact-item p {
    color: #cbd5e1;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    min-height: 44px;
    display: inline-block;
    line-height: 44px;
}

.contact-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.contact-form {
    opacity: 0;
    animation: fadeInRight 1s ease 0.3s forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e2e8f0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #475569;
    border-radius: 10px;
    background: #334155;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 48px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Stopka */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.footer-logo h3 {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #94a3b8;
}

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

.footer-links h4,
.footer-social h4 {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: 36px;
    display: inline-block;
    line-height: 36px;
}

.footer-links a:hover {
    color: #3b82f6;
}

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

.social-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: 36px;
    display: inline-block;
    line-height: 36px;
}

.social-link:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

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

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

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

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

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Dodatkowe klasy animacji */
.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-glow {
    animation: glow 2s infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Responsywność */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .hamburger {
        display: flex;
        min-height: 48px;
        min-width: 48px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border: none;
        border-radius: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        min-height: 48px;
        display: block;
        line-height: 1.4;
        width: 100%;
        transition: background 0.3s ease, color 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(59, 130, 246, 0.1);
        color: #60a5fa;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .typing-container {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        font-size: 1.15rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        max-height: none;
        justify-content: flex-start;
    }
    
    .visual-container {
        height: auto;
        min-height: 300px;
    }
    
    .automation-flow {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .flow-step {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .flow-step span {
        font-size: 0.7rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .typing-container {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}
