:root {
    --bg-dark: #030305;
    --bg-card: rgba(255, 255, 255, 0.015);
    --primary: #818cf8;
    --primary-glow: rgba(129, 140, 248, 0.2);
    --secondary: #2dd4bf;
    --accent: #fbbf24;
    --accent-glow: rgba(251, 191, 36, 0.3);
    --starlight: #ffffff;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.02);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

/* Custom Cursor */
#cursor-dot, #cursor-ring {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, opacity 0.3s ease;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--accent);
    opacity: 0.5;
}

#cursor-ring.hovering {
    width: 70px;
    height: 70px;
    background: var(--accent-glow);
    border-color: transparent;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

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

/* Glow Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-bg::before, .glow-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-bg::before {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-bg::after {
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

/* Reveal System */
.reveal-on-scroll {
    opacity: 1; /* Visible by default for safety */
    transform: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

body.js-active .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

body.js-active .reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Remove dangerous global span selector */
.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Noise Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    opacity: 0.05;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    left: 0; /* Explicitly anchor to left */
}

nav.scrolled {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    color: var(--starlight);
}

.nav-links a.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: white !important;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.nav-links a.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s;
    pointer-events: none;
}

.nav-links a.btn-primary:hover::after {
    left: 120%;
}

/* Mobile Toggle Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff !important; /* Force white for visibility */
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.5); /* Add shadow for light backgrounds */
}

/* Active State for Hamburger */
.mobile-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #ffffff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: white !important;
    padding: 1.1rem 2.2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--primary-glow);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary-large {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 1.1rem 2.2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--starlight);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
    padding: 5rem 0; /* Tighter padding (was 8rem) */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem; /* Tighter margin (was 4rem) */
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Hero Image */
.hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-img-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: luminosity;
    transition: mix-blend-mode 0.5s;
}

.hero-img-wrapper:hover .hero-img {
    mix-blend-mode: normal;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-dark), transparent);
    opacity: 0.3;
}

/* Code Window */
.code-window {
    background: #0d0d10;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.code-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.code-content {
    padding: 2rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
}

.keyword { color: #c678dd; }
.variable { color: #e06c75; }
.string { color: #98c379; }
.function { color: #61afef; }

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--starlight);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--primary-glow);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-box i {
    width: 24px;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Workflow */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    position: relative;
}

.workflow-item {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.workflow-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.2;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.workflow-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.workflow-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats */
.stats {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
}

/* Statement */
.statement-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 6rem 4rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.quote-icon {
    width: 60px;
    height: 60px;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.statement-card h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 700;
}

.author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.author .line {
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.author p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Marquee */
.marquee-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}

.marquee-wrapper {
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    opacity: 0.1;
    transition: opacity 0.3s;
    user-select: none;
    background: none;
    -webkit-text-fill-color: var(--text-main);
}

.marquee-content span:hover {
    opacity: 0.8;
    -webkit-text-fill-color: var(--accent);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Tech Section Integration */
.tech-stack-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.tech-item:hover {
    color: white;
}

.tech-item i {
    width: 32px;
    height: 32px;
}

/* CTA */
.cta-card {
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6rem 4rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate; /* Create new stacking context */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
    z-index: -1; /* Always behind content */
}

.cta-glow-1 {
    top: -100px;
    left: -100px;
    background: var(--accent);
}

.cta-glow-2 {
    bottom: -100px;
    right: -100px;
    background: var(--secondary);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content * {
    color: #ffffff !important;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-card h2 span {
    display: block;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-card p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Unified Premium Contact Buttons */
.btn-premium-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);
    color: #ffffff !important;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium-contact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--starlight);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-premium-contact span {
    display: inline-block;
    line-height: 1;
}

.btn-premium-contact i, 
.btn-premium-contact svg {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.btn-premium-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.btn-premium-contact:hover i,
.btn-premium-contact:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

/* Brand Specific Glows */
.btn-premium-contact.wa:hover {
    border-color: #10b981; /* Emerald */
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.btn-premium-contact.email:hover {
    border-color: #6366f1; /* Indigo */
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.btn-premium-contact.ig:hover {
    border-color: #f97316; /* Orange */
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.btn-outline-large {
    display: none; /* Deprecated in favor of premium unified style */
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.magnetic {
    display: inline-block;
    will-change: transform;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: var(--text-muted);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
}

.socials a:hover {
    color: var(--starlight);
    border-color: var(--starlight);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

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

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive Media Queries */

@media (max-width: 1024px) {
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 5, 0.98);
        backdrop-filter: blur(30px);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: -1px;
        width: 80%;
        padding: 1rem 2rem;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
    }

    .nav-links a:hover, .nav-links a:active {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--starlight);
        transform: scale(1.05);
    }

    .nav-links a.btn-primary {
        background: var(--primary);
        border-color: transparent;
        box-shadow: 0 10px 20px var(--primary-glow);
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

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

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: -1px;
    }

    .hero p {
        margin-bottom: 2rem;
    }

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

    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .statement-card {
        padding: 3.5rem 2rem;
        border-radius: 24px;
    }

    .cta-card {
        padding: 3.5rem 2rem;
        border-radius: 24px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn-primary-large, .btn-secondary-large {
        width: 100%;
        margin-left: 0;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

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

    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-item i {
        width: 24px;
        height: 24px;
    }

    .cta-card {
        padding: 2.5rem 1.25rem;
    }

    .cta-actions {
        gap: 0.8rem;
    }

    .btn-premium-contact {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
    }
}
