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

:root {
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gray-900: #222;
    --gray-800: #333;
    --gray-600: #666;
    --gray-400: #999;
    --gray-200: #e0e0e0;
    --gray-100: #f5f5f3;
    --white: #fefefe;
    --cream: #f8f6f2;
    --accent: #c8a46e;
    --accent-light: #dfc89e;
    --red: #ff4444;
    --green: #00c853;
    --font-body: 'Space Grotesk', -apple-system, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 254, 254, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--dark);
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}

.logo-img-lab {
    height: 40px;
    max-width: 240px;
}

.logo-img-footer {
    height: 72px;
    max-width: 200px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--dark);
}

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

.mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
}

.btn-nav {
    padding: 10px 24px;
    background: var(--dark);
    color: var(--white);
}

.btn-nav:hover {
    background: var(--black);
    color: var(--white);
}

.btn-primary {
    padding: 16px 40px;
    background: var(--dark);
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.05rem;
}

.btn-ghost {
    padding: 16px 40px;
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--gray-200);
    font-size: 1rem;
}

.btn-ghost:hover {
    border-color: var(--dark);
}

/* ===== MEANDERING THREAD BACKGROUND ===== */
.thread-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.thread-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.thread-path {
    opacity: 0.18;
    stroke-dashoffset: 0;
    animation: threadDraw 2s ease-out both;
}

@keyframes threadDraw {
    from { opacity: 0; }
    to { opacity: 0.18; }
}

.thread-needle {
    position: absolute;
    top: -4px;
    left: 12%;
    z-index: 2;
    opacity: 0.5;
    animation: needleBob 3s ease-in-out infinite;
}

@keyframes needleBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,164,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-800);
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 32px;
}

.hero-line {
    display: block;
    animation: fadeUp 0.8s ease both;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.2s; }
.hero-line:nth-child(3) { animation-delay: 0.3s; }

.hero-line.accent {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-sub strong {
    color: var(--dark);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
    animation: fadeUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-dark {
    background: var(--cream);
}

.section-accent {
    background: var(--dark);
    color: var(--white);
}

.section-accent .section-label {
    color: var(--accent-light);
}

.section-accent .section-title em {
    color: var(--accent-light);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 32px;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

.section-desc {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 56px;
}

.section-accent .section-desc {
    color: rgba(255,255,255,0.7);
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.problem-card {
    padding: 48px 40px;
    border-radius: 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.problem-icon {
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.problem-tag {
    display: inline-block;
    margin-top: 24px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #fff0f0;
    color: var(--red);
}

.problem-tag.good {
    background: #e8f5e9;
    color: var(--green);
}

.problem-bad {
    border: 1px solid rgba(255,68,68,0.15);
}

.problem-good {
    border: 1px solid rgba(0,200,83,0.15);
}

/* ===== SPEED SECTION ===== */
.speed-compare {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 64px;
}

.speed-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.speed-days {
    font-weight: 600;
    color: var(--dark);
}

.speed-bar-fill {
    height: 40px;
    background: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.speed-bar-inner {
    height: 100%;
    width: 0;
    background: var(--bar-color);
    border-radius: 8px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.speed-bar.highlight .speed-bar-label {
    font-weight: 600;
}

.speed-bar.highlight .speed-days {
    color: var(--dark);
    font-size: 1.1rem;
}

.speed-bar.highlight .speed-bar-fill {
    background: rgba(200,164,110,0.1);
}

.speed-bar.highlight .speed-bar-inner {
    background: var(--dark);
    box-shadow: 4px 0 16px rgba(0,0,0,0.2);
}

.speed-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.reason-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.reason h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.reason p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== BATCHES SECTION ===== */
.batches-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.batches-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.8);
}

.batches-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.batches-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.batches-list li strong {
    color: var(--white);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-top: 2px;
}

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

.batch-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s;
}

.batch-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.batch-number {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.batch-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.batch-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

.batch-card.sold {
    background: rgba(200,164,110,0.15);
    border-color: rgba(200,164,110,0.3);
}

.batch-card.sold .batch-number,
.batch-card.sold .batch-label {
    color: var(--accent-light);
}

.batch-card.scale {
    background: rgba(0,200,83,0.1);
    border-color: rgba(0,200,83,0.2);
}

.batch-card.scale .batch-number {
    color: #66ff99;
}

.batch-arrow {
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.process-step {
    position: relative;
    padding: 32px 24px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s;
}

.process-step:hover {
    background: var(--gray-200);
    transform: translateY(-4px);
}

.process-step-highlight {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.process-step-highlight:hover {
    background: var(--black);
    transform: translateY(-4px);
}

.process-step-highlight .step-number {
    color: var(--accent-light);
}

.process-step-highlight .step-stitch {
    background: repeating-linear-gradient(
        90deg,
        var(--accent-light) 0px,
        var(--accent-light) 6px,
        transparent 6px,
        transparent 10px
    );
    opacity: 0.6;
}

.process-step-highlight h3 {
    color: var(--white);
}

.process-step-highlight p {
    color: rgba(255,255,255,0.75);
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    background: var(--accent-light);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.step-stitch {
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--dark) 0px,
        var(--dark) 6px,
        transparent 6px,
        transparent 10px
    );
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== CASES / CLIENTS CAROUSEL ===== */
.cases-carousel {
    position: relative;
    margin-top: 48px;
}

.cases-viewport {
    overflow: hidden;
    padding: 8px 0;
}

.cases-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.case-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn-prev {
    left: -28px;
}

.carousel-btn-next {
    right: -28px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}

.case-image {
    position: relative;
    width: 100%;
    padding-top: 130%;
    background: var(--cream);
    overflow: hidden;
}

.case-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.case-image-text {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image-initials {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    color: var(--accent-light);
    font-style: italic;
    letter-spacing: -0.02em;
}

.case-card-wide .case-image-initials {
    font-size: 6rem;
}

.case-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.case-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--dark);
}


.case-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}


.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.02em;
    transition: gap 0.2s;
}

.case-card:hover .case-link {
    gap: 10px;
}

.cases-testimonial {
    max-width: 720px;
    margin: 72px auto 0;
    text-align: center;
    padding: 0 24px;
    color: rgba(255,255,255,0);
}

.cases-testimonial {
    color: var(--gray-600);
}

.cases-testimonial p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--dark);
}

.quote-icon {
    color: var(--accent);
    margin-bottom: 16px;
}

/* ===== PRICING SECTION ===== */
.pricing-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.pricing-header {
    padding: 32px 40px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.pricing-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pricing-row {
    width: 100%;
    text-align: center;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.pricing-value {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.pricing-value.cost {
    color: var(--gray-600);
}

.pricing-value.sell {
    color: var(--dark);
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.pricing-arrow {
    color: var(--accent);
    padding: 8px 0;
}

.pricing-footer {
    padding: 32px 40px;
    background: var(--dark);
    text-align: center;
}

.margin-badge {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.margin-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}

.margin-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.margin-percent {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    opacity: 0.8;
}

.pricing-math {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
}

.math-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: 12px;
    font-size: 0.95rem;
}

.math-label {
    color: var(--gray-600);
}

.math-result {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.math-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 8px;
}

/* ===== CTA SECTION ===== */
.section-cta {
    background: transparent;
    text-align: center;
    padding: 140px 0;
}

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

.cta-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}

.cta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.cta-micro {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form .btn {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin-top: 8px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-row .form-field {
    margin-bottom: 0;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(77,212,160,0.2);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-body);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form .cta-micro {
    text-align: center;
    margin-top: 16px;
}

/* ===== SENT BANNER ===== */
.sent-banner {
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    animation: slideDown 0.4s ease;
}

.sent-banner-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4dd4a0;
    color: #0a1f1f;
    padding: 14px 20px 14px 18px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(77,212,160,0.4);
    font-size: 0.95rem;
    font-weight: 500;
}

.sent-banner-inner strong {
    font-weight: 700;
}

.sent-close {
    background: none;
    border: none;
    color: #0a1f1f;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.7;
    margin-left: 4px;
}

.sent-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-field {
        margin-bottom: 16px;
    }

    .sent-banner {
        top: 80px;
        left: 12px;
        right: 12px;
        transform: none;
    }

    .sent-banner-inner {
        font-size: 0.85rem;
    }

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

/* ===== FOOTER ===== */
.footer {
    background: #252531;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.footer-parent {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

.footer-parent strong {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.footer-h4-spaced {
    margin-top: 28px !important;
}

.footer-col address,
.footer-col p,
.footer-col a {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col address p {
    margin-bottom: 8px;
}

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

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.footer-group-list li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

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

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

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

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .speed-reasons {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .batches-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .batches-visual {
        flex-wrap: wrap;
    }

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

    .pricing-example {
        grid-template-columns: 1fr;
    }

    .case-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .carousel-btn-prev {
        left: -8px;
    }

    .carousel-btn-next {
        right: -8px;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

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

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

    .section {
        padding: 80px 0;
    }

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

    .batches-visual {
        flex-direction: column;
    }

    .batch-arrow {
        transform: rotate(90deg);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .section-cta {
        padding: 80px 0;
    }

    .case-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }
}
