/* ==========================================================================
   Suresh Thapa - Official Website
   Theme: Gabby Bernstein Inspired Warm Editorial Aesthetic
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #FBF9F6;          /* Soft warm off-white */
    --bg-cashmere: #F3EDE7;      /* Warm cashmere beige */
    --bg-card: #FFFFFF;          /* Pure crisp white for cards */
    --bg-card-alt: #FAF6F1;      /* Light warm pastel card background */
    
    --primary-terracotta: #E05A47; /* Warm terracotta/coral CTA accent */
    --terracotta-hover: #c94937;
    
    --gold-accent: #D97706;       /* Warm amber accent */
    --gold-light: #FBBF24;
    
    --text-primary: #1A1D20;     /* Soft dark charcoal */
    --text-secondary: #5A6065;   /* Warm mid-gray */
    --text-muted: #7E848A;       /* Subtle muted text */
    
    --border-color: #EBE5DF;
    --border-warm: #E2D9D0;
    
    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
    
    /* Layout & Utilities */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 16px 45px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-terracotta);
    display: block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Container & Sections */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-cashmere {
    background-color: var(--bg-cashmere);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-terracotta {
    background-color: var(--primary-terracotta);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(224, 90, 71, 0.3);
}

.btn-terracotta:hover {
    background-color: var(--terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(224, 90, 71, 0.4);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline-dark:hover {
    background: var(--text-primary);
    color: #ffffff;
}

.btn-lg {
    padding: 1.1rem 2.4rem;
    font-size: 1.02rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* Header / Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(251, 249, 246, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 0.85rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section (Gabby Style Split Layout) */
.hero-section {
    padding-top: 11rem;
    padding-bottom: 6rem;
    background-color: var(--bg-main);
}

.hero-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-block {
    display: flex;
    justify-content: center;
}

.hero-photo-wrapper {
    position: relative;
    width: 380px;
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-cashmere);
    padding: 0.75rem;
    border: 1px solid var(--border-warm);
    box-shadow: var(--shadow-soft);
}

.hero-main-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 12%; /* Face centered */
    border-radius: var(--radius-md);
    display: block;
}

.hero-photo-badge {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.hero-photo-badge i {
    color: var(--gold-accent);
    margin-right: 0.3rem;
}

.hero-greeting {
    font-size: 3.8rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.hero-headline {
    font-size: 1.85rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 1.25rem;
}

.hero-bio-lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.25rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-terracotta);
    line-height: 1;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-color);
}

/* Press & Social Proof Quote Bar */
.press-quote-section {
    background-color: var(--bg-cashmere);
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.press-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.press-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    max-width: 850px;
    margin: 0 auto 0.75rem;
}

.press-author {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-terracotta);
}

/* About Section */
.about-grid-block {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.about-heading {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
}

.about-paragraph {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.editorial-checklist {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2.25rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.check-item i {
    color: var(--primary-terracotta);
    margin-top: 0.25rem;
}

.about-photo-card {
    position: relative;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 0.6rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.about-presenting-photo {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: 88% top; /* Framing Suresh presenting */
    border-radius: var(--radius-md);
    display: block;
}

.photo-caption-tag {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--text-primary);
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Expertise Grid (Editorial Card Style) */
.expertise-grid-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.editorial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.editorial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-terracotta);
}

.card-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-terracotta);
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.editorial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.editorial-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* PERMA Assessment Widget */
.assessment-container-editorial {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
}

.assessment-head h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.assessment-head p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.assessment-body-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: center;
}

.slider-item {
    margin-bottom: 1.75rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.slider-header i {
    color: var(--primary-terracotta);
    margin-right: 0.4rem;
}

.slider-val {
    font-weight: 800;
    color: var(--primary-terracotta);
}

.editorial-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #EAE3DC;
    outline: none;
    -webkit-appearance: none;
}

.editorial-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-terracotta);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(224, 90, 71, 0.4);
}

.score-card-editorial {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.75rem;
    text-align: center;
}

.score-ring {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: 4px solid var(--primary-terracotta);
    margin: 0 auto 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.score-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.score-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.score-title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.score-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

/* Mobile Numerology Tool */
.num-card-editorial {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    max-width: 900px;
    margin: 3.5rem auto 0;
    box-shadow: var(--shadow-soft);
}

.num-input-wrap label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.num-input-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.num-input-row input {
    flex: 1;
    padding: 0.9rem 1.4rem;
    background: var(--bg-main);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    outline: none;
    transition: var(--transition);
}

.num-input-row input:focus {
    border-color: var(--primary-terracotta);
    box-shadow: 0 0 15px rgba(224, 90, 71, 0.2);
}

.num-input-wrap small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.num-result-wrap {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.num-digit-badge {
    width: 95px;
    height: 95px;
    background: var(--primary-terracotta);
    border-radius: var(--radius-md);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.digit-lbl {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.digit-val {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.num-vibe-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.num-vibe-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.num-meters-list {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.meter-box {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.meter-track {
    height: 10px;
    background: #EAE3DC;
    border-radius: 5px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: var(--primary-terracotta);
    border-radius: 5px;
    transition: width 0.8s ease-out;
}

.num-action-center p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Services Section */
.services-grid-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.service-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
}

.featured-box {
    border-color: var(--primary-terracotta);
    box-shadow: 0 12px 40px rgba(224, 90, 71, 0.12);
}

.service-badge-tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-tag {
    color: var(--primary-terracotta);
}

.service-box h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-box p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
}

.service-check-list {
    margin-bottom: 2rem;
}

.service-check-list li {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-check-list i {
    color: var(--primary-terracotta);
    font-size: 0.85rem;
}

.service-box a.btn {
    margin-top: auto;
}

/* Centralized Single Enquire Banner */
.central-enquiry-banner {
    margin-top: 3.5rem;
    background: var(--bg-cashmere);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
}

.central-enquiry-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.central-enquiry-banner p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-card-editorial {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem 3.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.contact-info-col h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-col p {
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
}

.contact-list-items {
    display: grid;
    gap: 1.5rem;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.c-item i {
    width: 44px;
    height: 44px;
    background: var(--bg-cashmere);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-terracotta);
}

.c-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.c-item span {
    color: var(--text-primary);
    font-weight: 700;
}

.contact-cta-col {
    background: var(--bg-cashmere);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    color: var(--primary-terracotta);
    margin-bottom: 1.25rem;
}

.cta-inner-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.cta-inner-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.direct-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

/* Footer */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-main);
}

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

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.footer-meta p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-social-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.85rem;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    background: var(--bg-cashmere);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.footer-social-links a:hover {
    background: var(--primary-terracotta);
    color: #ffffff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 750px;
    position: relative;
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-terracotta);
}

.modal-header {
    margin-bottom: 1.25rem;
}

.modal-header h3 {
    font-size: 1.5rem;
}

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

.iframe-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.modal-footer-action {
    margin-top: 1rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container, .about-grid-block, .contact-card-editorial {
        grid-template-columns: 1fr;
    }

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

    .assessment-body-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .hero-greeting {
        font-size: 2.8rem;
    }

    .hero-headline {
        font-size: 1.45rem;
    }

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

    .num-badge-header {
        flex-direction: column;
        text-align: center;
    }

    .num-input-row {
        flex-direction: column;
    }

    .contact-card-editorial {
        padding: 2.5rem 1.5rem;
    }
}
