:root {
    --purple-900: #1E0A3C;
    --purple-800: #2D1154;
    --purple-700: #3B186B;
    --purple-600: #5B21B6;
    --purple-500: #7C3AED;
    --purple-400: #A78BFA;
    --purple-300: #C4B5FD;
    --purple-200: #DDD6FE;
    --purple-100: #EDE9FE;
    --purple-50: #F5F3FF;
    --text-dark: #1A1A2E;
    --text-body: #4B5563;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-800: #1F2937;
    --hero-gradient: linear-gradient(135deg, #2D1154 0%, #1E0A3C 40%, #0F051E 100%);
    --purple-gradient: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
}

*,*::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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

/* ─── NAVBAR ──────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

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

.logo-text {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    transition: color 0.4s ease;
}

.logo-subtitle {
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 2px;
    transition: color 0.4s ease;
}

.navbar.scrolled .logo-text {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .logo-subtitle {
    color: var(--text-body);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a:not(.btn-nav):hover {
    color: var(--purple-500);
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.navbar.scrolled .nav-links a:not(.btn-nav)::after {
    background: var(--purple-gradient);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--white) !important;
    color: var(--purple-600) !important;
    padding: 0.625rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.navbar.scrolled .btn-nav {
    background: var(--purple-gradient) !important;
    color: var(--white) !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.25);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* ─── HERO ──────────────────────────────────── */

.hero {
    position: relative;
}

.hero-bg {
    background: var(--hero-gradient);
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91,33,182,0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-white {
    background: var(--white);
    color: var(--purple-600);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124,58,237,0.3);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-house {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(124,58,237,0.2));
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* ─── STATS ──────────────────────────────────── */

.hero-stats {
    background: var(--white);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 3rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.stat-top {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 900;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    margin-top: 0.625rem;
    color: var(--text-body);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ─── SCROLLING BANNER ──────────────────────── */

.features-banner {
    background: var(--text-dark);
    padding: 1.25rem 0;
    overflow: hidden;
}

.scrolling-text {
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-flex;
    animation: scroll 35s linear infinite;
}

.scroll-content span {
    display: inline-flex;
    align-items: center;
    padding: 0 1.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.scroll-content span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-400);
    margin-right: 1.75rem;
    flex-shrink: 0;
}

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

/* ─── SECTIONS ──────────────────────────────── */

.section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* ─── SERVICES ──────────────────────────────── */

.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--purple-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(145deg, #7C3AED 0%, #4C1D95 100%);
    border-color: transparent;
    color: var(--white);
}

.service-card.featured::before {
    display: none;
}

.service-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(124,58,237,0.3);
    border-color: transparent;
}

.service-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: var(--purple-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.15);
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--purple-500);
}

.service-card.featured .service-icon svg {
    color: var(--white);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.service-card.featured .service-title {
    color: var(--white);
}

.service-description {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.service-card.featured .service-description {
    color: rgba(255,255,255,0.75);
}

.service-link {
    color: var(--purple-500);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-card.featured .service-link {
    color: var(--white);
}

/* ─── VALUE PROPS ───────────────────────────── */

.value-props {
    background: var(--gray-50);
    padding: 4.5rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-item {
    padding: 1.5rem;
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.value-unit {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-body);
    margin-top: 0.5rem;
}

.value-description {
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ─── HOW IT WORKS ──────────────────────────── */

.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.process-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.35s ease;
    border: 1.5px solid transparent;
}

.process-card:hover {
    background: var(--purple-50);
    border-color: var(--purple-200);
    transform: translateY(-4px);
}

.process-number {
    font-size: 2.25rem;
    font-weight: 900;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.process-description {
    color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ─── TESTIMONIALS ──────────────────────────── */

.testimonials {
    padding: 6rem 0;
    background: var(--purple-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    border: 1.5px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-200);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--purple-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.8125rem;
    margin-top: 1px;
}

.rating-summary {
    text-align: center;
    margin-top: 3rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 900;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    color: var(--text-body);
    margin-top: 0.375rem;
    font-size: 0.9375rem;
}

/* ─── TEAM ──────────────────────────────────── */

.team {
    padding: 6rem 0;
    background: var(--white);
}

.team-showcase {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.team-card {
    max-width: 550px;
    text-align: center;
    background: var(--gray-50);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-200);
}

.team-image-placeholder {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--purple-gradient);
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
}

.team-name {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.team-role {
    color: var(--purple-500);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.team-bio {
    color: var(--text-body);
    line-height: 1.75;
    font-size: 0.9375rem;
}

/* ─── CTA SECTION ───────────────────────────── */

.cta-section {
    background: var(--hero-gradient);
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* ─── FOOTER ────────────────────────────────── */

.footer {
    background: #0F051E;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.footer-brand .logo-subtitle {
    color: rgba(255,255,255,0.4);
}

.footer-tagline {
    margin-top: 1rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ─── CONTACT FORM ──────────────────────────────────── */

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin: 3rem 0 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.form-group .required {
    color: var(--purple-400);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--purple-400);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.05);
}

.error-message {
    font-size: 0.875rem;
    color: #EF4444;
    display: none;
    margin-top: -0.25rem;
}

.error-message.show {
    display: block;
}

.file-upload-group label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-group label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--purple-400);
}

.file-upload-icon {
    width: 40px;
    height: 40px;
    background: var(--purple-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.file-upload-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.file-upload-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.file-upload-hint {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.file-name {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--purple-300);
    font-weight: 500;
    display: none;
}

.file-name.show {
    display: block;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-submit {
    position: relative;
    min-width: 200px;
    font-size: 1.0625rem;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--purple-200);
    border-top-color: var(--purple-600);
    border-radius: 50%;
    opacity: 0;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.captcha-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.captcha-notice svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    display: none;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86EFAC;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
    font-size: 0.875rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--purple-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.8125rem;
}

/* ─── RESPONSIVE ────────────────────────────── */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        max-width: 360px;
        margin: 2rem auto 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-bg {
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .stat-item {
        padding: 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .cta-title {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }
}
