/* ==========================================================================
   ROAD 9 MEDIA CUSTOM UTILITY SYSTEM DIRECTIVES
   ========================================================================== */
:root {
    --bg-main: #0a0a0c;
    --bg-surface: #121216;
    --bg-surface-elevated: #1a1a22;
    --accent: #ff4d29;               /* High-impact warm contrast token */
    --accent-rgb: 255, 77, 41;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    --max-width: 1320px;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Fira Code', monospace;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Progress Tracking Indicator */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Structural Layout Anchors */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 140px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* Background Grids */
.grid-bg {
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Typography Label Engines */
.section-tag {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 12px;
    max-width: 600px;
    line-height: 1.6;
}

/* ==========================================================================
   NAVIGATION BAR COMPONENT
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.brand-logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.logo-link {
    text-decoration: none;
}

.accent-dot, .title-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-item-btn {
    background-color: var(--text-primary);
    color: var(--bg-main);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-item-btn:hover {
    background-color: var(--accent);
    color: var(--text-primary);
}

/* ==========================================================================
   HERO AREA LAYOUT 
   ========================================================================== */
.hero {
    padding-top: 220px;
    padding-bottom: 160px;
    border-bottom: 1px solid var(--border-color);
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    background-color: rgba(255,255,255,0.02);
}

.kicker-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.display-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.sub-display-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 32px;
    max-width: 700px;
}

.description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 620px;
}

.hero-action-row {
    display: flex;
    gap: 20px;
}

/* Button Configurations */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 77, 41, 0.25);
}

.btn-secondary {
    border: 1px solid var(--border-color-hover);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-image-wrapper {
    position: relative;
}

.image-inner-frame {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color-hover);
    background-color: var(--bg-surface);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image {
    filter: grayscale(0);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-color-hover);
    padding: 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-badge .badge-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.floating-badge .badge-txt {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

/* ==========================================================================
   CAPABILITIES & CAPTION ENGINE
   ========================================================================== */
.section-header-row {
    margin-bottom: 70px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
}

.skill-category {
    background-color: var(--bg-main);
    padding: 50px;
    transition: var(--transition-smooth);
}

.skill-category:hover {
    background-color: var(--bg-surface);
}

.skill-cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cat-num {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.skill-category h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-category li::before {
    content: "—";
    color: var(--text-muted);
}

/* ==========================================================================
   THE JOURNEY / STICKY ABOUT FRAME
   ========================================================================== */
.dark-bg-split {
    background-color: var(--bg-surface);
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.about-sticky-side {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.about-content-side .lead-paragraph {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 400;
}

.about-content-side .secondary-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ==========================================================================
   AGENCY SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    background-color: rgba(18, 18, 22, 0.2);
}

.service-card:hover {
    border-color: var(--accent);
    background-color: var(--bg-surface);
    transform: translateY(-6px);
}

.service-num {
    font-family: var(--font-mono);
    color: var(--accent);
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

/* ==========================================================================
   DYNAMIC PROJECT GRID
   ========================================================================== */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.project-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.status-tag {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    border: 1px solid rgba(255, 77, 41, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-weight: 500;
}

.project-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    flex-grow: 1;
}

.tech-stack-list {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 24px;
}

.project-link {
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.project-link:hover {
    color: var(--accent);
}

/* ==========================================================================
   CASE STUDIES AREA
   ========================================================================== */
.cases-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.split-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-surface);
}

.case-visual-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
    min-height: 350px;
}

.case-ui-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
    transition: var(--transition-smooth);
}

.split-card:hover .case-ui-screenshot {
    filter: grayscale(0);
    transform: scale(1.02);
}

.card-overlay-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(18,18,22,0.4));
}

.case-info-wrapper {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-tag-v2 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.case-header-v2 h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.case-header-v2 p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.case-matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.case-matrix-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.case-matrix-table td strong {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 0.8rem;
}

.case-body-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.case-column-v2 h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.case-column-v2 ul {
    list-style: none;
}

.case-column-v2 li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

.case-column-v2 li::before {
    content: "▫";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ==========================================================================
   TESTIMONIALS ARCHITECTURE
   ========================================================================== */
.gray-block {
    background-color: rgba(255, 255, 255, 0.01);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    border: 1px solid var(--border-color);
    padding: 60px;
    border-radius: 8px;
    background-color: var(--bg-main);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.client-footer-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color-hover);
}

.client-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

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

/* ==========================================================================
   TRANSPARENT PRICING GRID
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: rgba(255, 77, 41, 0.3);
    background-color: var(--bg-surface-elevated);
}

.tier-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    background-color: var(--accent);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.pricing-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.package-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 32px;
    min-height: 45px;
}

.price {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.price .amt {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-sans);
    margin-top: 4px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    padding-left: 18px;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ==========================================================================
   INTERSTITIAL CALL TO ACTION BANNER
   ========================================================================== */
.cta-interstitial {
    margin-top: 60px;
    margin-bottom: 60px;
}

.cta-box-inner {
    background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
    border: 1px solid var(--border-color-hover);
    padding: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-left h3 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.cta-left p {
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 280px;
}

.btn-action-wa {
    background-color: #25d366;
    color: #ffffff;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-action-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-action-cal {
    background-color: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    justify-content: center;
    font-size: 0.9rem;
}

.btn-action-cal:hover {
    background-color: var(--text-primary);
    color: var(--bg-main);
}

/* ==========================================================================
   CONTACT CONTROL PANEL
   ========================================================================== */
.contact-grid-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.contact-lead-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.6;
}

.social-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.social-anchor-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.social-anchor-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

/* Road 9 Form Input Styling */
.road9-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.input-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.road9-form input, 
.road9-form textarea {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.road9-form input:focus, 
.road9-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-surface-elevated);
}

.form-submit {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

/* ==========================================================================
   PRODUCTION FOOTER
   ========================================================================== */
.main-footer {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-surface);
}

.footer-content-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
}

.footer-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.loc-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.footer-bottom-row {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FADE REVEAL ANIMATIONS (INTERSECTION OBSERVER TARGETS)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.vibe-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE LAYOUT ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-split, .about-grid-wrapper, .contact-grid-split { grid-template-columns: 1fr; gap: 50px; }
    .about-sticky-side { position: static; }
    .display-title { font-size: 4rem; }
}

@media (max-width: 768px) {
    .skills-grid, .services-grid, .project-grid, .testimonial-grid, .split-card { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .navbar { padding: 20px 30px; }
    .container { padding: 0 24px; }
    .display-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .cta-box-inner { flex-direction: column; padding: 40px; }
    .input-group-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MOBILE HEADER FIXES & FLOATING ACTION SYSTEM
   ========================================================================== */

/* Persistent Floating WhatsApp Action Button */
.whatsapp-sticky-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.whatsapp-sticky-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
    background-color: #20ba5a;
}

/* Responsive Header Enhancements (Max Width: 768px Viewports) */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }

    /* Create Hidden Mobile Sliding Navigation Container */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #0c0c10;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    /* Active Dynamic Navigation Override */
    .nav-links.mobile-nav-active {
        right: 0;
    }

    .nav-item {
        font-size: 1.25rem;
    }

    .nav-item-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    /* Interactive Hamburger Menu Button Styles */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        cursor: pointer;
        z-index: 1000;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--text-primary);
        transition: all 0.3s ease;
    }

    /* Transform Hamburger Lines into an 'X' close pattern when active */
    .menu-toggle.toggle-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--accent);
    }

    .menu-toggle.toggle-active span:nth-child(2) {
        transform: scaleX(0);
    }
    
    .menu-toggle.toggle-active::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: var(--accent);
        transform: translateY(7px) rotate(-45deg);
    }

    /* Tighten Hero Spacing on Small Screen Sizes */
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-action-row {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-sticky-badge {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}

/* Structural Desktop Reset safe check */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}