/* ===== CSS Variables ===== */
:root {
    --primary: #0e0eaa;
    --primary-dark: #0a0a88;
    --primary-light: #2776ea;
    --secondary: #2776ea;
    --accent: #2776ea;
    --gray: #585858;
    --gray-light: #8a8a8a;
    --gray-dark: #404040;
    --success: #2776ea;
    --bg: #f5f0e8;
    --bg-light: #faf7f2;
    --bg-lighter: #ffffff;
    --bg-card: #ffffff;
    --dark: #f5f0e8;
    --dark-light: #ebe5d9;
    --dark-lighter: #e0d9cc;
    --dark-card: #ffffff;
    --text: #1a1a2e;
    --text-muted: #585858;
    --white: #ffffff;
    --gradient-1: var(--primary);
    --gradient-2: var(--primary-light);
    --gradient-3: var(--primary);
    --gradient-4: var(--primary-light);
    --gradient-5: var(--gray);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 60px rgba(14, 14, 170, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.preloader-logo .logo-icon {
    color: var(--primary);
    font-size: 2.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: var(--primary);
    animation: preloaderProgress 2s ease-out forwards;
}

@keyframes preloaderProgress {
    to { width: 100%; }
}

/* ===== Custom Cursor ===== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(14, 14, 170, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
    background: rgba(14, 14, 170, 0.1);
}

@media (hover: none) {
    .cursor, .cursor-follower { display: none; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-icon {
    display: none;
}

.logo-text {
    display: none;
}

.logo-suffix {
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::before, .nav-links a.active::before {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-cta i {
    font-size: 0.7rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn i {
    font-size: 0.75rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-secondary {
    background: var(--gray);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-glass-white {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-glass-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* ===== Section Styles ===== */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag i {
    display: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.gradient-text {
    color: var(--primary-light);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--bg);
}

.gradient-orb {
    display: none;
}

.orb-1, .orb-2, .orb-3 {
    display: none;
}

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

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(14, 14, 170, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 14, 170, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.particles {
    position: absolute;
    inset: 0;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.hero-badge:hover {
    background: var(--white);
    border-color: var(--primary);
}

.hero-badge:hover .badge-arrow {
    transform: translateX(4px);
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--primary-light);
}

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

.badge-arrow {
    transition: transform 0.3s ease;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 50px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.stat {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-plus {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 1.5s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to { opacity: 1; }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.marquee-dot {
    color: var(--primary-light);
}

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

/* ===== Trusted Section ===== */
.trusted-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--bg-light);
}

.trusted-header {
    text-align: center;
    margin-bottom: 40px;
}

.trusted-header span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.logo-item {
    opacity: 0.4;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* ===== Services Preview ===== */
.services-preview {
    padding: 40px 0;
    background: var(--bg-light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--primary);
    opacity: 0;
    filter: blur(60px);
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card:hover .service-glow {
    opacity: 0.1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 28px;
    position: relative;
}

.service-icon.icon-orange { background: var(--primary-light); }
.service-icon.icon-cyan { background: var(--primary); }
.service-icon.icon-purple { background: var(--primary-light); }
.service-icon.icon-green { background: var(--primary); }
.service-icon.icon-red { background: var(--gray); }

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-tags span {
    padding: 6px 14px;
    background: var(--bg);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

.services-cta {
    text-align: center;
}

/* ===== About Preview ===== */
.about-preview {
    padding: 140px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 16px;
}

.about-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.about-features {
    margin-bottom: 36px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(39, 118, 234, 0.1);
    border: 1px solid rgba(39, 118, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.visual-bg {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.03;
}

.visual-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stats {
    display: flex;
    gap: 40px;
}

.v-stat {
    text-align: center;
}

.v-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    display: block;
    color: var(--primary-light);
}

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

.floating-elements {
    position: absolute;
    inset: 0;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(14, 14, 170, 0.2);
}

.item-1 { top: 10%; left: 10%; animation-delay: 0s; }
.item-2 { top: 10%; right: 10%; animation-delay: 1.5s; background: var(--primary-light); box-shadow: 0 10px 30px rgba(39, 118, 234, 0.2); }
.item-3 { bottom: 10%; left: 10%; animation-delay: 3s; background: var(--primary-light); box-shadow: 0 10px 30px rgba(39, 118, 234, 0.2); }
.item-4 { bottom: 10%; right: 10%; animation-delay: 4.5s; background: var(--gray); box-shadow: 0 10px 30px rgba(88, 88, 88, 0.2); }

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

/* ===== Featured Work ===== */
.featured-work {
    padding: 140px 0;
    background: var(--bg-light);
}

.work-slider {
    margin-bottom: 50px;
}

.work-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.work-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.work-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
}

.gradient-1 { background: var(--primary); }
.gradient-2 { background: var(--primary-light); }
.gradient-3 { background: var(--primary); }
.gradient-4 { background: var(--gray); }
.gradient-5 { background: var(--primary-light); }

.work-info {
    padding: 28px;
}

.work-category {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
}

.work-info h3 {
    font-size: 1.4rem;
    margin: 8px 0 10px;
}

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

.work-cta {
    text-align: center;
}

/* Swiper Customization */
.swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-light);
    width: 30px;
    border-radius: 5px;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 140px 0;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.testimonial-card > p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.swiper-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.swiper-btn-prev, .swiper-btn-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.swiper-btn-prev:hover, .swiper-btn-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--primary);
}

.cta-bg .gradient-orb,
.cta-bg .cta-pattern {
    display: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cta-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--white);
}

.cta-content > p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin: 16px 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--white);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.8rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-contact i {
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
    font-size: 0.8rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter h5 {
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 0.85rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    width: 40px;
    background: var(--white);
    border: none;
    color: var(--primary);
    cursor: pointer;
}

.newsletter-form button:hover {
    background: rgba(255,255,255,0.9);
}

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

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

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trusted-logos {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Mobile Nav Active State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 100px 30px 30px;
    gap: 24px;
    z-index: 999;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
