/* ===== CSS Variables ===== */
:root {
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-200: #a5f3fc;
    --cyan-300: #67e8f9;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-700: #0e7490;
    --cyan-800: #155e75;
    --cyan-900: #164e63;
    
    --dark-900: #0a0a0f;
    --dark-800: #12121a;
    --dark-700: #1a1a24;
    --dark-600: #24242f;
    --dark-500: #2e2e3a;
    
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    
    --gradient-primary: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
    --gradient-dark: linear-gradient(135deg, var(--cyan-700), var(--cyan-500));
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.3);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-900);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: var(--cyan-400);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-900);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--dark-900);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo-img {
    height: 35px;
    width: auto;
}

.logo-icon {
    color: var(--cyan-400);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--gray-300);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--dark-900);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.02);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* Hide mobile-only CTA on desktop */
.nav-links-cta {
    display: none;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--dark-900);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--cyan-600);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan-500);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: var(--cyan-600);
    top: -150px;
    left: -150px;
    animation: float 9s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: var(--cyan-400);
    bottom: -100px;
    right: -100px;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: var(--cyan-300);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--cyan-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan-400);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 5px;
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-500);
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cyan-400);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: var(--dark-800);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-700);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--cyan-400);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-400);
    font-weight: 500;
}

.service-link i {
    transition: var(--transition-normal);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    background: var(--dark-900);
}

/* ===== How We Work Section ===== */
.how-we-work {
    padding: 120px 0;
    background: var(--dark-800);
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.process-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.process-card {
    flex: 1;
    max-width: 320px;
    position: relative;
    border-radius: 24px;
    background: var(--dark-700);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400), var(--cyan-600));
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(15px);
}

.process-card:hover .card-glow {
    opacity: 0.6;
}

.card-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), transparent 50%, rgba(6, 182, 212, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    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 ease;
}

.process-card:hover .card-border {
    opacity: 1;
}

.card-inner {
    padding: 35px 30px;
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-badge {
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-icon-float {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark-900);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    animation: icon-float 3s ease-in-out infinite;
}

.process-card:nth-child(3) .step-icon-float { animation-delay: -1s; }
.process-card:nth-child(5) .step-icon-float { animation-delay: -2s; }

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.process-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.process-card > .card-inner > p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.card-visual {
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Visual Dots Animation */
.visual-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.visual-dots span {
    width: 12px;
    height: 12px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

.visual-dots span:nth-child(2) { animation-delay: 0.2s; }
.visual-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Visual Bars Animation */
.visual-bars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 50px;
}

.visual-bars span {
    width: 20px;
    height: var(--h);
    background: linear-gradient(180deg, var(--cyan-400), var(--cyan-600));
    border-radius: 4px 4px 0 0;
    animation: bar-grow 2s ease-in-out infinite;
}

.visual-bars span:nth-child(2) { animation-delay: 0.2s; }
.visual-bars span:nth-child(3) { animation-delay: 0.4s; }
.visual-bars span:nth-child(4) { animation-delay: 0.6s; }

@keyframes bar-grow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

/* Visual Chart Animation */
.visual-chart {
    width: 100%;
    height: 50px;
}

.visual-chart svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-line 3s ease-in-out infinite;
}

@keyframes draw-line {
    0% { stroke-dashoffset: 200; }
    50%, 100% { stroke-dashoffset: 0; }
}

/* Process Connector */
.process-connector {
    width: 60px;
    flex-shrink: 0;
}

.process-connector svg {
    width: 100%;
    height: 20px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-around 20s ease-in-out infinite;
}

.el-1 { top: 15%; left: 5%; animation-delay: 0s; }
.el-2 { top: 60%; left: 8%; animation-delay: -5s; }
.el-3 { top: 20%; right: 8%; animation-delay: -10s; }
.el-4 { top: 70%; right: 5%; animation-delay: -15s; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(10deg); }
    50% { transform: translate(-10px, -50px) rotate(-5deg); }
    75% { transform: translate(30px, -20px) rotate(15deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .process-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-card {
        max-width: 100%;
        width: 100%;
    }
    
    .process-connector {
        width: 40px;
        height: 40px;
        transform: rotate(90deg);
    }
    
    .float-element {
        display: none;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    color: var(--gray-400);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
}

.feature i {
    color: var(--cyan-400);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 500px;
}

.about-shape {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 30px;
    opacity: 0.1;
}

.floating-card {
    position: absolute;
    background: var(--dark-700);
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 40px;
    left: -20px;
}

.card-1 i {
    color: var(--cyan-400);
    font-size: 1.5rem;
}

.card-2 {
    bottom: 60px;
    right: -20px;
    flex-direction: column;
    text-align: center;
    animation-delay: -3s;
}

.big-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan-400);
}

/* ===== Email Design Showcase Section ===== */
.showcase {
    padding: 120px 0;
    background: var(--dark-800);
    overflow: hidden;
}

.showcase-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.showcase-scroll-track {
    display: flex;
    gap: 30px;
    animation: scroll 25s linear infinite;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.showcase-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-35%);
    }
}

.showcase-card {
    flex-shrink: 0;
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    height: 1000px;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.showcase-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
    border: 2px dashed rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 120px 0;
    background: var(--dark-900);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-700);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--cyan-400);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-900);
}

.author-avatar-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-800);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 30px;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 120px 0;
    background: var(--dark-800);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-700);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.faq-item.active {
    border-color: rgba(6, 182, 212, 0.5);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.faq-question h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--cyan-400);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--dark-900);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    color: var(--gray-400);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--cyan-400);
    font-size: 1.25rem;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--gray-400);
}

.contact-item a:hover {
    color: var(--cyan-400);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-700);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--dark-900);
}

.contact-form-wrapper {
    background: var(--dark-700);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--dark-600);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan-500);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-700);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-800);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 20px;
    max-width: 300px;
}

.footer-cta {
    margin-top: 25px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.125rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--cyan-400);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-600);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: var(--dark-900);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--gray-500);
}

.footer-bottom-links a:hover {
    color: var(--cyan-400);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-wrapper {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-links.active + .nav-cta,
    .nav-links ~ .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .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);
    }
    
    /* Mobile menu overlay */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Show mobile CTA in nav menu */
    .nav-links-cta {
        display: block;
        margin-top: 10px;
    }
    
    .nav-links-cta .btn {
        width: auto;
        padding: 14px 32px;
        color: var(--dark-900);
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid,
    .showcase-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        margin: 20px auto 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Showcase cards responsive */
    .showcase-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        height: 750px;
    }
    
    .showcase-scroll-track {
        gap: 20px;
    }
    
    /* Clients logos responsive */
    .clients-logos {
        gap: 30px;
    }
    
    .client-logo img {
        max-width: 80px;
    }
    
    .your-brand-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .showcase-preview {
        padding: 20px;
    }
    
    .email-body {
        min-height: 180px;
        padding: 20px 15px;
    }
    
    /* Showcase cards mobile small */
    .showcase-card {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
        height: 650px;
    }
    
    .showcase-scroll-track {
        gap: 15px;
    }
    
    /* Section headers mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Reduce section padding on mobile */
    .services,
    .bento-section,
    .showcase,
    .testimonials,
    .faq,
    .contact,
    .final-cta {
        padding: 80px 0;
    }
    
    /* Testimonial cards mobile */
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* FAQ mobile */
    .faq-question {
        padding: 18px;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 0.9rem;
    }
    
    /* Contact form mobile */
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Clients logos mobile */
    .clients-logos {
        gap: 20px;
    }
    
    .client-logo img {
        max-width: 60px;
    }
    
    .your-brand-btn {
        padding: 10px 24px;
        font-size: 0.8rem;
    }
}

/* ===== Bento Grid Section ===== */
.bento-section {
    padding: 120px 0;
    background: var(--dark-900);
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    grid-template-areas:
        "large large tall small1"
        "large large tall small2"
        "wide wide graph medium";
}

.bento-item {
    background: var(--dark-700);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bento-item:hover {
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-4px);
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Bento Large Card */
.bento-large {
    grid-area: large;
    background: linear-gradient(145deg, var(--dark-700) 0%, var(--dark-800) 100%);
}

.bento-large .bento-content {
    justify-content: center;
    padding: 40px;
}

.bento-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--dark-900);
}

.bento-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.bento-item h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 600;
}

.bento-item p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-stats {
    display: flex;
    gap: 50px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bento-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan-400);
    display: block;
    line-height: 1.1;
}

.bento-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Bento Tall Card */
.bento-tall {
    grid-area: tall;
}

.bento-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cyan-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.bento-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.bento-list li i {
    color: var(--cyan-400);
    font-size: 0.7rem;
}

/* Bento Small Cards */
.bento-small {
    background: var(--dark-700);
}

.bento-small:nth-child(3) { grid-area: small1; }
.bento-small:nth-child(4) { grid-area: small2; }

.bento-small .bento-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.bento-icon-sm {
    width: 44px;
    height: 44px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.bento-icon-sm i {
    font-size: 1.1rem;
    color: var(--cyan-400);
}

.bento-small h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.bento-small p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Bento Medium Card */
.bento-medium {
    grid-area: medium;
}

.bento-tools {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
}

.tool-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tool-icon i {
    font-size: 2.25rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.tool-icon .klaviyo-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.bento-medium:hover .tool-icon i,
.bento-medium:hover .tool-icon .klaviyo-icon {
    color: var(--cyan-400);
}

.tool-icon span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Bento Wide Card */
.bento-wide {
    grid-area: wide;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, var(--dark-700) 100%);
}

.bento-wide .bento-content {
    padding: 28px 30px;
    justify-content: center;
}

.bento-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.cta-text h4 {
    margin-bottom: 6px;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-text p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

.bento-cta .btn {
    padding: 12px 24px;
}

/* Bento Graph Card */
.bento-graph {
    grid-area: graph;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    gap: 10px;
    margin: 20px 0 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--cyan-500) 0%, var(--cyan-700) 100%);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.chart-bar:last-child {
    opacity: 1;
}

.bento-graph:hover .chart-bar {
    opacity: 1;
}

.chart-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Bento Grid Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "large large"
            "tall small1"
            "tall small2"
            "medium graph"
            "wide wide";
    }
    
    .bento-large {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "large"
            "tall"
            "small1"
            "small2"
            "graph"
            "medium"
            "wide";
    }
    
    .bento-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .bento-stats {
        gap: 24px;
    }
}

/* ===== Client Logos Section ===== */
.clients-section {
    padding: 40px 0;
    background: var(--dark-800);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: -40px;
}

.clients-label {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.your-brand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    border: 2px dashed var(--cyan-500);
    border-radius: 12px;
    color: var(--cyan-400);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.your-brand-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-style: solid;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.client-logo {
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo span {
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .clients-logos {
        gap: 30px;
    }
    
    .client-logo {
        width: 100px;
    }
    
    .your-brand-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
