/* =====================================
   CELESTIAL ORACLE - MODERN EDITORIAL
   ===================================== */

:root {
    /* Earth Tone Palette - Completely Different */
    --color-sand: #f4f1ea;
    --color-stone: #2d2a26;
    --color-terracotta: #c86240;
    --color-sage: #7a9b76;
    --color-clay: #9f7d5c;
    --color-charcoal: #3a3632;
    --color-cream: #fdfbf7;
    --color-warm-gray: #8b857c;
    
    /* Typography - Editorial Style */
    --font-serif: 'Libre Baskerville', Georgia, serif;
    --font-sans: 'IBM Plex Sans', -apple-system, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    /* Shadows - Subtle Editorial */
    --shadow-sm: 0 1px 3px rgba(45, 42, 38, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 42, 38, 0.1);
    --shadow-lg: 0 8px 24px rgba(45, 42, 38, 0.12);
}

/* =====================================
   RESET & BASE
   ===================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-stone);
    background: var(--color-cream);
    font-weight: 300;
}

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

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

/* =====================================
   TYPOGRAPHY
   ===================================== */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    max-width: 65ch;
}

/* =====================================
   LAYOUT CONTAINERS
   ===================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* =====================================
   NAVIGATION - CLEAN EDITORIAL
   ===================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 42, 38, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-stone);
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    align-items: center;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-charcoal);
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-terracotta);
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    background: var(--color-stone);
    color: var(--color-cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--color-terracotta);
    color: white;
    transform: translateY(-1px);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-stone);
    transition: all 0.3s ease;
}

/* =====================================
   HERO - BOLD EDITORIAL
   ===================================== */

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-sand) 0%, #ebe7dd 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(200, 98, 64, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-content {
    max-width: 700px;
    animation: fadeUp 0.8s ease-out;
}

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

.hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

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

/* =====================================
   BUTTONS
   ===================================== */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-stone);
    color: var(--color-cream);
}

.btn-primary:hover {
    background: var(--color-charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-stone);
    border: 1px solid var(--color-stone);
}

.btn-secondary:hover {
    background: var(--color-stone);
    color: var(--color-cream);
}

/* =====================================
   SECTIONS
   ===================================== */

section {
    padding: var(--space-2xl) 0;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.section-intro h2 {
    margin-bottom: var(--space-md);
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--color-warm-gray);
    margin: 0 auto;
}

/* =====================================
   SERVICES GRID - CLEAN CARDS
   ===================================== */

.services {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-item {
    padding: var(--space-lg);
    background: var(--color-sand);
    border: 1px solid rgba(45, 42, 38, 0.06);
    transition: all 0.4s ease;
}

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

.service-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-item p {
    color: var(--color-warm-gray);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.link-arrow {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-stone);
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    color: var(--color-terracotta);
    transform: translateX(4px);
}

/* =====================================
   PHILOSOPHY - BLOCKQUOTE FEATURE
   ===================================== */

.philosophy {
    background: var(--color-stone);
    color: var(--color-cream);
}

.philosophy-quote {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-md);
}

.philosophy-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-sand);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-cream);
}

.philosophy-item p {
    color: rgba(253, 251, 247, 0.8);
    line-height: 1.7;
}

/* =====================================
   TESTIMONIAL FEATURE
   ===================================== */

.testimonial-feature {
    background: linear-gradient(135deg, var(--color-sand) 0%, #ebe7dd 100%);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-stone);
}

.testimonial-author span {
    font-size: 0.9375rem;
    color: var(--color-warm-gray);
}

.testimonial-link {
    text-align: right;
}

/* =====================================
   PROCESS STEPS
   ===================================== */

.process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
}

.process-step {
    text-align: center;
    padding: var(--space-md);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--color-terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: var(--color-warm-gray);
    margin: 0 auto;
}

/* =====================================
   CTA
   ===================================== */

.cta {
    background: var(--color-charcoal);
    color: var(--color-cream);
    text-align: center;
}

.cta h2 {
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 1.125rem;
    color: rgba(253, 251, 247, 0.8);
    margin: 0 auto var(--space-lg);
}

.cta .btn-primary {
    background: var(--color-terracotta);
}

.cta .btn-primary:hover {
    background: #b05538;
}

/* =====================================
   FOOTER - MINIMAL
   ===================================== */

.footer {
    background: var(--color-stone);
    color: var(--color-sand);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.footer-col p {
    font-size: 0.9375rem;
    color: rgba(244, 241, 234, 0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-sand);
    margin-bottom: var(--space-sm);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a {
    font-size: 0.9375rem;
    color: rgba(244, 241, 234, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(244, 241, 234, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(244, 241, 234, 0.5);
}

/* =====================================
   RESPONSIVE
   ===================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-cream);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-link {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 568px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   UTILITY ANIMATIONS
   ===================================== */

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   PAGE HERO
   ===================================== */

.page-hero {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--color-sand) 0%, #ebe7dd 100%);
    text-align: center;
}

.page-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.page-hero h1 {
    margin-bottom: var(--space-md);
}

.page-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-warm-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================
   SERVICES DETAIL PAGE
   ===================================== */

.services-detail {
    background: white;
}

.service-detail {
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl) 0;
}

.service-detail:not(:last-child) {
    border-bottom: 1px solid rgba(45, 42, 38, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-header .service-number {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.service-header h2 {
    margin-bottom: 0;
}

.service-content {
    max-width: 900px;
}

.service-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
}

.service-content h3 {
    font-size: 1.25rem;
    margin: var(--space-lg) 0 var(--space-md);
}

.service-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.service-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.7;
    color: var(--color-charcoal);
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-terracotta);
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.price-card {
    padding: var(--space-lg);
    background: var(--color-sand);
    border: 1px solid rgba(45, 42, 38, 0.08);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border: 2px solid var(--color-terracotta);
    background: linear-gradient(135deg, #fdfbf7 0%, var(--color-sand) 100%);
}

.price-card.large {
    grid-column: 1 / -1;
    max-width: 600px;
}

.price-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.price-card > p {
    color: var(--color-warm-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.option-features {
    list-style: none;
    margin-top: var(--space-md);
}

.option-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--color-charcoal);
}

.option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 600;
}

.price-card .btn-primary {
    margin-top: var(--space-md);
}

/* Prepare Section */
.prepare-section {
    background: linear-gradient(135deg, var(--color-sand) 0%, #ebe7dd 100%);
}

.prepare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.prepare-item {
    padding: var(--space-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.prepare-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.prepare-item p {
    color: var(--color-warm-gray);
    line-height: 1.7;
}

/* =====================================
   LEGAL PAGES
   ===================================== */

.legal-page {
    background: white;
    padding: var(--space-xl) 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(45, 42, 38, 0.1);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: var(--space-md) 0 var(--space-sm);
}

.legal-section p {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
    color: var(--color-charcoal);
}

.legal-section ul,
.legal-section ol {
    margin: var(--space-sm) 0 var(--space-md);
    padding-left: var(--space-lg);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
}

.legal-section a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-stone);
}

/* =====================================
   CONTACT PAGE
   ===================================== */

.contact-page {
    background: white;
}

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

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-details {
    margin: var(--space-lg) 0;
}

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

.contact-label {
    font-weight: 500;
    color: var(--color-stone);
    min-width: 80px;
}

.contact-value {
    color: var(--color-warm-gray);
}

.contact-value a {
    color: var(--color-terracotta);
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--color-sand);
    padding: var(--space-xl);
}

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-stone);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(45, 42, 38, 0.15);
    background: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
}

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

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-wrapper label {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.form-submit {
    margin-top: var(--space-sm);
}

/* FAQ */
.faq-section {
    background: linear-gradient(135deg, var(--color-sand) 0%, #ebe7dd 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.faq-item {
    padding: var(--space-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.faq-item p {
    color: var(--color-warm-gray);
    line-height: 1.7;
}

/* =====================================
   TESTIMONIALS PAGE
   ===================================== */

.testimonials-page {
    background: white;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    padding: var(--space-xl);
    background: var(--color-sand);
    border-left: 3px solid var(--color-terracotta);
}

.testimonial-item .testimonial-quote {
    margin-bottom: var(--space-md);
}

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

.testimonial-service-tag {
    font-size: 0.875rem;
    color: var(--color-warm-gray);
    font-style: italic;
}

/* =====================================
   ABOUT PAGE
   ===================================== */

.about-section {
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-item {
    padding: var(--space-lg);
    background: var(--color-sand);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.value-item p {
    color: var(--color-warm-gray);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 568px) {
    .contact-form-wrapper,
    .prepare-item,
    .faq-item,
    .testimonial-item {
        padding: var(--space-md);
    }
}