/* MOSTWEB - Modern Dark Theme inspired by FREETATO IT */

:root {
    --radius: 16px;
    --accent: #558ee8;
    --accent-light: #6ea3f7;
    --accent-dark: #3d6dc4;
    --accent-glow: rgba(85, 142, 232, 0.4);
    --muted: #8892a8;
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card: #16161e;
    --card-hover: #1e1e2a;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #7c5ce7 100%);
    --gradient-bg: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

/* ===== LEGAL PAGES (AGREEMENT & PRIVACY) ===== */
.legal-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 80px;
}

.legal-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-section {
    margin-top: 32px;
    padding: 24px 28px;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.legal-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.legal-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.legal-main p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-main ul {
    margin: 8px 0 4px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-main li {
    margin-bottom: 4px;
}

.legal-back {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.legal-back-link {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-back-link:hover {
    color: var(--accent-light);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Montserrat font for headings and UI elements */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.section-label,
.logo,
.btn,
.nav-link,
.faq-question,
.card-header h3,
.trust-text h4,
.service-item h3,
.portfolio-info h3,
.process-content h3,
.why-us-item h3,
.product-info h3,
.contact-form-section h1,
.contact-form-section h2,
.calculator-left h2,
.calculator-summary h1 {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Touch optimizations */
button,
a,
.product-option,
.portfolio-item,
.faq-item {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Background Pattern (Static) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(85, 142, 232, 0.2), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(124, 92, 231, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(85, 142, 232, 0.12), transparent);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(85, 142, 232, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 92, 231, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ===== PULSING LIGHT EFFECTS ===== */
.pulse-light {
    position: relative;
    overflow: hidden;
}

.pulse-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseLight 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.pulse-light > * {
    position: relative;
    z-index: 1;
}

@keyframes pulseLight {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        width: 500px;
        height: 500px;
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Pulsing light for hero section */
.hero {
    position: relative;
    overflow: hidden;
}

/* Multiple pulsing lights in hero */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 231, 0.25) 0%, transparent 70%);
    animation: heroPulse1 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.3) 0%, transparent 70%);
    animation: heroPulse2 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .container::before {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 20%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.2) 0%, transparent 70%);
    animation: heroPulse3 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .container::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 231, 0.2) 0%, transparent 70%);
    animation: heroPulse4 5.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

@keyframes heroPulse1 {
    0%, 100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.3;
        filter: blur(0px);
    }
    33% {
        transform: scale(1.4) translate(-25px, 25px) rotate(5deg);
        opacity: 0.5;
        filter: blur(2px);
    }
    66% {
        transform: scale(1.2) translate(15px, -15px) rotate(-3deg);
        opacity: 0.45;
        filter: blur(1px);
    }
}

@keyframes heroPulse2 {
    0%, 100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.35;
        filter: blur(0px);
    }
    25% {
        transform: scale(1.3) translate(20px, -20px) rotate(-5deg);
        opacity: 0.6;
        filter: blur(2px);
    }
    75% {
        transform: scale(1.15) translate(-10px, 10px) rotate(3deg);
        opacity: 0.5;
        filter: blur(1px);
    }
}

@keyframes heroPulse3 {
    0%, 100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.25;
        filter: blur(0px);
    }
    50% {
        transform: scale(1.35) translate(15px, 15px) rotate(4deg);
        opacity: 0.45;
        filter: blur(2px);
    }
}

@keyframes heroPulse4 {
    0%, 100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.25;
        filter: blur(0px);
    }
    40% {
        transform: scale(1.25) translate(-15px, -15px) rotate(-4deg);
        opacity: 0.4;
        filter: blur(1.5px);
    }
    80% {
        transform: scale(1.1) translate(10px, 10px) rotate(2deg);
        opacity: 0.35;
        filter: blur(1px);
    }
}

/* Pulsing light for service items */
.service-item {
    position: relative;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
    z-index: 0;
}

.service-item:hover::after {
    width: 600px;
    height: 600px;
    animation: servicePulse 2s ease-in-out infinite;
}

@keyframes servicePulse {
    0%, 100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: blur(0px);
    }
    33% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
        filter: blur(1px);
    }
    66% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.05) rotate(-3deg);
        filter: blur(0.5px);
    }
}

/* Pulsing light for portfolio items */
.portfolio-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
    animation: portfolioPulse 3s ease-in-out infinite;
}

.portfolio-item:hover::before {
    opacity: 1;
}

@keyframes portfolioPulse {
    0%, 100% {
        transform: scale(0.9) rotate(0deg);
        opacity: 0.2;
        filter: blur(0px);
    }
    25% {
        transform: scale(1.3) rotate(90deg);
        opacity: 0.4;
        filter: blur(2px);
    }
    50% {
        transform: scale(1.25) rotate(180deg);
        opacity: 0.35;
        filter: blur(1.5px);
    }
    75% {
        transform: scale(1.15) rotate(270deg);
        opacity: 0.3;
        filter: blur(1px);
    }
}

/* Pulsing light for calculator summary */
.calculator-summary {
    position: relative;
}

.calculator-summary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.25) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: calculatorPulse 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.calculator-summary > * {
    position: relative;
    z-index: 1;
}

@keyframes calculatorPulse {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        width: 600px;
        height: 600px;
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Pulsing light for buttons */
.btn-primary {
    position: relative;
    overflow: visible;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    pointer-events: none;
    z-index: 0;
}

.btn-primary:hover::after {
    width: 200px;
    height: 200px;
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: blur(0px);
    }
    33% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.25) rotate(3deg);
        filter: blur(1px);
    }
    66% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.15) rotate(-2deg);
        filter: blur(0.5px);
    }
}

/* Pulsing light for process items */
.process-item {
    position: relative;
}

.process-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0;
    background: var(--gradient-accent);
    transform: translateY(-50%);
    transition: height 0.5s;
    box-shadow: 0 0 20px var(--accent-glow);
    animation: processPulse 2.5s ease-in-out infinite;
    opacity: 0;
}

.process-item:hover::after {
    height: 100%;
    opacity: 1;
}

@keyframes processPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }
    50% {
        box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(85, 142, 232, 0.5);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ===== HEADER (MAX.RU Style) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.header::before,
.header::after {
    display: none !important;
    background: none !important;
}

.header .container {
    background: transparent !important;
    border-radius: 20px;
    margin: 16px auto;
    padding: 14px 28px;
    max-width: calc(1400px - 32px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.header .container::before,
.header .container::after {
    display: none !important;
    background: none !important;
}

.header.scrolled .container {
    margin: 12px auto;
    padding: 12px 28px;
    max-width: calc(1400px - 32px);
    border-radius: 20px;
    background: transparent !important;
    box-shadow: none !important;
}

.header.scrolled {
    background: transparent !important;
    box-shadow: none;
}

.header.scrolled::before,
.header.scrolled::after {
    display: none !important;
    background: none !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(91, 141, 239, 0.7));
}

.logo {
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: -0.3px;
    transition: transform 0.3s;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

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

.logo-primary {
    color: #ffffff;
    font-weight: 700;
}

.logo-secondary {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 18px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-link {
    color: rgba(181, 181, 181, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-link-action {
    color: rgba(181, 181, 181, 0.9);
}

.nav-link-action:hover {
    color: rgba(255, 255, 255, 0.95);
}

.btn-header {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    background: #558ee8;
    color: #ffffff;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(85, 142, 232, 0.3);
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.btn-header:hover {
    background: #6ea3f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(85, 142, 232, 0.4);
}

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

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text);
    box-shadow: 0 4px 20px var(--accent-glow), 0 2px 10px rgba(0, 0, 0, 0.2);
    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.25), transparent);
    transition: left 0.6s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
}

.hero-text {
    max-width: 560px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: rgba(12, 20, 35, 0.9);
    border: 1px solid rgba(91, 141, 239, 0.4);
    box-shadow: 0 0 24px rgba(91, 141, 239, 0.35);
    margin-bottom: 18px;
    animation: fadeInUp 0.7s ease-out;
}

.hero-kicker-pill {
    padding: 4px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5b8def, #7c5ce7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.hero-kicker-line {
    width: 24px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    opacity: 0.7;
}

.hero-kicker-sub {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text);
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease-out;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

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

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 600px;
}

.highlight {
    color: var(--accent);
    position: relative;
    font-weight: 600;
    text-shadow: 0 0 20px var(--accent-glow);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.6;
    border-radius: 2px;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(1.05); }
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    padding: 20px;
    background: rgba(85, 142, 232, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(85, 142, 232, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        width: 250px;
        height: 250px;
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-stat:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(85, 142, 232, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(124, 92, 231, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--glass-border);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 20px var(--accent-glow);
}

.btn-secondary::before,
.btn-secondary::after {
    display: none;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.hero-card {
    background: linear-gradient(135deg, var(--card) 0%, rgba(22, 22, 30, 0.95) 100%);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 150px;
        height: 150px;
        opacity: 0.3;
    }
}

.hero-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px) scale(1.02);
    background: var(--card-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover::after {
    width: 300px;
    height: 300px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header svg {
    color: var(--muted);
    transition: transform 0.3s;
}

.hero-card:hover .card-header svg {
    transform: translateY(4px);
}

.hero-card p {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-badge {
    flex-shrink: 0;
}

.trust-badge svg {
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.trust-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.trust-text p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== HERO MODERN GRAPHICS ===== */
.hero-graphics {
    position: relative;
    height: 550px;
    width: 100%;
    overflow: visible;
    z-index: 1;
}

.particle-web {
    position: absolute;
    inset: auto;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: screen;
}

.particle-web-hero {
    top: 20px;
    right: 10%;
    width: 340px;
    height: 220px;
}

.particle-web-services {
    top: -20px;
    left: 8%;
    width: 260px;
    height: 160px;
}

.particle-web-portfolio {
    top: -30px;
    right: 4%;
    width: 280px;
    height: 170px;
}

.particle-web-process {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 160px;
}

.particle-web-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Floating Orbs with pulsing glow */
.graphic-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: orbFloat 8s ease-in-out infinite;
}

.graphic-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.8) 0%, rgba(85, 142, 232, 0.4) 50%, transparent 100%);
    animation: orbFloat1 9s ease-in-out infinite, orbPulse1 4s ease-in-out infinite;
    box-shadow: 0 0 100px rgba(85, 142, 232, 0.6);
}

.graphic-orb-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 5%;
    background: radial-gradient(circle, rgba(124, 92, 231, 0.8) 0%, rgba(124, 92, 231, 0.4) 50%, transparent 100%);
    animation: orbFloat2 7s ease-in-out infinite, orbPulse2 5s ease-in-out infinite;
    box-shadow: 0 0 80px rgba(124, 92, 231, 0.6);
}

.graphic-orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 30%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.6) 0%, rgba(124, 92, 231, 0.3) 50%, transparent 100%);
    animation: orbFloat3 10s ease-in-out infinite, orbPulse3 6s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(85, 142, 232, 0.5);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, -35px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, 25px) scale(1.05); }
    75% { transform: translate(-30px, -20px) scale(0.95); }
}

@keyframes orbPulse1 {
    0%, 100% { opacity: 0.6; filter: blur(40px); }
    50% { opacity: 0.9; filter: blur(50px); }
}

@keyframes orbPulse2 {
    0%, 100% { opacity: 0.5; filter: blur(35px); }
    50% { opacity: 0.8; filter: blur(45px); }
}

@keyframes orbPulse3 {
    0%, 100% { opacity: 0.4; filter: blur(30px); }
    50% { opacity: 0.7; filter: blur(40px); }
}

/* Grid Pattern */
.graphic-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(85, 142, 232, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(85, 142, 232, 0.25) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
    mask: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

/* Universal Section Grid */
.section-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(85, 142, 232, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(85, 142, 232, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 100%);
    mask: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 100%);
    z-index: 0;
}

/* Floating Particles */
.graphic-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    animation: particleFloat 12s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
    background: rgba(85, 142, 232, 0.8);
}

.particle-2 {
    top: 40%;
    right: 25%;
    animation-delay: 2s;
    background: rgba(124, 92, 231, 0.8);
    width: 6px;
    height: 6px;
}

.particle-3 {
    bottom: 30%;
    right: 20%;
    animation-delay: 4s;
    background: rgba(85, 142, 232, 0.6);
    width: 10px;
    height: 10px;
}

.particle-4 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
    background: rgba(124, 92, 231, 0.7);
}

.particle-5 {
    bottom: 20%;
    right: 35%;
    animation-delay: 3s;
    background: rgba(85, 142, 232, 0.9);
    width: 7px;
    height: 7px;
}

.particle-6 {
    top: 30%;
    right: 5%;
    animation-delay: 5s;
    background: rgba(124, 92, 231, 0.6);
    width: 9px;
    height: 9px;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.9;
    }
}

/* Gradient Blobs */
.graphic-gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: blobFloat 15s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: 0;
    right: 0;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.5) 0%, rgba(124, 92, 231, 0.3) 50%, transparent 100%);
    animation: blobFloat1 12s ease-in-out infinite, blobPulse1 5s ease-in-out infinite;
}

.blob-2 {
    width: 350px;
    height: 350px;
    bottom: 0;
    right: 20%;
    background: radial-gradient(circle, rgba(124, 92, 231, 0.5) 0%, rgba(85, 142, 232, 0.3) 50%, transparent 100%);
    animation: blobFloat2 14s ease-in-out infinite, blobPulse2 6s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 50px) scale(1.2); }
    66% { transform: translate(30px, -30px) scale(0.9); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.15); }
}

@keyframes blobPulse1 {
    0%, 100% { opacity: 0.4; filter: blur(60px); }
    50% { opacity: 0.6; filter: blur(80px); }
}

@keyframes blobPulse2 {
    0%, 100% { opacity: 0.3; filter: blur(55px); }
    50% { opacity: 0.5; filter: blur(75px); }
}

/* Hero showcase browser stack */
.hero-showcase {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-browser-stack {
    position: relative;
    width: 600px;
    max-width: 90%;
    aspect-ratio: 16 / 9;
    transform-origin: center center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    animation: heroStackFloat 12s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-browser-stack {
        width: 100%;
        max-width: 100%;
    }
}

.hero-browser-stack::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(91, 141, 239, 0.4) 0%, rgba(91, 141, 239, 0.0) 70%);
    filter: blur(16px);
    opacity: 0.8;
    pointer-events: none;
}

.hero-browser-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition:
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    opacity: 0;
    filter: blur(0px);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
    will-change: transform, opacity, filter;
}

.hero-browser-card.is-front {
    z-index: 3;
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(91, 141, 239, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-browser-card.is-middle {
    z-index: 2;
    opacity: 0.5;
    transform: translateY(-20px) translateX(-8px) scale(0.97) rotate(-1deg);
    filter: blur(1px);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(91, 141, 239, 0.2);
}

.hero-browser-card.is-back {
    z-index: 1;
    opacity: 0.25;
    transform: translateY(-40px) translateX(-16px) scale(0.94) rotate(-2deg);
    filter: blur(2px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(91, 141, 239, 0.15);
}

.hero-browser-dots {
    margin-top: 28px;
    display: inline-flex;
    gap: 12px;
    pointer-events: auto;
}

.hero-browser-dot {
    position: relative;
    width: 32px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hero-browser-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #5b8def, #7c5ce7);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-browser-dot.is-active::before {
    transform: translateX(0);
}

@keyframes heroStackFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-scroll {
        position: fixed !important;
        bottom: 40px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 999 !important;
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        position: fixed !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 999 !important;
    }
}

.hero-scroll-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(85, 142, 232, 0.15);
    border: 2px solid rgba(85, 142, 232, 0.4);
    color: var(--accent);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-scroll-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.hero-scroll-link:hover {
    background: rgba(85, 142, 232, 0.25);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-scroll-link:hover::before {
    width: 100px;
    height: 100px;
}

.hero-scroll-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .graphic-orb,
    .graphic-particles,
    .graphic-gradient-blob,
    .hero-browser-stack,
    .hero-scroll,
    .particle-web {
        animation: none !important;
    }

    section {
        opacity: 1 !important;
        transform: none !important;
    }
}

.hero-scroll-link:hover svg {
    transform: translateY(4px);
}

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

/* ===== SECTION STYLES ===== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-label {
    font-size: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

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

/* ===== SERVICES SECTION ===== */
.services {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-item {
    padding: 40px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    transform: rotate(45deg);
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--card-hover);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 50px var(--accent-glow);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover::after {
    opacity: 1;
    animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

.service-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.service-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.3;
}

.portfolio-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 0 30px;
    position: relative;
    z-index: 1;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.portfolio-slider::-webkit-scrollbar {
    height: 6px;
}

.portfolio-slider::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.portfolio-slider::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.portfolio-item {
    min-width: 380px;
    max-width: 100%;
    scroll-snap-align: start;
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(85, 142, 232, 0.08), transparent);
    transition: left 0.8s;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--accent);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-glow);
    background: linear-gradient(135deg, var(--card-hover) 0%, rgba(30, 30, 42, 0.8) 100%);
}

.portfolio-item:hover::before {
    transform: scaleX(1);
}

.portfolio-item:hover::after {
    left: 100%;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-icon {
    font-size: 44px;
    margin-bottom: 12px;
    filter: grayscale(0);
    transition: filter 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.portfolio-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0);
    transition: filter 0.3s, transform 0.3s;
}

.portfolio-item:hover .portfolio-icon {
    filter: grayscale(0) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.portfolio-item:hover .portfolio-icon img {
    filter: grayscale(0) drop-shadow(0 0 15px rgba(85, 142, 232, 0.5));
    transform: scale(1.05);
}

.portfolio-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(85, 142, 232, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent-light);
    font-weight: 500;
    border: 1px solid rgba(85, 142, 232, 0.3);
}

.portfolio-preview {
    width: 100%;
    height: 180px;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.preview-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg-tertiary) 100%);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.preview-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s;
}

.portfolio-item:hover .preview-placeholder {
    opacity: 0.6;
}

.portfolio-item:hover .preview-placeholder img {
    transform: scale(1.05);
    opacity: 1;
}

.portfolio-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-link:hover {
    transform: translateX(4px);
}

.portfolio-link span {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.3s;
}

.portfolio-link:hover span {
    color: var(--accent-light);
}

.portfolio-link p {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s;
}

.portfolio-link:hover p {
    color: var(--accent);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--glass-border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s;
}

.process-item:hover {
    border-color: rgba(85, 142, 232, 0.5);
    transform: translateY(-8px) translateX(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow);
    background: var(--card-hover);
}

.process-item:hover::before {
    transform: scaleY(1);
}

.process-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.process-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== WHY US SECTION ===== */
.why-us {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-accent);
    transition: height 0.5s;
    box-shadow: 0 0 20px var(--accent-glow);
}

.why-us-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.why-us-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(85, 142, 232, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
    background: var(--card-hover);
}

.why-us-item:hover::before {
    height: 100%;
}

.why-us-item:hover::after {
    width: 400px;
    height: 400px;
}

.why-us-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.why-us-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== CALCULATOR SECTION ===== */
.calculator {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.calculator-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text);
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.product-option {
    background: linear-gradient(135deg, var(--card) 0%, rgba(22, 22, 30, 0.95) 100%);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 24px;
}

.product-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s;
    box-shadow: 0 0 15px var(--accent-glow);
}

.product-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.product-option:hover {
    border-color: rgba(85, 142, 232, 0.7);
    background: var(--card-hover);
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(85, 142, 232, 0.15);
}

.product-option:hover:not(.active) {
    border-color: rgba(85, 142, 232, 0.5);
}

.product-option:hover::before {
    transform: scaleY(1);
}

.product-option:hover::after {
    width: 300px;
    height: 300px;
}

.product-option.active {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(85, 142, 232, 0.22) 0%, rgba(124, 92, 231, 0.15) 100%);
    box-shadow: 0 0 60px var(--accent-glow), inset 0 0 40px rgba(85, 142, 232, 0.2), 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: translateX(12px) scale(1.02);
}

.product-option.active::before {
    transform: scaleY(1);
    width: 6px;
    box-shadow: 0 0 25px var(--accent-glow);
}

.product-option.active::after {
    width: 400px;
    height: 400px;
    opacity: 0.15;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.3;
    transition: color 0.3s;
}

.product-option.active .product-info h3 {
    color: var(--accent-light);
}

.product-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.product-price {
    text-align: right;
    flex-shrink: 0;
    min-width: 140px;
}

.product-price p:first-child {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-price .price {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(124, 92, 231, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s;
}

.product-option.active .product-price .price {
    font-size: 32px;
    filter: brightness(1.2);
}

.contact-form-section {
    margin-top: 72px;
    padding: 36px 32px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: radial-gradient(circle at top left, rgba(85, 142, 232, 0.24), transparent 55%),
                radial-gradient(circle at bottom right, rgba(124, 92, 231, 0.18), transparent 55%),
                rgba(15, 18, 28, 0.9);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    opacity: 0.8;
}

.contact-form-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(85, 142, 232, 0.35), transparent 70%);
    filter: blur(6px);
    opacity: 0.7;
    right: -80px;
    top: -80px;
    pointer-events: none;
}

.contact-form-section h2:first-of-type {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-form-section h2:last-of-type {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text);
}

.contact-form-section > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 520px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="tel"],
.form-group input[type="text"] {
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: var(--card);
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

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

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    background: var(--card-hover);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

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

.checkbox-label a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.calculator-summary {
    background: linear-gradient(135deg, var(--card) 0%, rgba(22, 22, 30, 0.95) 100%);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--glass-border);
    position: sticky;
    top: 120px;
    margin-top: 7vh;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(85, 142, 232, 0.1);
}

.calculator-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.calculator-summary h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text);
}

.summary-item {
    margin-bottom: 24px;
}

.summary-label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, rgba(124, 92, 231, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--accent-glow);
}

.calculator-summary .btn {
    width: 100%;
    margin-top: 32px;
}

.summary-features {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.summary-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.summary-feature span {
    line-height: 1.5;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--glass-border);
}

.trust-badge-small {
    width: 100%;
    aspect-ratio: 1;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-small:hover {
    opacity: 1;
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 0;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: border-color, background;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s;
}

.faq-item:hover {
    border-color: var(--accent);
    background: var(--card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px var(--accent-glow);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item.active {
    border-color: var(--accent);
    background: var(--card-hover);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    transition: all 0.3s;
}

.faq-item:hover .faq-header {
    transform: translateX(8px);
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-arrow {
    color: var(--muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item:hover .faq-arrow {
    color: var(--accent);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.2s ease-out;
    opacity: 0;
    padding: 0 28px;
    will-change: max-height, padding, opacity;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    padding-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-marquee {
    overflow: hidden;
    padding: 24px 0;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(85, 142, 232, 0.03);
}

.marquee-content {
    display: flex;
    gap: 80px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-content {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-item h4 {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.footer-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-item a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer-scroll {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.scroll-top {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--glass-border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.scroll-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--accent-glow);
}


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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
.hero-text {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 231, 0.15) 0%, transparent 70%);
    animation: textPulse 5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}
    
    .hero-graphics {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        min-height: 300px;
        margin-top: 40px;
    }
    
    .hero-cards {
        justify-content: center;
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
    }
    
    .calculator-right,
    .calculator-summary {
        position: static;
        top: auto;
    }
    
    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 28px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 140px 0 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-scroll {
        position: fixed !important;
        bottom: 40px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        z-index: 999 !important;
        animation: heroScrollBounce 2s ease-in-out infinite;
    }
    
    .hero-scroll-link {
        width: 48px;
        height: 48px;
    }
    
    .hero-scroll-link svg {
        width: 20px;
        height: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .services-grid,
    .process-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        min-width: 300px;
    }
    
    /* Header mobile styles */
    .header {
        padding: 0;
    }
    
    .header .container {
        padding: 12px 16px !important;
        margin: 8px auto !important;
        border-radius: 16px !important;
    }
    
    .header.scrolled .container {
        padding: 12px 16px !important;
        margin: 8px auto !important;
        border-radius: 16px !important;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .logo-mark {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-secondary {
        font-size: 12px;
    }
    
    /* Hide nav-main on mobile */
    .nav-main {
        display: none;
    }
    
    .nav-actions {
        margin-left: auto;
    }
    
    .nav-actions .nav-link-action {
        display: none;
    }
    
    .nav-actions .btn-header {
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Hero section mobile */
    .hero-kicker {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 20px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-bottom: 24px;
        width: 100%;
        max-width: 100%;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        text-align: center;
    }
    
    .hero-kicker-pill {
        font-size: 11px;
        padding: 7px 16px;
        align-self: center;
        letter-spacing: 0.1em;
        white-space: nowrap;
    }
    
    .hero-kicker-line {
        display: none;
    }
    
    .hero-kicker-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        white-space: normal;
        line-height: 1.6;
        width: 100%;
        font-weight: 400;
        text-align: center;
    }
    
    .hero-showcase {
        margin-top: 30px;
        height: 200px;
    }
    
    .hero-browser-card {
        width: 280px;
        height: 180px;
    }
    
    .hero-browser-dots {
        margin-top: 12px;
    }
    
    /* Product options mobile */
    .product-option {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .product-info {
        width: 100%;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
    
    .product-info p {
        font-size: 13px;
    }
    
    .product-price {
        width: 100%;
        text-align: left;
        min-width: auto;
    }
    
    .product-price .price {
        font-size: 24px;
    }
    
    .product-option.active .product-price .price {
        font-size: 26px;
    }
    
    /* Calculator mobile */
    .calculator-left h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .calculator-summary {
        padding: 24px;
    }
    
    .calculator-summary h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .summary-value {
        font-size: 22px;
    }
    
    /* Portfolio mobile */
    .portfolio-slider {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .portfolio-item {
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
    }
    
    .portfolio-icon img {
        width: 48px;
        height: 48px;
    }
    
    .portfolio-info h3 {
        font-size: 18px;
    }
    
    .portfolio-info p {
        font-size: 13px;
    }
    
    .portfolio-preview {
        height: 150px;
    }
    
    .portfolio-link {
        padding-top: 12px;
    }
    
    .portfolio-link span {
        font-size: 12px;
    }
    
    .portfolio-link p {
        font-size: 16px;
    }
    
    /* Contact form mobile */
    .contact-form-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .contact-form-section h2 {
        font-size: 18px;
    }
    
    .contact-form-section h1 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Section grid mobile */
    .section-grid {
        opacity: 0.3;
    }
    
    /* Slider controls mobile */
    .slider-controls {
        margin-top: 24px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Summary features mobile */
    .summary-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    /* Ensure minimum font sizes */
    body {
        font-size: 14px;
    }
    
    p, span, li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 100px;
    }
    
    .hero-scroll {
        position: fixed !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 999 !important;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-secondary {
        font-size: 12px;
    }
    
    .logo-mark {
        width: 28px;
        height: 28px;
    }
    
    /* Header extra small */
    .header .container {
        padding: 10px 12px !important;
        margin: 6px auto !important;
        border-radius: 14px !important;
        max-width: calc(100% - 12px) !important;
    }
    
    .header.scrolled .container {
        padding: 10px 12px !important;
        margin: 6px auto !important;
        border-radius: 14px !important;
        max-width: calc(100% - 12px) !important;
    }
    
    .header-content {
        gap: 8px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-secondary {
        font-size: 11px;
    }
    
    .logo-mark {
        width: 26px;
        height: 26px;
    }
    
    .nav-actions .btn-header {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .nav-actions .btn-header {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .btn-header {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Hero extra small */
    .hero-kicker {
        padding: 14px 18px;
        gap: 10px;
        margin-bottom: 20px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-kicker-pill {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 0.08em;
        align-self: center;
    }
    
    .hero-kicker-sub {
        font-size: 12px;
        line-height: 1.5;
        text-align: center;
    }
    
    .hero-showcase {
        height: 160px;
        margin-top: 24px;
    }
    
    .hero-browser-stack {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-browser-card {
        width: 100%;
        height: 100%;
    }
    
    /* Product options extra small */
    .product-option {
        padding: 16px;
    }
    
    .product-info h3 {
        font-size: 16px;
    }
    
    .product-info p {
        font-size: 12px;
    }
    
    .product-price .price {
        font-size: 22px;
    }
    
    .product-option.active .product-price .price {
        font-size: 24px;
    }
    
    /* Calculator extra small */
    .calculator-left h2 {
        font-size: 20px;
    }
    
    .calculator-summary {
        padding: 20px;
    }
    
    .calculator-summary h1 {
        font-size: 22px;
    }
    
    .summary-value {
        font-size: 20px;
    }
    
    /* Portfolio extra small */
    .portfolio-item {
        min-width: 260px;
    }
    
    .portfolio-icon img {
        width: 40px;
        height: 40px;
    }
    
    .portfolio-info h3 {
        font-size: 16px;
    }
    
    .portfolio-info p {
        font-size: 12px;
    }
    
    .portfolio-preview {
        height: 120px;
    }
    
    /* Services extra small */
    .service-item {
        padding: 24px;
    }
    
    .service-item h3 {
        font-size: 18px;
    }
    
    .service-item p {
        font-size: 13px;
    }
    
    /* Process extra small */
    .process-item {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .process-number {
        font-size: 36px;
    }
    
    .process-content h3 {
        font-size: 18px;
    }
    
    .process-content p {
        font-size: 13px;
    }
    
    /* Why us extra small */
    .why-us-item {
        padding: 24px;
    }
    
    .why-us-item h3 {
        font-size: 18px;
    }
    
    .why-us-item p {
        font-size: 13px;
    }
    
    /* FAQ extra small */
    .faq-question {
        font-size: 14px;
        padding-right: 32px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    /* Forms extra small */
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}
