:root {
    --bg-dark: #0a0a0a;
    --bg-accent: #061d38; /* Navy blue from logo */
    --card-bg: #092344; /* Slightly lighter blue for cards */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 15, 15, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary: #ea511c; /* Orange from logo */
}

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

html {
    scroll-behavior: smooth;
    zoom: 0.8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

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

/* Floating Capsule Header */
.capsule-nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px; /* Much slimmer */
    height: 55px; /* Thinner */
    background: linear-gradient(90deg, rgba(20,20,20,0.9) 0%, rgba(30,30,30,0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 0 1.5rem;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capsule-nav.nav-hidden {
    transform: translate(-50%, -200%);
    opacity: 0;
    pointer-events: none;
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 28px; /* Fits nicely inside the 55px header */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem; /* Smaller */
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 0.5rem 1.2rem; /* Slimmer button */
    font-size: 0.85rem;
}

.btn-primary:hover {
    background: #e2e2e2;
}

.btn-large {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-large:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, var(--bg-dark) 100%), url('hero_bg.png');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.phone-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.services-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-main) 0%, transparent 20%, transparent 80%, var(--bg-main) 100%);
    z-index: 1;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

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

.service-card {
    background: rgba(20,20,20,0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bento Grid Process Layout */
.process-hero {
    position: relative;
    padding: 14rem 2rem 10rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.process-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.process-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, rgba(10,10,10,0.5) 50%, var(--bg-dark) 100%);
}

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

.bento-process-section {
    padding: 6rem 2rem 10rem;
    position: relative;
    background: transparent;
}

.bento-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Timeline Line */
.timeline-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 40px; /* Aligns with step marker */
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(234, 81, 28, 0.2) 50%, var(--primary) 100%);
    z-index: 1;
    opacity: 0.5;
}

.bento-step-group {
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-marker {
    width: 80px; height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(234, 81, 28, 0.2);
    z-index: 2;
}

.step-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    color: #fff;
}

.step-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Grid Layouts */
.bento-grid {
    display: grid;
    gap: 1.5rem;
    padding-left: 100px; /* Offset to right of timeline */
}

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

.bento-grid-step2 {
    grid-template-columns: 2fr 1fr;
}

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

/* Pricing Cards */
.price-card {
    background: rgba(20,20,20,0.6);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.price-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Card Variations */
.focus-card {
    background: linear-gradient(135deg, rgba(6, 29, 56, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(234, 81, 28, 0.3);
    box-shadow: inset 0 0 20px rgba(234, 81, 28, 0.05);
}
.focus-card .price-amount { color: var(--primary); }
.focus-card .price-label { color: #fff; }

.dark-card {
    background: rgba(10,10,10,0.8);
}
.dark-card .price-amount { font-size: 3rem; }

.outline-card {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}
.outline-card:hover { border: 1px solid var(--primary); background: rgba(234, 81, 28, 0.05); }

/* Info Capsules */
.info-capsule {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 4px solid var(--primary);
}

.info-capsule h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.info-capsule p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wide-card {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .bento-grid-step1, .bento-grid-step2, .bento-grid-step3 {
        grid-template-columns: 1fr;
    }
    .timeline-line { display: none; }
    .bento-grid { padding-left: 0; }
    .step-marker { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* Renters' Rights Act Teaser */
.rra-section {
    background: var(--bg-accent);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.rra-bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.rra-bg-image {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7;
    mix-blend-mode: luminosity;
    filter: contrast(1.2);
}

.rra-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(6, 29, 56, 0.9) 0%, rgba(6, 29, 56, 0.4) 100%);
}

.rra-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.rra-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.rra-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.rra-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rra-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.compact-card {
    padding: 1.5rem;
    text-align: left;
}

.compact-card .takeaway-stat {
    font-size: 2.5rem; /* Scaled down from 3.5rem */
    text-align: left;
}

.compact-card h4 {
    font-size: 1rem;
    text-align: left;
}

.compact-card p {
    font-size: 0.8rem;
    text-align: left;
}

@media (max-width: 900px) {
    .rra-container {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Carousel Section */
.testimonials {
    padding: 8rem 0 10rem 0;
    background: var(--bg-accent); /* Solid deep green */
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.testimonials-header h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -2px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 320px; /* Even more compact */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    position: absolute;
    width: 360px; /* Even smaller width */
    max-width: 90vw;
    background: var(--card-bg); /* Match section slightly lighter */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem; /* Even less padding */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* States managed by JS */
.testimonial-card.active {
    transform: translateX(0) scale(1);
    z-index: 3;
    filter: blur(0);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-card.prev {
    transform: translateX(-110%) scale(0.85); /* Push out just enough */
    z-index: 2;
    filter: blur(3px); /* Less blur */
    opacity: 0.4;
}

.testimonial-card.next {
    transform: translateX(110%) scale(0.85);
    z-index: 2;
    filter: blur(3px);
    opacity: 0.4;
}

.testimonial-card.hidden {
    transform: translateX(0) scale(0.5);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.stars {
    color: #fbbf24;
    font-size: 0.85rem; /* Even smaller */
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.quote {
    font-size: 0.9rem; /* Even smaller text */
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.divider {
    display: none; /* Removed to match lonthon minimalism */
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.client-avatar {
    width: 36px; /* Even smaller */
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

.client-details h4 {
    font-size: 0.85rem;
}

.client-details span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: none; /* Hide buttons to match lonthon auto-scroll / click feel */
}

/* Editorial / Insights Page */
.article-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(6, 29, 56, 0.5) 0%, var(--bg-dark) 60%);
    border-bottom: 1px solid var(--glass-border);
}

.article-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -1.5px;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.1;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* === Multi-Layered Editorial Layout === */
.editorial-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 8rem;
    color: #e2e8f0;
}

/* Base Editorial Typography */
.editorial-grid p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Sections */
.section-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
}

@media (max-width: 900px) {
    .section-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Sticky Left Sidebar (Layer 1) */
.section-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
    z-index: 10;
}

.numbered-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--bg-accent);
    color: #fff;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.section-sidebar h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Right Content Column */
.section-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reform-item {
    background: rgba(20, 20, 20, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.reform-item:hover {
    background: rgba(30, 30, 30, 0.5);
    transform: translateY(-5px);
}

.reform-item h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* Status Pills */
.status-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.status-urgent {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.status-default {
    background: rgba(234, 81, 28, 0.15);
    color: var(--primary);
    border: 1px solid rgba(234, 81, 28, 0.3);
}

/* Breakout Data Grids (Layer 2) */
.breakout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0; 
}

.takeaway-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.8) 0%, rgba(15,15,15,0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.takeaway-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.takeaway-stat {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 20px rgba(234, 81, 28, 0.2);
}

.takeaway-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.takeaway-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Layered Callout Boxes (Layer 3) */
.callout-box {
    background: rgba(245, 158, 11, 0.05);
    border-left: 4px solid #f59e0b;
    padding: 2.5rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
    box-shadow: -10px 20px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
    .breakout-grid, .callout-box {
        margin-left: 0;
        margin-right: 0;
    }
}

.editorial-grid .intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 6rem auto;
    text-align: center;
}

.disclaimer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* Contact CTA Section */
.contact-cta {
    padding: 6rem 2rem 8rem 2rem;
    background: linear-gradient(rgba(10,10,10,0.6), rgba(10,10,10,0.6)), url('contact_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-container {
    max-width: 850px; /* Much smaller max width */
    margin: 0 auto;
    background: var(--bg-accent);
    border-radius: 16px; /* Tighter radius */
    padding: 3.5rem 3rem; /* Tighter padding */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Less gap */
    align-items: center;
}

.cta-text h2 {
    font-size: 2.4rem; /* Much smaller heading */
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-text p {
    font-size: 0.85rem; /* Smaller paragraph */
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 350px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input,
.form-row textarea {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px; /* Sharper */
    padding: 0.75rem 1rem; /* Slimmer height */
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem; /* Smaller text */
    transition: all 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.btn-form {
    background: #e2e8f0;
    color: var(--bg-accent);
    padding: 0.6rem 1.2rem; /* Slimmer button */
    border: none;
    border-radius: 6px;
    font-size: 0.85rem; /* Smaller text */
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.btn-form:hover {
    background: #ffffff;
}

/* Premium Footer */
.premium-footer {
    background: radial-gradient(circle at center top, rgba(234, 81, 28, 0.05) 0%, #050505 50%);
    padding: 6rem 2rem 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.footer-cta-col h3 {
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.footer-cta-col p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-links-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-nav-group h4 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-group li {
    margin-bottom: 1rem;
}

.footer-nav-group a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav-group a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-nav-group a:hover {
    color: #fff;
}

.footer-nav-group a:hover::after {
    width: 100%;
}

.footer-watermark {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 13vw;
    color: rgba(255, 255, 255, 0.02);
    text-align: center;
    line-height: 0.8;
    margin-top: 4rem;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    letter-spacing: -2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-links-col {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-links-col {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card.prev { transform: translateX(-80%) scale(0.85); }
    .testimonial-card.next { transform: translateX(80%) scale(0.85); }
    .cta-container { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
}

@media (max-width: 768px) {
    .capsule-nav {
        top: auto !important;
        bottom: 2rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 400px !important;
        padding: 0.75rem !important;
        gap: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .nav-links {
        gap: 1.5rem !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .nav-links a {
        font-size: 0.8rem !important;
    }

    .cta-wrapper {
        display: none !important;
    }

    .site-logo {
        top: 1rem !important;
        left: 1rem !important;
    }
    
    .site-logo img {
        height: 45px !important;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-card.prev { transform: translateX(-40%) scale(0.85); opacity: 0; }
    .testimonial-card.next { transform: translateX(40%) scale(0.85); opacity: 0; }
    .testimonial-card { width: 90vw; padding: 2rem; }
    .form-row { flex-direction: column; }
}
/* New Proven Process Section (Homepage) */
.proven-process {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, rgba(10, 15, 25, 0.8) 0%, rgba(10, 15, 25, 0.9) 100%), url('process_bg.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-subtitle {
    font-size: 0.85rem;
    color: #cfb171;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.process-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    letter-spacing: -1px;
}

.process-timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 4rem;
}

/* Horizontal dashed line connecting the steps */
.process-track {
    position: absolute;
    top: 36px; /* Align with middle of the 72px icon circles */
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.process-track::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(30, 30, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 2rem;
}

.step-icon {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfb171;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #cfb171;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
}

.step-content h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-track {
        display: none;
    }
}
@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Badges Bar */
.trust-badges-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-content h4 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.badge-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 1000px) {
    .trust-badges-bar {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .trust-badges-bar {
        grid-template-columns: 1fr;
    }
}
