/* Basic settings for the whole page */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181828;
    color: #fff;
}

/* Header with menu */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #181828ee;
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}
.logo img {
    height: 23px;
    width: auto;
    display: block;
}
.logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s;
}
.logo-link:hover {
    opacity: 0.8;
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-items {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.nav a:hover {
    color: #ff7ee7;
}
.btn-header {
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(106,130,251,0.2);
}
.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,126,231,0.3);
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}
.hamburger span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.btn-header {
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(106,130,251,0.2);
}
.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,126,231,0.3);
}

/* Hero section - Premium US Agency Style */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px 40px 60px 40px;
}
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}
.hero-content {
    max-width: 600px;
    text-align: left;
}
.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Typing Tagline Styles */
.typing-tagline {
    display: flex;
    align-items: center;
    min-height: 2.2rem;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #d1d1e0;
    line-height: 1.4;
}

.typing-text {
    display: inline-block;
}

.typing-cursor {
    display: inline-block;
    margin-left: 3px;
    color: #6a82fb;
    font-weight: 300;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.highlight {
    color: #ff7ee7;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #b6b6d6;
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.btn-main {
    padding: 18px 44px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-block;
    border: none;
}
.btn-main:hover {
    transform: translateY(-3px);
}
.btn-primary {
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    box-shadow: 0 6px 24px rgba(255,126,231,0.35);
}
.btn-primary:hover {
    box-shadow: 0 10px 36px rgba(255,126,231,0.5);
}
.btn-secondary {
    background: rgba(106,130,251,0.1);
    border: 2px solid rgba(106,130,251,0.4);
    color: #fff;
    box-shadow: 0 4px 18px rgba(106,130,251,0.15);
}
.btn-secondary:hover {
    background: rgba(106,130,251,0.2);
    border-color: #6a82fb;
    box-shadow: 0 8px 28px rgba(106,130,251,0.32);
}
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.hero-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}
.benefit-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}
.benefit-text {
    color: #d1d1e0;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Hero Visual - Premium Tech Composition */
.hero-visual {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0 40px;
}
.visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
}

/* Main Web UI Mockup */
.visual-web {
    position: absolute;
    top: 50%;
    left: 57%;
    transform: translate(-50%, -50%) rotateY(-5deg);
    width: 520px;
    height: 350px;
    animation: floatWeb 8s ease-in-out infinite;
    z-index: 2;
}
.web-window {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e30 0%, #252538 100%);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.5),
        0 0 80px rgba(106,130,251,0.25),
        inset 0 1px 0 rgba(255,255,255,0.05);
}
.web-header {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px 8px 0 0;
}
.web-dots {
    display: flex;
    gap: 6px;
}
.web-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff7ee7;
    opacity: 0.5;
}
.web-dots span:nth-child(2) {
    background: #6a82fb;
}
.web-dots span:nth-child(3) {
    background: #3fffa8;
}
.web-content {
    padding: 20px;
    background: #1a1a28;
    border-radius: 0 0 8px 8px;
    height: calc(100% - 42px);
}
.web-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.nav-item {
    width: 60px;
    height: 8px;
    background: linear-gradient(90deg, rgba(106,130,251,0.3), rgba(255,126,231,0.2));
    border-radius: 4px;
}
.web-hero-section {
    margin-bottom: 24px;
}
.web-text-line {
    height: 24px;
    background: linear-gradient(90deg, rgba(106,130,251,0.4), rgba(255,126,231,0.3));
    border-radius: 6px;
    margin-bottom: 12px;
}
.web-text-line.short {
    width: 65%;
    opacity: 0.7;
}
.web-cta {
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    border-radius: 8px;
    margin-top: 16px;
    box-shadow: 0 8px 20px rgba(255,126,231,0.3);
}
.web-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.feature-card {
    height: 80px;
    background: linear-gradient(135deg, rgba(106,130,251,0.15), rgba(255,126,231,0.1));
    border-radius: 8px;
    border: 1px solid rgba(106,130,251,0.2);
}

/* Mobile UI Mockup */
.visual-mobile {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 160px;
    height: 320px;
    animation: floatMobile 6s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 3;
}
.mobile-device {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #252538 0%, #1e1e30 100%);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.6),
        0 0 50px rgba(255,126,231,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05);
}
.mobile-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 22px;
    background: #1a1a28;
    border-radius: 0 0 14px 14px;
    z-index: 1;
}
.mobile-ui {
    width: 100%;
    height: 100%;
    background: #1a1a28;
    border-radius: 18px;
    padding: 32px 14px 14px 14px;
    overflow: hidden;
}
.mobile-header {
    height: 20px;
    background: linear-gradient(90deg, rgba(106,130,251,0.3), rgba(255,126,231,0.2));
    border-radius: 6px;
    margin-bottom: 16px;
}
.mobile-section {
    margin-bottom: 16px;
}
.mobile-line {
    height: 16px;
    background: linear-gradient(90deg, rgba(106,130,251,0.35), rgba(255,126,231,0.25));
    border-radius: 4px;
    margin-bottom: 8px;
}
.mobile-line.short {
    width: 55%;
    opacity: 0.7;
}
.mobile-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
.mobile-box {
    height: 70px;
    background: linear-gradient(135deg, rgba(106,130,251,0.15), rgba(255,126,231,0.1));
    border-radius: 10px;
    border: 1px solid rgba(106,130,251,0.2);
}

/* Automation Flow Diagram */
.visual-automation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.automation-flow {
    position: relative;
    width: 100%;
    height: 100%;
}

.flow-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: all;
}

/* Individual node positioning */
.node-1 {
    top: 10%;
    left: 15%;
    animation: float1 7s ease-in-out infinite;
}

.node-2 {
    top: 35%;
    right: 20%;
    animation: float2 6s ease-in-out infinite;
}

.node-3 {
    top: 55%;
    left: 10%;
    animation: float3 8s ease-in-out infinite;
}

.node-4 {
    bottom: 25%;
    right: 15%;
    animation: float4 7.5s ease-in-out infinite;
}

.node-5 {
    bottom: 8%;
    left: 25%;
    animation: float5 6.5s ease-in-out infinite;
}

.node-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(24,24,40,0.8);
    border: 2px solid rgba(106,130,251,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a82fb;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.4),
        0 0 24px rgba(106,130,251,0.25);
    transition: all 0.3s ease;
}

.flow-node:hover .node-icon {
    transform: scale(1.08);
    border-color: currentColor;
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.4),
        0 0 30px currentColor;
}

.node-icon svg {
    width: 26px;
    height: 26px;
}

.node-label {
    color: #d1d1e0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    max-width: 95px;
    line-height: 1.3;
}

.flow-connection {
    display: none;
}

/* Color variations for nodes */
.node-1 .node-icon {
    color: #ff7ee7;
    border-color: rgba(255,126,231,0.5);
    background: rgba(24,24,40,0.85);
}

.node-1:hover .node-icon {
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.4),
        0 0 30px rgba(255,126,231,0.5);
}

.node-2 .node-icon {
    color: #6a82fb;
    border-color: rgba(106,130,251,0.5);
}

.node-2:hover .node-icon {
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.4),
        0 0 30px rgba(106,130,251,0.5);
}

.node-3 .node-icon {
    color: #b983ff;
    border-color: rgba(185,131,255,0.5);
}

.node-3:hover .node-icon {
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.4),
        0 0 30px rgba(185,131,255,0.5);
}

.node-4 .node-icon {
    color: #ff9f6a;
    border-color: rgba(255,159,106,0.5);
}

.node-4:hover .node-icon {
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.4),
        0 0 30px rgba(255,159,106,0.5);
}

.node-5 .node-icon {
    color: #3fffa8;
    border-color: rgba(63,255,168,0.5);
}

.node-5:hover .node-icon {
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.4),
        0 0 30px rgba(63,255,168,0.5);
}

/* Animations */
@keyframes floatWeb {
    0%, 100% {
        transform: translate(-50%, -50%) rotateY(-5deg) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(-5deg) translateY(-25px);
    }
}
@keyframes floatMobile {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
/* Individual float animations for each node */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-15px, -20px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(12px, -18px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, 15px);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(18px, -12px);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-14px, -16px);
    }
}

/* Premium Background - US Agency Style */
.hero-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 15%, rgba(106,130,251,0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 85%, rgba(255,126,231,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(138,99,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 30%, rgba(185,131,255,0.08) 0%, transparent 55%);
}

.bg-spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: pulseLight 10s ease-in-out infinite;
}

.bg-spotlight-1 {
    top: -20%;
    left: 5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(106,130,251,0.4) 0%, rgba(138,99,255,0.2) 35%, transparent 70%);
}

.bg-spotlight-2 {
    bottom: -20%;
    right: 0%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,126,231,0.35) 0%, rgba(255,99,170,0.15) 35%, transparent 70%);
    animation-delay: 5s;
}

.bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(106,130,251,0.05) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(106,130,251,0.05) 1.5px, transparent 1.5px),
        linear-gradient(rgba(255,126,231,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,126,231,0.03) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    opacity: 0.5;
}

.bg-mesh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
}

@keyframes pulseLight {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Responsiveness for mobile */
@media (max-width: 1200px) {
    .hero {
        padding: 40px 30px 60px 30px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-visual {
        height: 550px;
    }
    .visual-web {
        width: 450px;
        height: 300px;
    }
    .visual-mobile {
        width: 140px;
        height: 280px;
        bottom: 50px;
        right: 30px;
    }
    .flow-node {
        gap: 5px;
    }
    
    .node-icon {
        width: 44px;
        height: 44px;
    }
    
    .node-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .node-label {
        font-size: 0.65rem;
        max-width: 75px;
    }
    
    /* Adjusted positions for tablet */
    .node-1 {
        top: 8%;
        left: 12%;
    }
    
    .node-2 {
        top: 30%;
        right: 18%;
    }
    
    .node-3 {
        top: 50%;
        left: 8%;
    }
    
    .node-4 {
        bottom: 22%;
        right: 12%;
    }
    
    .node-5 {
        bottom: 6%;
        left: 20%;
    }
}
@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: 1.3rem;
    }
    .nav-items {
        display: none;
    }
    .nav .btn-header {
        display: none;
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
        width: 24px;
        height: 24px;
    }
    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 4px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.2s ease,
                    background-color 0.3s ease;
    }
    .hamburger span:nth-child(1) {
        top: 2px;
    }
    .hamburger span:nth-child(2) {
        top: 11px;
    }
    .hamburger span:nth-child(3) {
        bottom: 2px;
    }
    .hamburger.active span {
        background-color: #ff7ee7;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        width: 100%;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        width: 100%;
    }
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 25, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        padding: 0 20px;
    }
    .nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav.active .nav-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 60px;
        width: 100%;
        max-width: 320px;
    }
    .nav a {
        margin: 0;
        display: block;
        font-size: 28px;
        color: #fff;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        text-decoration: none;
    }
    .nav-items a {
        width: 100%;
    }
    .nav.active .nav-items a {
        opacity: 1;
        transform: translateY(0);
    }
    .nav.active .nav-items a:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav.active .nav-items a:nth-child(2) {
        transition-delay: 0.2s;
    }
    .nav.active .nav-items a:nth-child(3) {
        transition-delay: 0.3s;
    }
    .nav.active .btn-header {
        display: inline-block;
        margin-top: 0;
        padding: 16px 30px;
        font-size: 18px;
        background: linear-gradient(90deg, #ff7ee7, #6a82fb);
        color: #fff !important;
        border-radius: 12px;
        font-weight: bold;
        text-align: center;
        width: 80%;
        max-width: 280px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        box-shadow: 0 4px 20px rgba(106, 130, 251, 0.3);
    }
    .nav.active .btn-header {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }
    body.menu-open {
        overflow: hidden;
    }
    .hero {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .typing-tagline {
        font-size: 1.1rem;
        min-height: 1.5rem;
        margin-bottom: 14px;
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 24px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 28px;
        justify-content: center;
    }
    
    .btn-main {
        padding: 15px 32px;
        font-size: 1.05rem;
        display: inline-block;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-benefits {
        gap: 14px;
        align-items: center;
    }
    
    .hero-benefit {
        gap: 10px;
    }
    
    .benefit-icon {
        width: 18px;
        height: 18px;
    }
    
    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .benefit-text {
        font-size: 0.88rem;
    }
    
    .hero-visual {
        height: 450px;
        order: -1;
    }
    
    .visual-web {
        width: 350px;
        height: 240px;
    }
    
    .visual-mobile {
        width: 120px;
        height: 240px;
        bottom: 40px;
        right: 20px;
    }
    
    /* Mobile - smaller nodes scattered */
    .flow-node {
        gap: 3px;
    }
    
    .node-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .node-icon svg {
        width: 17px;
        height: 17px;
    }
    
    .node-label {
        font-size: 0.58rem;
        max-width: 65px;
    }
    
    /* Mobile positions - around mockups */
    .node-1 {
        top: 5%;
        left: 8%;
    }
    
    .node-2 {
        top: 25%;
        right: 10%;
    }
    
    .node-3 {
        top: 48%;
        left: 5%;
    }
    
    .node-4 {
        bottom: 20%;
        right: 8%;
    }
    
    .node-5 {
        bottom: 3%;
        left: 15%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 16px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }
    
    .typing-tagline {
        font-size: 1rem;
        min-height: 1.3rem;
        margin-bottom: 12px;
        justify-content: center;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-cta {
        margin-bottom: 24px;
        gap: 10px;
    }
    
    .btn-main {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-benefits {
        gap: 12px;
        align-items: center;
    }
    
    .hero-benefit {
        gap: 8px;
    }
    
    .benefit-icon {
        width: 16px;
        height: 16px;
    }
    
    .benefit-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .benefit-text {
        font-size: 0.82rem;
    }
    
    .hero-visual {
        height: 380px;
    }
    
    .visual-web {
        width: 300px;
        height: 200px;
    }
    
    .visual-mobile {
        width: 100px;
        height: 200px;
        bottom: 35px;
        right: 15px;
    }
    
    /* Small mobile - keep nodes visible but smaller */
    .node-icon {
        width: 32px;
        height: 32px;
    }
    
    .node-icon svg {
        width: 15px;
        height: 15px;
    }
    
    .node-label {
        font-size: 0.55rem;
        max-width: 60px;
    }
    
    /* Compact positions for small screens */
    .node-1 {
        top: 4%;
        left: 5%;
    }
    
    .node-2 {
        top: 22%;
        right: 8%;
    }
    
    .node-3 {
        top: 45%;
        left: 3%;
    }
    
    .node-4 {
        bottom: 18%;
        right: 5%;
    }
    
    .node-5 {
        bottom: 2%;
        left: 10%;
    }
}

/* Projects section - full width like hero */
.projects {
    background: #181828;
    padding: 64px 0 80px 0;
    width: 100%;
}
.projects-header {
    text-align: center;
    margin-bottom: 40px;
}
.projects-icon {
    font-size: 2rem;
    color: #ff7ee7;
    margin-bottom: 8px;
}
.projects h2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 0 12px 0;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.projects-header p {
    color: #d1d1e0;
    font-size: 1.15rem;
    margin: 0 auto;
    max-width: 600px;
}
.projects-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.projects-carousel-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 1000px;
    padding: 24px 0;
}
.project-card {
    position: relative;
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 320px;
    background: linear-gradient(135deg, #1e1e30 0%, #252538 100%);
    border-radius: 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 
        0 4px 24px rgba(0,0,0,0.3),
        0 0 32px rgba(185,131,255,0.08),
        0 0 48px rgba(255,126,231,0.05),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
}

/* Gradient border effect - matching Services cards */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(106,130,251,0.4), rgba(255,126,231,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.4),
        0 0 40px rgba(185,131,255,0.15),
        0 0 60px rgba(255,126,231,0.10),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.project-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(106,130,251,0.6), rgba(255,126,231,0.5));
}

.project-image {
    position: relative;
    width: 100%;
    height: 180px;
    background: #1a1a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Mockup container styling */
.project-mockup {
    background: linear-gradient(135deg, #1a1a28 0%, #1e1e30 100%);
}

.project-mockup-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(106,130,251,0.25);
    opacity: 0.85;
    backdrop-filter: blur(8px);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-tag {
    opacity: 1;
}

.project-info {
    padding: 24px 22px 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.project-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.project-info p {
    margin: 0;
    color: #d1d1e0;
    font-size: 1.05rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.carousel-arrow {
    background: #23233a;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin: 0 6px;
    box-shadow: 0 2px 12px rgba(106,130,251,0.2);
    transition: background 0.2s, box-shadow 0.2s;
    z-index: 2;
}
.carousel-arrow:hover {
    background: #2d2d44;
    box-shadow: 0 6px 24px rgba(255,126,231,0.18);
}
@media (max-width: 900px) {
    .project-card {
        min-width: 90vw;
        max-width: 90vw;
        flex: 0 0 90vw;
    }
    .projects-carousel-track {
        max-width: 98vw;
        gap: 16px;
    }
    .project-info {
        padding: 22px 20px 22px 20px;
    }
    .project-info h3 {
        font-size: 1.25rem;
    }
    .project-info p {
        font-size: 1.05rem;
    }
    .project-tag {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
}

/* Why Work With Us section */
.why-work-with-us {
    background: #181828;
    padding: 120px 0;
    width: 100%;
}
.why-work-with-us-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 80px;
    padding: 0 40px;
}
.why-work-with-us-image {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-work-with-us-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.4),
        0 0 40px rgba(106,130,251,0.15),
        0 0 60px rgba(255,126,231,0.1);
}
.why-work-with-us-content {
    flex: 1;
    color: #fff;
    max-width: 700px;
}
.why-work-with-us-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.why-work-with-us-subtitle {
    color: #b6b6d6;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Benefits Grid - 2x2 layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

/* Benefit Box - matching Services card style */
.benefit-box {
    position: relative;
    background: linear-gradient(135deg, #1e1e30 0%, #252538 100%);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Gradient border effect - matching Services */
.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(106,130,251,0.4), rgba(255,126,231,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.4),
        0 0 32px rgba(106,130,251,0.12),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.benefit-box:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(106,130,251,0.6), rgba(255,126,231,0.5));
}

/* Benefit icon styling - matches Services icons */
.benefit-icon-wrapper {
    margin-bottom: 18px;
}

.benefit-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(24,24,40,0.85);
    border: 2px solid rgba(255,126,231,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7ee7;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 18px rgba(0,0,0,0.4),
        0 0 24px rgba(255,126,231,0.3);
    transition: all 0.3s ease;
}

.benefit-icon-box svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.benefit-box:hover .benefit-icon-box {
    transform: scale(1.08);
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.5),
        0 0 32px rgba(255,126,231,0.4);
}

/* Icon color variations */
.benefit-icon-blue {
    color: #6a82fb;
    border-color: rgba(106,130,251,0.5);
    box-shadow: 
        0 4px 18px rgba(0,0,0,0.4),
        0 0 24px rgba(106,130,251,0.3);
}

.benefit-box:hover .benefit-icon-blue {
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.5),
        0 0 32px rgba(106,130,251,0.4);
}

.benefit-icon-purple {
    color: #b983ff;
    border-color: rgba(185,131,255,0.5);
    box-shadow: 
        0 4px 18px rgba(0,0,0,0.4),
        0 0 24px rgba(185,131,255,0.3);
}

.benefit-box:hover .benefit-icon-purple {
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.5),
        0 0 32px rgba(185,131,255,0.4);
}

.benefit-icon-green {
    color: #3fffa8;
    border-color: rgba(63,255,168,0.5);
    box-shadow: 
        0 4px 18px rgba(0,0,0,0.4),
        0 0 24px rgba(63,255,168,0.3);
}

.benefit-box:hover .benefit-icon-green {
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.5),
        0 0 32px rgba(63,255,168,0.4);
}

.benefit-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.benefit-box p {
    margin: 0;
    color: #b6b6d6;
    font-size: 0.98rem;
    line-height: 1.6;
}

.btn-cta {
    margin-top: 0;
    font-size: 1.1rem;
    padding: 16px 44px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(255,126,231,0.18);
    display: inline-block;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,126,231,0.3);
}

/* Responsive for Why Work With Us section */
@media (max-width: 1100px) {
    .why-work-with-us {
        padding: 90px 0;
    }
    .why-work-with-us-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 30px;
    }
    .why-work-with-us-image {
        flex: 0 0 auto;
        order: -1;
    }
    .why-work-with-us-image img {
        max-width: 90vw;
    }
    .why-work-with-us-content {
        max-width: 100%;
        text-align: left;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .why-work-with-us {
        padding: 70px 0;
    }
    .why-work-with-us-container {
        gap: 40px;
        padding: 0 20px;
    }
    .why-work-with-us-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    .why-work-with-us-subtitle {
        font-size: 1.05rem;
        text-align: center;
    }
    .benefits-grid {
        gap: 18px;
        max-width: 100%;
    }
    .benefit-box {
        padding: 24px 20px;
    }
    .benefit-icon-box {
        width: 48px;
        height: 48px;
    }
    .benefit-icon-box svg {
        width: 22px;
        height: 22px;
    }
    .benefit-box h3 {
        font-size: 1.15rem;
    }
    .benefit-box p {
        font-size: 0.96rem;
    }
    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 15px 32px;
    }
}

/* Services section - Modern US Agency Style */
.services {
    position: relative;
    background: #181828;
    padding: 110px 40px 120px 40px;
    width: 100%;
    overflow: hidden;
}

.services-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 56px;
}

.services-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.services-header p {
    color: #b6b6d6;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

.services-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, #1e1e30 0%, #252538 100%);
    border-radius: 18px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 
        0 4px 24px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Gradient border effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(106,130,251,0.4), rgba(255,126,231,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.4),
        0 0 40px rgba(106,130,251,0.15),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.service-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(106,130,251,0.6), rgba(255,126,231,0.5));
}

/* Service icon styling - matches HERO workflow nodes */
.service-icon-wrapper {
    margin-bottom: 28px;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(24,24,40,0.85);
    border: 2px solid rgba(255,126,231,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7ee7;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        0 0 28px rgba(255,126,231,0.3);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 
        0 6px 28px rgba(0,0,0,0.5),
        0 0 36px rgba(255,126,231,0.5);
}

/* Icon color variations */
.service-icon-ai {
    color: #b983ff;
    border-color: rgba(185,131,255,0.5);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        0 0 28px rgba(185,131,255,0.3);
}

.service-card:hover .service-icon-ai {
    box-shadow: 
        0 6px 28px rgba(0,0,0,0.5),
        0 0 36px rgba(185,131,255,0.5);
}

.service-icon-automation {
    color: #ff9f6a;
    border-color: rgba(255,159,106,0.5);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        0 0 28px rgba(255,159,106,0.3);
}

.service-card:hover .service-icon-automation {
    box-shadow: 
        0 6px 28px rgba(0,0,0,0.5),
        0 0 36px rgba(255,159,106,0.5);
}

.service-card h3 {
    margin: 0 0 16px 0;
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    margin: 0 0 28px 0;
    color: #d1d1e0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.service-card ul li {
    color: #b6b6d6;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ff7ee7, #6a82fb);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,126,231,0.4);
}

/* Highlighted AI card - premium subtle highlight */
.service-card-highlighted {
    background: linear-gradient(135deg, #1e1e34 0%, #252540 100%);
    position: relative;
}

/* Stronger border (10-15% more) */
.service-card-highlighted::before {
    padding: 2px;
    background: linear-gradient(135deg, rgba(106,130,251,0.6), rgba(255,126,231,0.55));
    opacity: 0.85;
}

.service-card-highlighted:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(106,130,251,0.75), rgba(255,126,231,0.7));
}

/* Subtle premium glow (pink → purple → light blue) */
.service-card-highlighted {
    box-shadow: 
        0 4px 28px rgba(0,0,0,0.35),
        0 0 32px rgba(185,131,255,0.2),
        0 0 48px rgba(255,126,231,0.12),
        0 0 64px rgba(106,130,251,0.08),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.service-card-highlighted:hover {
    box-shadow: 
        0 12px 44px rgba(0,0,0,0.4),
        0 0 40px rgba(185,131,255,0.25),
        0 0 60px rgba(255,126,231,0.15),
        0 0 80px rgba(106,130,251,0.1),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Enhanced AI icon glow (10-15% stronger) */
.service-card-highlighted .service-icon-ai {
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        0 0 34px rgba(185,131,255,0.4);
}

.service-card-highlighted:hover .service-icon-ai {
    box-shadow: 
        0 6px 28px rgba(0,0,0,0.5),
        0 0 42px rgba(185,131,255,0.55);
}

/* Premium badge "Most in demand" */
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(185,131,255,0.15), rgba(106,130,251,0.12));
    border: 1px solid rgba(185,131,255,0.3);
    color: #d1d1e0;
    backdrop-filter: blur(8px);
    z-index: 10;
    white-space: nowrap;
    box-shadow: 
        0 2px 12px rgba(185,131,255,0.15),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Services background effects - matching HERO */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.services-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(106,130,251,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255,126,231,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(138,99,255,0.08) 0%, transparent 60%);
}

.services-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(106,130,251,0.04) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(106,130,251,0.04) 1.5px, transparent 1.5px),
        linear-gradient(rgba(255,126,231,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,126,231,0.02) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    opacity: 0.4;
}

.services-bg-mesh::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 40%, #181828 100%);
}

/* Responsive for services section */
@media (max-width: 1100px) {
    .services {
        padding: 80px 30px 90px 30px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
    }
    
    .service-card {
        padding: 42px 38px;
    }
    
    .service-icon-wrapper {
        margin-bottom: 26px;
    }
    
    .service-card p {
        margin-bottom: 26px;
    }
    
    .service-card ul li {
        margin-bottom: 11px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 20px 80px 20px;
    }
    
    .services-header {
        margin-bottom: 44px;
    }
    
    .services-header h2 {
        font-size: 2rem;
        margin-bottom: 14px;
    }
    
    .services-header p {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .services-list {
        gap: 28px;
    }
    
    .service-card {
        padding: 38px 30px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    
    .service-card p {
        margin-bottom: 24px;
        line-height: 1.65;
    }
    
    .service-card ul li {
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    /* Keep AI highlighting on mobile */
    .service-card-highlighted {
        box-shadow: 
            0 4px 28px rgba(0,0,0,0.35),
            0 0 32px rgba(185,131,255,0.2),
            0 0 48px rgba(255,126,231,0.12),
            inset 0 1px 0 rgba(255,255,255,0.04);
    }
    
    .service-badge {
        top: 14px;
        right: 14px;
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .service-card-highlighted .service-icon-ai {
        box-shadow: 
            0 4px 20px rgba(0,0,0,0.4),
            0 0 32px rgba(185,131,255,0.38);
    }
}

/* Pricing section (cards) */
.pricing {
    background: #181828;
    padding: 64px 0 80px 0;
    width: 100%;
}
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}
.pricing-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 12px 0;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-subtitle {
    color: #b6b6d6;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}
.pricing-footer-note {
    text-align: center;
    color: #b6b6d6;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 600px;
    padding: 0 20px;
}
.pricing-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
}
.pricing-card {
    background: #23233a;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(106,130,251,0.10);
    overflow: hidden;
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 18px 20px 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
    flex-shrink: 0;
}
.pricing-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 40px rgba(255,126,231,0.18);
}
.pricing-card-popular {
    background: linear-gradient(120deg, #23233a 80%, #6a82fb22 100%);
    border: 2px solid #6a82fb;
    box-shadow: 0 8px 40px rgba(106,130,251,0.18);
    position: relative;
}
.popular-badge {
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 12px;
    margin-left: 8px;
}
.pricing-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #fff;
}
.pricing-desc {
    color: #d1d1e0;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff7ee7;
    margin-bottom: 18px;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    width: 100%;
}
.pricing-card ul li {
    color: #b6b6d6;
    font-size: 1rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
}
.pricing-card ul li::before {
    content: "✔";
    color: #6a82fb;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}
.pricing-note {
    color: #b6b6d6;
    font-size: 0.98rem;
    margin-top: auto;
}
.btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    margin: 18px 0 10px 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(106,130,251,0.2);
    border: none;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    cursor: pointer;
}
.btn-cta:hover {
    box-shadow: 0 6px 24px rgba(255,126,231,0.3);
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(90deg, #6a82fb, #ff7ee7);
}

/* Maintenance plans */
.pricing-maintenance {
    margin-top: 48px;
}
.pricing-maintenance h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.maintenance-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding-left: 48px;
    padding-right: 48px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}
.maintenance-card {
    background: #23233a;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(106,130,251,0.10);
    overflow: hidden;
    width: 300px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px 22px 22px;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}
.maintenance-card-popular {
    background: linear-gradient(120deg, #23233a 80%, #6a82fb22 100%);
    border: 2px solid #6a82fb;
    box-shadow: 0 8px 40px rgba(106,130,251,0.18);
}
.maintenance-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #fff;
}
.maintenance-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff7ee7;
    margin-bottom: 14px;
}
.maintenance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.maintenance-card ul li {
    color: #b6b6d6;
    font-size: 1rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
}
.maintenance-card ul li::before {
    content: "✔";
    color: #6a82fb;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

/* Responsive for pricing section */
@media (max-width: 900px) {
    .pricing-list {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        max-width: 98vw;
    }
    .pricing-card {
        width: 95vw;
        max-width: 400px;
    }
}

.pricing-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.pricing-bottom {
    margin-top: auto;
    text-align: center;
}

/* Reassurance text pod tlačítkem */
.pricing-reassurance {
    font-size: 11px;
    color: #8b8ba8;
    margin: 10px 0 0 0;
    line-height: 1.4;
}

/* Addons section */
.addons {
    background: #181828;
    padding: 64px 0 80px 0;
    width: 100%;
}
.addons-header {
    text-align: center;
    margin-bottom: 32px;
}
.addons-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    background: linear-gradient(90deg, #b983ff, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.addons-q {
    color: #b983ff;
}
.addons-header p {
    color: #b6b6d6;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
}
.addons-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 240px);
    grid-template-rows: repeat(2, 240px);
    gap: 36px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
}
.addon-card-custom {
    background: #20203a;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(106,130,251,0.10);
    width: 240px;
    height: 240px;
    overflow: hidden;
    padding: 24px 12px 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.addon-card-custom:hover {
    box-shadow: 0 8px 40px rgba(255,126,231,0.18);
    transform: translateY(-4px) scale(1.03);
}
.addon-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.addon-icon-bg.pink {
    background: linear-gradient(135deg, #ff7ee7 60%, #b983ff 100%);
}
.addon-icon-bg.purple {
    background: linear-gradient(135deg, #b983ff 60%, #6a82fb 100%);
}
.addon-icon-bg.blue {
    background: linear-gradient(135deg, #6a82fb 60%, #3fffa8 100%);
}
.addon-icon-bg.green {
    background: linear-gradient(135deg, #3fffa8 60%, #6a82fb 100%);
}
.addon-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 6px;
}
.addon-price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}
.addon-price.pink {
    color: #ff7ee7;
}
.addon-price.purple {
    color: #b983ff;
}
.addon-price.blue {
    color: #6a82fb;
}
.addon-price.green {
    color: #3fffa8;
}
.addon-desc {
    color: #b6b6d6;
    font-size: 1rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95%;
}
/* Grid 3+2 layout */
.addons-grid-custom > .addon-card-custom:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 2;
    margin-right: 14px;
}
.addons-grid-custom > .addon-card-custom:nth-child(5) {
    grid-column: 2 / span 2;
    grid-row: 2;
    margin-left: 14px;
}
@media (max-width: 900px) {
    .addons-grid-custom {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 18px;
        max-width: 98vw;
    }
    .addon-card-custom {
        width: 95vw;
        max-width: 340px;
        height: auto;
    }
}

/* Footer section */
.footer {
    width: 100%;
    background: #181828;
    border-top: 1px solid #23233a;
    position: relative;
    padding: 40px 0 24px 0;
    margin-top: 48px;
    text-align: center;
    z-index: 2;
}
.footer-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 60px;
    background: linear-gradient(180deg, #6a82fb44 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.footer-content {
    position: relative;
    z-index: 2;
    color: #b6b6d6;
    font-size: 1rem;
    margin-bottom: 10px;
}
.footer-links {
    margin: 0 0 10px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #6a82fb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}
.footer-links a:hover {
    color: #ff7ee7;
}
.footer-copy {
    color: #23233a;
    font-size: 0.95rem;
    margin-top: 8px;
}
@media (max-width: 700px) {
    .footer {
        padding: 28px 0 16px 0;
    }
    .footer-content, .footer-links {
        font-size: 0.98rem;
    }
    .footer-links {
        gap: 14px;
    }
}

/* Contact Form section */
.contact-section {
    width: 100%;
    background: #181828;
    padding: 64px 0 32px 0;
    position: relative;
    z-index: 2;
}
.contact-section::before {
    display: none;
}
.contact-container {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 auto;
    background: #23233a;
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(106,130,251,0.10);
    padding: 40px 32px 32px 32px;
    text-align: center;
}
.contact-container h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-container p {
    color: #b6b6d6;
    font-size: 1.08rem;
    margin-bottom: 28px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.form-group label {
    color: #b6b6d6;
    font-size: 1rem;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid #2d2d44;
    background: #181828;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1.5px solid #6a82fb;
    box-shadow: 0 0 0 2px #6a82fb33;
}
.contact-btn {
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 14px 0;
    border-radius: 10px;
    width: 100%;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: 0 2px 12px rgba(106,130,251,0.2);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.contact-btn:hover {
    box-shadow: 0 6px 24px rgba(255,126,231,0.3);
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(90deg, #6a82fb, #ff7ee7);
}
@media (max-width: 700px) {
    .contact-container {
        max-width: 98vw;
        padding: 24px 6vw 18px 6vw;
    }
}

/* New Project Intake Form Styles - Premium Redesign */
.contact-container-new {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto;
    background: linear-gradient(135deg, #23233a 0%, #1e1e32 100%);
    border-radius: 24px;
    box-shadow: 0 8px 48px rgba(106,130,251,0.18), 0 0 0 1px rgba(106,130,251,0.08);
    padding: 48px 48px 40px 48px;
}

.contact-container-new h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: #b6b6d6;
    font-size: 1.1rem;
    margin-bottom: 36px;
    text-align: center;
    line-height: 1.5;
}

/* Selected Package Banner */
.selected-package-banner {
    background: linear-gradient(90deg, rgba(255,126,231,0.12), rgba(106,130,251,0.12));
    border: 1.5px solid rgba(106,130,251,0.3);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 24px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.package-badge-label {
    color: #b6b6d6;
    font-size: 0.95rem;
    margin-right: 8px;
}

.package-badge-value {
    color: #a5b4fc;
    font-size: 1rem;
    font-weight: 600;
}

/* Success/Error Messages */
.form-message {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1rem;
    animation: fadeIn 0.4s ease;
}

.form-success {
    background: rgba(74, 222, 128, 0.12);
    border: 1.5px solid rgba(74, 222, 128, 0.3);
    color: #86efac;
}

.form-error {
    background: rgba(248, 113, 113, 0.12);
    border: 1.5px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
}

.hidden {
    display: none;
}

/* Form Grid Layout */
.project-intake-form {
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 36px;
}

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

.column-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e8e8f0;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

/* Form Fields */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-field label,
.form-field-full label {
    color: #d1d1e0;
    font-size: 1rem;
    font-weight: 500;
}

.required {
    color: #ff7ee7;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field select,
.form-field-full textarea,
.form-field-full input[type="file"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid #2d2d44;
    background: #181828;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field-full textarea:focus {
    outline: none;
    border: 1.5px solid #6a82fb;
    box-shadow: 0 0 0 2px rgba(106,130,251,0.2);
}

.form-field input.error,
.form-field select.error,
.form-field-full textarea.error {
    border-color: #ff9bd6;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23a5b4fc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.form-field select:hover {
    border-color: #4d4d64;
    box-shadow: 0 0 0 3px rgba(106,130,251,0.08);
}

.form-field select option {
    background: #181828;
    color: #ffffff;
    padding: 12px;
}

.form-field-full textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Custom File Upload Bar */
.file-input-hidden {
    display: none;
}

.file-upload-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid #2d2d44;
    background: #181828;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.file-upload-bar:hover {
    border-color: #3d3d54;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d1e0;
    font-size: 1rem;
    flex: 1;
}

.file-upload-icon {
    font-size: 1.1rem;
}

.file-browse-btn {
    padding: 8px 20px;
    border-radius: 8px;
    background: #2d2d44;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    border: 1px solid #3d3d54;
    flex-shrink: 0;
}

.file-browse-btn:hover {
    background: #3d3d54;
    transform: translateY(-1px);
}

.field-hint {
    color: #8a8aa8;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Pill Checkbox Buttons */
.checkbox-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pill-checkbox {
    position: relative;
    display: block;
    cursor: pointer;
    flex: 0 0 calc(50% - 7px);
}

.pill-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pill-label {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    background: #181828;
    border: 1.5px solid #2d2d44;
    color: #b6b6d6;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s ease;
    user-select: none;
    box-sizing: border-box;
}

.pill-checkbox:hover .pill-label {
    border-color: #4d4d64;
    background: #1e1e34;
}

.pill-checkbox input[type="checkbox"]:checked + .pill-label {
    background: linear-gradient(90deg, rgba(255,126,231,0.15), rgba(106,130,251,0.15));
    border-color: #6a82fb;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(106,130,251,0.3);
}

/* Submit Button & Reassurance */
.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
}

.btn-submit-project {
    width: 100%;
    max-width: 360px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    color: #fff;
    box-shadow: 0 4px 20px rgba(106,130,251,0.25);
}

.btn-submit-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255,126,231,0.35);
}

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

.form-reassurance {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #8a8aa8;
    text-align: center;
    line-height: 1.5;
    max-width: 480px;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 960px) {
    .contact-container-new {
        max-width: 720px;
        padding: 44px 36px;
    }
    
    .form-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-container-new {
        padding: 40px 32px;
    }
    
    .contact-container-new h2 {
        font-size: 2.2rem;
    }
    
    .form-column {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-container-new {
        padding: 36px 28px;
    }
    
    .contact-container-new h2 {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }
    
    .column-title {
        font-size: 1.3rem;
    }
    
    .form-grid {
        gap: 28px;
    }
    
    .checkbox-pills {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-container-new {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .contact-container-new h2 {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .contact-container-new {
        padding: 28px 20px;
        border-radius: 18px;
    }
    
    .contact-container-new h2 {
        font-size: 1.65rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .selected-package-banner {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .column-title {
        font-size: 1.2rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field-full textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .pill-label {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .checkbox-pills {
        grid-template-columns: 1fr;
    }
    
    .btn-submit-project {
        max-width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .form-reassurance {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .file-upload-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .file-upload-label {
        justify-content: center;
    }
    
    .file-browse-btn {
        text-align: center;
    }
}

.faq-section {
    background: #181828;
    padding: 64px 0 48px 0;
    width: 100%;
}
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}
.faq-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #ff7ee7, #6a82fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: #23233a;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(106,130,251,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:hover {
    box-shadow: 0 4px 32px rgba(255,126,231,0.10);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    text-align: left;
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-question:focus {
    outline: none;
    background: #23234a;
}
.faq-toggle {
    font-size: 1.5rem;
    color: #6a82fb;
    margin-left: 12px;
    transition: transform 0.2s;
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: #ff7ee7;
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    background: linear-gradient(90deg, #23233a 80%, #6a82fb22 100%);
    color: #b6b6d6;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
    min-height: 0;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > div {
    padding: 0 24px 18px 24px;
}
@media (max-width: 700px) {
    .faq-section {
        padding: 48px 0 32px 0;
    }
    .faq-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
        padding: 0 20px;
    }
    .faq-container {
        padding: 0 12px;
    }
    .faq-list {
        gap: 14px;
    }
    .faq-item {
        border-radius: 12px;
        background: linear-gradient(120deg, #23233a 80%, #6a82fb10 100%);
    }
    .faq-question {
        font-size: 1.1rem;
        padding: 18px 16px;
        line-height: 1.4;
    }
    .faq-toggle {
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-left: 16px;
    }
    .faq-answer > div {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 16px;
        color: #d1d1e0;
    }
    .faq-item.open .faq-answer > div {
        padding: 4px 16px 18px 16px;
    }
    .faq-item:hover {
        box-shadow: 0 4px 24px rgba(255,126,231,0.08);
    }
} 