:root {
    --color-bg: #FAFAFA;
    --color-white: #FFFFFF;
    --color-black: #0A0A0A;
    --color-charcoal: #1C1C1C;
    --color-gray-900: #262626;
    --color-gray-700: #404040;
    --color-gray-500: #737373;
    --color-gray-400: #A3A3A3;
    --color-gray-300: #D4D4D4;
    --color-gray-200: #E5E5E5;
    --color-gray-100: #F5F5F5;
    --color-warm: #B8A088;
    --color-warm-light: #D4C4B0;
    --color-warm-dark: #8B7355;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--color-warm);
    color: var(--color-white);
}

/* Layout */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 6vw, 6rem);
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 6vw, 6rem);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes revealLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

.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; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease-out);
    background: rgba(10,10,10,0.4);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav.scrolled {
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

nav.scrolled .logo,
nav.scrolled .nav-links a,
nav.scrolled .nav-contact {
    color: var(--color-charcoal);
}

nav.scrolled .mobile-toggle {
    color: var(--color-charcoal);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-contact {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-contact-dot {
    width: 6px;
    height: 6px;
    background: var(--color-warm);
    border-radius: 50%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--color-white);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    margin: 6px 0;
    transition: all 0.3s var(--ease-out);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--color-charcoal);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(10,10,10,0.4) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1920&h=1080&fit=crop') center center / cover no-repeat;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 35%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.2) 100%);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(4rem, 10vh, 8rem);
    padding-top: 120px;
}

.hero-text {
    max-width: 700px;
    position: relative;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-warm-light);
    margin-bottom: 1.5rem;
    animation: slideIn 1s var(--ease-out) 0.3s both;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-warm-light);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 2rem;
    animation: slideUp 1.2s var(--ease-out) 0.5s both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero h1 em {
    font-style: italic;
    color: var(--color-warm-light);
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: slideUp 1.2s var(--ease-out) 0.7s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: slideUp 1.2s var(--ease-out) 0.9s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-charcoal);
    padding: 1.25rem 2.5rem;
}

.btn-primary:hover {
    background: var(--color-warm);
    color: var(--color-white);
}

.btn-text {
    color: var(--color-white);
    background: none;
    padding: 0;
}

.btn-text:hover {
    color: var(--color-warm);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.4s var(--ease-out);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
    text-align: left;
    animation: countUp 1s var(--ease-out) both;
}

.stat:nth-child(1) { animation-delay: 1.1s; }
.stat:nth-child(2) { animation-delay: 1.3s; }
.stat:nth-child(3) { animation-delay: 1.5s; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

/* Marquee */
.marquee {
    background: var(--color-charcoal);
    padding: 1.5rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    white-space: nowrap;
}

.marquee-text {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--color-warm);
    border-radius: 50%;
}

/* Section Styles */
section {
    padding: clamp(6rem, 12vh, 10rem) 0;
}

.section-header {
    margin-bottom: clamp(4rem, 8vh, 6rem);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-warm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-charcoal);
}

.section-title em {
    font-style: italic;
}

/* About Section */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(4rem, 8vw, 8rem);
    align-items: center;
}

.about-image {
    aspect-ratio: 4/5;
    background: var(--color-gray-100);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-gray-100) 100%);
}

.about-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
}

.about-image-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    stroke-width: 1;
}

.about-image-placeholder span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--color-warm);
    z-index: -1;
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray-700);
    line-height: 2;
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-feature {
    padding-left: 1.5rem;
    border-left: 1px solid var(--color-gray-300);
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* Process Section */
.process {
    background: var(--color-bg);
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: clamp(4rem, 8vh, 6rem);
}

.process-intro {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray-700);
    line-height: 1.9;
    max-width: 500px;
}

.process-timeline {
    position: relative;
}

.process-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-gray-300);
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-warm);
    transition: height 0.8s var(--ease-out);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.process-step:hover {
    background: var(--color-white);
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gray-300);
    line-height: 1;
    transition: color 0.4s var(--ease-out);
}

.process-step:hover .step-number {
    color: var(--color-warm);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

.step-meta {
    text-align: right;
}

.step-duration {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-warm);
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-warm);
}

.step-features {
    list-style: none;
    margin-top: 1rem;
}

.step-features li {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    padding: 0.25rem 0;
}

/* Services Section */
.services {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.services .section-label {
    color: var(--color-gray-500);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    margin-top: 4rem;
}

.service-card {
    background: var(--color-charcoal);
    padding: 3rem 2rem;
    transition: all 0.5s var(--ease-out);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-warm);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}

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

.service-card:hover {
    background: rgba(255,255,255,0.03);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
    color: var(--color-warm);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* Tiers Section */
.tiers {
    background: var(--color-white);
}

.tiers-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.tiers-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray-700);
    line-height: 1.9;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--color-gray-200);
}

.tier-card {
    padding: 3rem 2rem;
    border-right: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.tier-card:last-child {
    border-right: none;
}

.tier-card:hover {
    background: var(--color-gray-100);
}

.tier-card.featured {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.tier-card.featured:hover {
    background: var(--color-gray-900);
}

.tier-card.featured .tier-name {
    color: var(--color-white);
}

.tier-card.featured .tier-description {
    color: var(--color-gray-400);
}

.tier-card.featured .tier-features li {
    color: var(--color-gray-400);
    border-color: rgba(255,255,255,0.1);
}

.tier-badge {
    position: absolute;
    top: 0;
    left: 2rem;
    transform: translateY(-50%);
    background: var(--color-warm);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
}

.tier-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-gray-300);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.tier-card.featured .tier-number {
    color: var(--color-gray-700);
}

.tier-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.tier-description {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tier-features {
    list-style: none;
}

.tier-features li {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.tier-features li:last-child {
    border-bottom: none;
}

/* Guarantees */
.guarantees {
    background: var(--color-bg);
    overflow: hidden;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.guarantee-card {
    padding: 4rem 3rem;
    border-right: 1px solid var(--color-gray-200);
    position: relative;
}

.guarantee-card:last-child {
    border-right: none;
}

.guarantee-number {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 300;
    color: var(--color-gray-200);
    line-height: 1;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.guarantee-content {
    position: relative;
    z-index: 1;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    color: var(--color-warm);
    margin-bottom: 2rem;
}

.guarantee-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.guarantee-card p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(184, 160, 136, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.cta-text h2 em {
    font-style: italic;
    color: var(--color-warm-light);
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--color-gray-400);
    max-width: 500px;
    line-height: 1.8;
}

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

.btn-warm {
    background: var(--color-warm);
    color: var(--color-white);
    padding: 1.5rem 3rem;
}

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

.cta-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s var(--ease-out);
}

.cta-phone:hover {
    color: var(--color-white);
}

.cta-phone svg {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    background: var(--color-black);
    color: var(--color-gray-500);
    padding: 5rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--color-gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s var(--ease-out);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--color-gray-500);
    transition: color 0.3s var(--ease-out);
}

.footer-social a:hover {
    color: var(--color-warm);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1400px) {
    .hero h1 {
        font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tier-card:nth-child(2) {
        border-right: none;
    }

    .tier-card:nth-child(3),
    .tier-card:nth-child(4) {
        border-top: 1px solid var(--color-gray-200);
    }
}

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

    .mobile-toggle {
        display: block;
        color: var(--color-white);
    }

    nav.scrolled .mobile-toggle {
        color: var(--color-charcoal);
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

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

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

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

    .step-meta {
        display: none;
    }

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

    .guarantee-card {
        border-right: none;
        border-bottom: 1px solid var(--color-gray-200);
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-actions {
        align-items: center;
    }

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

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .tier-card {
        border-right: none;
        border-bottom: 1px solid var(--color-gray-200);
    }

    .tier-card:last-child {
        border-bottom: none;
    }

    .tiers-intro {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}
</style>
