/* ========================================
   SEOBYTE - Modern Dark Theme Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg: #0A0A0A;
    --color-bg-secondary: #111111;
    --color-bg-card: #161616;
    --color-bg-card-hover: #1a1a1a;

    --color-primary: #0066FF;
    --color-primary-light: #3385FF;
    --color-primary-dark: #0052CC;

    --color-secondary: #8B5CF6;
    --color-secondary-light: #A78BFA;

    --color-accent-cyan: #06B6D4;
    --color-accent-green: #10B981;
    --color-accent-orange: #F59E0B;

    --color-text: #FFFFFF;
    --color-text-secondary: #A1A1AA;
    --color-text-muted: #71717A;

    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.12);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #8B5CF6 100%);
    --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    --gradient-cyan: linear-gradient(135deg, #06B6D4 0%, #10B981 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 50%);

    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Effects */
    --glass-bg: rgba(22, 22, 22, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Utilities */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Meta Ads Floating Button */
.meta-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0081FB 0%, #00C6FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 129, 251, 0.4);
    z-index: 1000;
    transition: var(--transition-base);
}

.meta-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 129, 251, 0.5);
}

.meta-float svg {
    width: 32px;
    height: 32px;
}

/* Gemini AI Floating Button */
.gemini-float {
    position: fixed;
    bottom: 168px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285F4 0%, #9B72CB 50%, #D96570 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(155, 114, 203, 0.4);
    z-index: 1000;
    transition: var(--transition-base);
}

.gemini-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(155, 114, 203, 0.6);
}

.gemini-float svg {
    width: 36px;
    height: 36px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-base);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--color-text);
}

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

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav__link:hover {
    color: var(--color-text);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

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

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 24px;
}

.hero__badge svg {
    color: var(--color-accent-orange);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__description {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 102, 255, 0.4);
}

.btn--secondary {
    background: var(--color-bg-card);
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

.btn--secondary:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-light);
}

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

.btn--outline:hover {
    background: var(--color-bg-card);
    border-color: var(--color-primary);
}

.btn--full {
    width: 100%;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Hero Visual */
.hero__visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.hero__card--1 {
    top: 20px;
    right: 10%;
    animation-delay: 0s;
}

.hero__card--2 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    animation-delay: -2s;
}

.hero__card--3 {
    bottom: 20px;
    right: 10%;
    animation-delay: -4s;
}

.hero__card--4 {
    top: 30%;
    left: -20px;
    animation-delay: -1s;
}

.hero__card--5 {
    bottom: 35%;
    left: 20%;
    animation-delay: -3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-icon--blue {
    background: rgba(0, 102, 255, 0.2);
    color: var(--color-primary-light);
}

.card-icon--purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-secondary-light);
}

.card-icon--cyan {
    background: rgba(6, 182, 212, 0.2);
    color: var(--color-accent-cyan);
}

.card-icon--meta {
    background: rgba(24, 119, 242, 0.2);
    color: #1877F2;
}

.card-icon--gemini {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.2) 0%, rgba(155, 114, 203, 0.2) 50%, rgba(217, 101, 112, 0.2) 100%);
    color: #9B72CB;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero__orb--1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: 20%;
    left: 30%;
}

.hero__orb--2 {
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    bottom: 20%;
    right: 20%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-secondary-light);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-padding);
    background: var(--color-bg-secondary);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-lg);
}

.service-card--featured {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(0, 102, 255, 0.3);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__icon--blue {
    background: rgba(0, 102, 255, 0.15);
    color: var(--color-primary-light);
}

.service-card__icon--purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-secondary-light);
}

.service-card__icon--cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--color-accent-cyan);
}

.service-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card__badge--new {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-secondary-light);
}

.service-card__badge--hot {
    background: rgba(245, 158, 11, 0.2);
    color: var(--color-accent-orange);
}

.service-card__badge--meta {
    background: rgba(24, 119, 242, 0.2);
    color: #1877F2;
}

.service-card__badge--gemini {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.2) 0%, rgba(155, 114, 203, 0.2) 50%, rgba(217, 101, 112, 0.2) 100%);
    color: #9B72CB;
}

.service-card__icon--meta {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
}

.service-card__icon--gemini {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, rgba(155, 114, 203, 0.15) 50%, rgba(217, 101, 112, 0.15) 100%);
    color: #9B72CB;
}

.service-card__badge--green {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-accent-green);
}

.service-card__icon--green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-accent-green);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card__description {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card__features {
    margin-bottom: 24px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 6px 0;
}

.service-card__features li::before {
    content: '✓';
    color: var(--color-accent-green);
    font-weight: 700;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-light);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients {
    padding: var(--section-padding);
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.client-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.client-card__logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.client-card__name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    word-break: break-all;
}

.client-card__type {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--color-bg-secondary);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--color-border-light);
}

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, var(--color-bg-card) 30%);
    border-color: var(--color-secondary);
    transform: scale(1.02);
}

.pricing-card__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-card__subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-right: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
}

.pricing-card__features {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-green);
    flex-shrink: 0;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    padding: var(--section-padding);
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    padding: 28px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.process-step:hover {
    border-color: var(--color-primary);
}

.process-step__number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.process-step__content h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--color-bg-secondary);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__info .section-title {
    text-align: left;
}

.contact__description {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
}

.contact-item__text h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item__text p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.google-partner-badge {
    margin-top: 24px;
    display: inline-block;
}

.google-partner-badge:hover {
    opacity: 0.8;
}

/* Contact Form */
.contact__form {
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A1A1AA' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 24px;
    border-top: 1px solid var(--color-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 36px;
    width: auto;
}

.footer__description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

/* Certifications */
.certifications {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.certification-badge {
    border-radius: var(--radius-sm);
    background: white;
    padding: 8px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer__column h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__column ul li {
    margin-bottom: 10px;
}

.footer__column a {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.footer__column a:hover {
    color: var(--color-text);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

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

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.footer__social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .clients__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .pricing-card--featured {
        transform: none;
    }

    .process__timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__description {
        max-width: none;
    }

    .footer__links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-bg);
        padding: 100px 40px;
        transition: var(--transition-base);
        border-left: 1px solid var(--color-border);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
    }

    .nav__link {
        font-size: 18px;
    }

    .nav__toggle {
        display: flex;
        z-index: 101;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .clients__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__timeline {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .clients__grid {
        grid-template-columns: 1fr;
    }

    .footer__links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}