/* ===================================
   CSS Custom Properties
   =================================== */
:root {
    --color-charcoal: #1a1a2e;
    --color-charcoal-light: #2a2a3e;
    --color-charcoal-mid: #16162a;
    --color-coral: #e8615b;
    --color-coral-light: #f07872;
    --color-coral-dark: #d14e48;
    --color-neutral-50: #fafafa;
    --color-neutral-100: #f5f5f7;
    --color-neutral-200: #e8e8ed;
    --color-neutral-300: #d2d2d9;
    --color-neutral-400: #a1a1aa;
    --color-neutral-500: #71717a;
    --color-neutral-600: #52525b;
    --color-neutral-700: #3f3f46;
    --color-white: #ffffff;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 26, 46, 0.16);
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    border-bottom-color: var(--color-neutral-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--color-white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-primary {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.logo-secondary {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-coral);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-neutral-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-charcoal);
    background: var(--color-neutral-100);
}

.nav-cta {
    margin-left: var(--space-sm);
    background: var(--color-charcoal);
    color: var(--color-white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta:hover {
    background: var(--color-charcoal-light) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--color-neutral-100);
}

.hamburger {
    position: relative;
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 1px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.hamburger span {
    width: 60%;
}

.nav-toggle.active .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .hamburger span {
    opacity: 0;
}

.nav-toggle.active .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-charcoal);
    overflow: hidden;
    padding: var(--space-5xl) 0 var(--space-3xl);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 97, 91, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232, 97, 91, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--color-coral);
    flex-shrink: 0;
}

.hero-eyebrow span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-coral-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--color-white);
    letter-spacing: -0.025em;
    margin-bottom: var(--space-xl);
    max-width: 580px;
}

.hero-headline em {
    font-style: normal;
    color: var(--color-coral);
}

.hero-subheadline {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-coral);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(232, 97, 91, 0.35);
}

.btn-primary:hover {
    background: var(--color-coral-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 97, 91, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-dark {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.btn-ghost-dark:hover {
    background: var(--color-charcoal-light);
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-neutral-300);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-trust {
    display: flex;
    gap: var(--space-2xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.trust-item svg {
    color: var(--color-coral);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    padding-right: var(--space-xl);
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-primary {
    height: 520px;
    box-shadow: var(--shadow-xl);
}

.hero-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 240px;
    height: 180px;
    border: 4px solid var(--color-charcoal);
    box-shadow: var(--shadow-lg);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 97, 91, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-card {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--color-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
    z-index: 2;
}

.hero-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
}

.hero-card-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: var(--space-xs);
}

/* Marquee */
.hero-marquee {
    position: relative;
    z-index: 1;
    margin-top: var(--space-4xl);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.marquee-dot {
    color: var(--color-coral) !important;
    opacity: 0.5;
    font-size: 8px !important;
}

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

/* ===================================
   Section Shared
   =================================== */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.section-eyebrow .eyebrow-line {
    background: var(--color-coral);
}

.section-eyebrow span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-coral);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    letter-spacing: -0.025em;
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-neutral-500);
    max-width: 560px;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--space-5xl) 0;
    background: var(--color-neutral-100);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-neutral-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 91, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-coral);
    margin-bottom: var(--space-lg);
    transition: background var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--color-coral);
    color: var(--color-white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-neutral-500);
    flex: 1;
    margin-bottom: var(--space-lg);
}

.service-arrow {
    color: var(--color-coral);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-coral);
    color: var(--color-white);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.accent-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.accent-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.4;
    margin-top: var(--space-xs);
}

.about-content .section-title {
    margin-bottom: var(--space-xl);
}

.about-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-neutral-600);
    margin-bottom: var(--space-lg);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-neutral-100);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.value-item:hover {
    background: var(--color-neutral-200);
}

.value-icon {
    color: var(--color-coral);
    flex-shrink: 0;
}

.value-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-charcoal);
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.why-header .section-eyebrow {
    justify-content: center;
}

.why-header .section-title {
    color: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.why-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(232, 97, 91, 0.3);
    transform: translateY(-2px);
}

.why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(232, 97, 91, 0.25);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.why-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    padding: var(--space-5xl) 0;
    background: var(--color-coral);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.cta-subheadline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.cta-actions .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-coral);
    border-color: var(--color-white);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-neutral-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-neutral-500);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    color: var(--color-coral);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-text span,
.contact-text a {
    font-size: 15px;
    color: var(--color-neutral-600);
    line-height: 1.5;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-neutral-200);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.form-subtitle {
    font-size: 14px;
    color: var(--color-neutral-500);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-charcoal);
    background: var(--color-neutral-100);
    border: 1.5px solid var(--color-neutral-200);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-coral);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(232, 97, 91, 0.1);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    font-size: 12px;
    color: var(--color-neutral-400);
    text-align: center;
    margin-top: var(--space-md);
}

/* Success State */
.form-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.success-icon {
    color: var(--color-coral);
    margin-bottom: var(--space-lg);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.form-success p {
    font-size: 14px;
    color: var(--color-neutral-500);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-charcoal-mid);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--color-coral);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.footer-logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--color-white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.footer-logo-primary {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-white);
}

.footer-logo-secondary {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-coral);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    max-width: 260px;
}

.footer-links strong,
.footer-contact strong {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-xl);
}

.footer-copy,
.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ===================================
   Scroll Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .hero-visual {
        max-width: 480px;
    }
    
    .hero-img-primary {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .about-visual {
        max-width: 480px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-5xl: 5rem;
        --space-4xl: 4rem;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-xl);
        gap: var(--space-sm);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 16px;
        padding: var(--space-md) var(--space-lg);
    }
    
    .nav-cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
        margin-top: var(--space-md);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: var(--space-4xl) 0 var(--space-3xl);
        min-height: auto;
    }
    
    .hero-grid {
        gap: var(--space-2xl);
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-img-primary {
        height: 320px;
    }
    
    .hero-img-secondary {
        width: 180px;
        height: 135px;
        bottom: -20px;
        left: -15px;
    }
    
    .hero-card {
        right: 0;
        padding: var(--space-md) var(--space-lg);
    }
    
    .hero-card-number {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .about-accent-box {
        bottom: -20px;
        right: -10px;
        padding: var(--space-md) var(--space-lg);
    }
    
    .accent-number {
        font-size: 1.8rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-form-wrapper {
        padding: var(--space-lg);
    }
}
