@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #0F2B46;
    --primary-light: #1a4068;
    --accent: #FF6B2C;
    --accent-hover: #e85a1b;
    --accent-light: rgba(255, 107, 44, 0.1);
    --accent-glow: rgba(255, 107, 44, 0.35);
    --light-bg: #f8f9fb;
    --card-bg: #ffffff;
    --text: #1a1a2e;
    --text-light: #5a6578;
    --text-muted: #8b95a5;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 30px 64px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   SCROLL-REVEAL ANIMATIONS
   ============================================ */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 14px var(--accent-glow); }
    50% { box-shadow: 0 4px 28px var(--accent-glow), 0 0 40px rgba(255, 107, 44, 0.15); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   SMART HEADER — hides on scroll down, shows on scroll up
   ============================================ */

header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

header.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo a {
    color: var(--primary) !important;
    text-decoration: none !important;
}

.nav-menu {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition), left var(--transition);
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 60%;
    left: 20%;
}

.phone-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--accent-light);
    border-radius: 100px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.phone-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
}

.phone-header:hover {
    color: white;
}

.phone-header:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.phone-header span,
.phone-header {
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--light-bg);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition);
}

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

/* ============================================
   HERO — with fluid typography and subtle motion
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #163d5e 40%, #1a5276 100%);
    padding: clamp(60px, 10vw, 120px) 24px clamp(60px, 10vw, 120px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-text .subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-image {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 420px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-align: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,44,0.08) 0%, rgba(255,255,255,0.03) 50%, rgba(15,43,70,0.1) 100%);
    border-radius: inherit;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.03), transparent, rgba(255,255,255,0.03), transparent);
    animation: gradientShift 15s linear infinite;
    pointer-events: none;
}

/* ============================================
   CTA BUTTONS — with micro-interactions
   ============================================ */

.cta-button {
    background: var(--accent) !important;
    color: white !important;
    padding: 14px 32px;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin: 8px 8px 8px 0;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}

.cta-button.large {
    font-size: clamp(14px, 1.6vw, 16px);
    padding: 18px 40px;
}

.cta-button.pulse {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.cta-button.outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: none;
}

.cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.trust-badge:hover {
    color: rgba(255, 255, 255, 0.95);
}

.trust-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.trust-badge:hover .badge-icon {
    background: rgba(255, 107, 44, 0.2);
    border-color: rgba(255, 107, 44, 0.3);
    transform: scale(1.1);
}

/* ============================================
   STATS — Bento-inspired with stagger animation
   ============================================ */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
}

.stat-box {
    text-align: center;
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff9a5c);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
    transform-origin: left;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: var(--primary);
    display: block;
    letter-spacing: -1px;
    line-height: 1;
    transition: color var(--transition);
}

.stat-box:hover .stat-number {
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
}

/* ============================================
   SECTIONS — with fluid spacing
   ============================================ */

.section {
    padding: clamp(60px, 8vw, 100px) 24px;
}

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

.section-header .badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 107, 44, 0.15);
}

.section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.section .subtitle {
    font-size: clamp(15px, 1.6vw, 17px);
    font-style: normal;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.two-column {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-column-text h3 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.two-column-text p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 16px;
}

.two-column-image {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5276 50%, var(--accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    height: 420px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

.two-column-image:hover {
    transform: scale(1.02);
}

.two-column-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

/* ============================================
   SERVICES GRID — Bento-style cards with stagger
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-left: none;
    position: relative;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), #ff9a5c);
    border-radius: 4px 0 0 4px;
    transition: width var(--transition);
}

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

.service-card:hover::before {
    width: 6px;
}

.service-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: all var(--transition);
    border: 1px solid rgba(255, 107, 44, 0.1);
}

.service-card:hover .card-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.1) rotate(3deg);
    border-color: transparent;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.service-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: color var(--transition);
}

.service-card:hover h4 {
    color: var(--accent);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    text-decoration: none;
    transition: gap var(--transition), transform var(--transition);
}

.service-card .card-link:hover {
    gap: 12px;
    transform: translateX(4px);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    background: var(--primary);
    padding: clamp(60px, 8vw, 100px) 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,44,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
    transition: transform var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
}

.process-step .step-number {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(255, 107, 44, 0.4);
    transition: all var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(255, 107, 44, 0.5);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: clamp(60px, 8vw, 100px) 24px;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    line-height: 1;
    color: var(--accent-light);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 44, 0.15);
}

.testimonial-card .stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.testimonial-card .author span {
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================
   FORM — with focus micro-interactions
   ============================================ */

.form-section {
    background: var(--light-bg);
    padding: clamp(60px, 8vw, 100px) 24px;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.form-container:focus-within {
    box-shadow: var(--shadow-xl), 0 0 0 4px var(--accent-light);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff9a5c, var(--accent));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.form-container h2 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.form-container .form-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 32px;
}

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

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
    transition: color var(--transition);
}

.form-group:focus-within label {
    color: var(--accent);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: all var(--transition);
    background: var(--light-bg);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.08);
    background: white;
    transform: scale(1.01);
}

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

textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    background: var(--accent) !important;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all var(--transition);
    box-shadow: 0 4px 14px var(--accent-glow);
    letter-spacing: 0.3px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

button[type="submit"]:hover::before {
    width: 400px;
    height: 400px;
}

button[type="submit"]:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

button[type="submit"]:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    animation: none;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: none;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 0.4s ease;
}

.alert.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--primary);
    color: white;
    padding: 64px 24px 32px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff9a5c, var(--accent));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
    transition: all var(--transition);
    line-height: 1.6;
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding-top: 32px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CITIES GRID — Bento-inspired
   ============================================ */

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.city-item {
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.city-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition);
}

.city-item::after {
    content: '\2192';
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
    color: var(--accent);
    font-size: 18px;
}

.city-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    color: var(--accent);
    padding-right: 48px;
}

.city-item:hover::before {
    transform: scale(1.5);
    box-shadow: 0 0 8px var(--accent-glow);
}

.city-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9a5c 50%, var(--accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    padding: clamp(48px, 6vw, 80px) 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
}

.cta-banner p {
    font-size: clamp(15px, 1.6vw, 18px);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-banner .cta-button {
    background: white !important;
    color: var(--accent) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-banner .cta-button:hover {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-content,
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 12px 16px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        gap: 2px;
        animation: slideDown 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 14px 16px;
        display: block;
        border-radius: var(--radius-sm);
        font-size: 15px;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background: var(--light-bg);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-image,
    .two-column-image {
        height: 260px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-box {
        padding: 28px 16px;
    }

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

    .form-container {
        padding: 32px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .phone-header {
        font-size: 0;
        padding: 10px 14px;
    }

    .phone-header::after {
        content: '\260E';
        font-size: 18px;
    }

    .phone-header::before {
        display: none;
    }

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

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

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

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

/* ============================================
   REDUCED MOTION — respect user preferences
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
