:root {
    --primary: #FF5F1F;
    --primary-text: #C94400; /* Darker shade for text on white, passes WCAG AA */
    --dark: #0F1113;
    --light: #FFFFFF;
    --grey-bg: #F5F7F9;
    --text-main: #2D3134;
    --text-muted: #5A6470; /* Slightly darker for better contrast on white */
    --border-light: #E5E7EB;
}

html {
  scroll-behavior: smooth;
}

/* CSS Reset */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System - Consistent Hierarchy */
h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    font-weight: 800; 
    letter-spacing: -1.5px;
    color: var(--dark);
}

.section-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.process-heading,
.card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.bento-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.body-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 1.5rem;
}

.tag {
    color: var(--primary-text);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-label {
    color: var(--primary-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Container */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}

a { 
    text-decoration: none; 
    transition: all 0.3s ease; 
}

/* Footer links must be underlined (distinguishable without color) */
footer a {
    color: var(--primary);
    text-decoration: underline;
}

/* Navigation */
nav { 
    padding: 1.5rem 0; 
    border-bottom: 1px solid var(--border-light); 
    position: sticky; 
    top: 0; 
    background: #fff; 
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-weight: 800; 
    font-size: 1.4rem; 
    letter-spacing: -0.5px;
    color: var(--dark);
}

.logo img {
    height: 1.8rem;
}

.logo span { 
    color: var(--primary); 
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 2.5rem; 
}

.nav-links a { 
    color: var(--text-main); 
    font-weight: 600; 
    font-size: 0.9rem; 
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-sm { 
    background: var(--dark); 
    color: #fff !important; 
    padding: 0.6rem 1.2rem; 
    border-radius: 6px; 
}

.btn-sm:hover {
    background: #343435;
    transform: translateY(-2px);
}

/* Hero Section */
.hero { 
    padding: 6rem 0; 
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.hero p { 
    font-size: 1.25rem; 
    color: var(--text-muted); 
    margin: 2rem 0 2.5rem; 
}

.hero-ctas { 
    display: flex; 
    gap: 1.5rem; 
    align-items: center; 
}

.btn-primary { 
    background: var(--primary); 
    color: #fff; 
    padding: 1.2rem 2.4rem; 
    border-radius: 8px; 
    font-weight: 700; 
    border: none; 
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover { 
    background: #E04D15;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 95, 31, 0.3);
}

.btn-outline { 
    color: var(--dark); 
    font-weight: 700; 
    border-bottom: 2px solid var(--primary); 
    padding-bottom: 4px;
}

.btn-outline:hover {
    color: var(--primary);
}

.hero-visual img { 
    width: 100%; 
    height: auto;
    border-radius: 16px; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.image-caption {
    font-size: 0.85rem!important;
    color: var(--text-muted)!important;
    margin-top: 0.75rem!important;
    margin-bottom: 0.75rem!important;
    text-align: center!important;
  
}

/* Grid Layouts */
.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 4rem; 
    align-items: center;
}

/* Problem Section */
.problem-section { 
    padding: 8rem 0; 
    background: #fff;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.p-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    background: var(--grey-bg);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.p-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.p-item i {
    color: var(--primary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Primary Service Section */
.primary-service {
    padding: 8rem 0;
    background: #fff;
}

.primary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-body {
    margin-top: 1.5rem;
}

.feature-body .body-text {
    margin-bottom: 1.5rem;
}

.service-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indicator i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

/* Visual Side with Floating Card */
.primary-visual {
    position: relative;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.status-card {
    position: absolute;
    top: -30px;
    left: -40px;
    background: var(--dark);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 5;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.status-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.status-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-bar {
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.status-bar .fill {
    height: 100%;
    background: var(--primary);
}

.status-note {
    font-size: 0.75rem;
    color: #888;
}

.photo-preview {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary);
}

.photo-preview i {
    width: 18px;
    height: 18px;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: var(--grey-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modern-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-card {
    display: flex;
    gap: 3rem;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.process-info {
    flex: 1;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.process-tags span {
    background: var(--grey-bg);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.process-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

.process-features i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Add-on Service Section */
.add-on-service {
    background: var(--dark);
    padding: 8rem 0;
    color: #fff;
}

.add-on-service .section-label {
    color: var(--primary);
}

.add-on-service .section-heading {
    color: #fff;
}

.add-on-service .lead-text {
    color: var(--primary);
}

.add-on-service .body-text {
    color: #a1a1a1;
}

.add-on-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.inbound-options {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.option-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 95, 31, 0.1);
    border: 1px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon i { 
    color: var(--primary); 
    width: 24px;
    height: 24px;
}

.option-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.option-text .body-text {
    color: #888;
    margin: 0;
}

/* Glassmorphism Visual */
.glass-container {
    position: relative;
    padding: 20px;
}

.add-on-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 0.6;
    filter: grayscale(30%);
}

.instruction-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    z-index: 2;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.card-head i {
    width: 18px;
    height: 18px;
}

.instruction-list {
    list-style: none;
    margin-bottom: 1.25rem;
}

.instruction-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.instruction-list i {
    width: 16px;
    height: 16px;
}

.instruction-list i.green { 
    color: #00ff88; 
}

.instruction-list i.orange { 
    color: var(--primary); 
}

.card-footer {
    font-size: 0.7rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-style: italic;
}

/* Documentation Options */
.doc-options { 
    padding: 8rem 0; 
    background: #fff; 
}

.section-header-left { 
    margin-bottom: 4rem; 
    max-width: 1000px; 
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bento-card {
    position: relative;
    background: var(--grey-bg);
    border-radius: 24px;
    padding: 3rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid var(--border-light);
}

.bento-main { 
    background: #fff; 
    border: 2px solid var(--border-light);
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--grey-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--border-light);
}

.icon-circle i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.bento-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--grey-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
}

.bento-badge.featured { 
    background: var(--primary); 
    color: white; 
    border-color: var(--primary);
}

/* Audience Section - Light Mode */
.audience-section {
    padding: 8rem 0;
    background: var(--grey-bg);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.audience-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: #fff;
    border: 2px solid var(--border-light);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.audience-icon-wrap {
    width: 56px;
    height: 56px;
    background: #ff5f1f6e;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-icon-wrap i { 
    color: white; 
    width: 28px;
    height: 28px;
}

.audience-info {
    flex: 1;
}

.audience-info .card-heading { 
    color: var(--dark); 
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.audience-info .body-text { 
    color: var(--text-muted); 
    margin: 0;
}

/* Why Us Section */
.why-us-light {
    padding: 8rem 0;
    background: #fff;
}

.benefits-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem;
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.3s ease;
}


.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Main benefit card - no hover, left-aligned content */
.benefit-card.main {
    cursor: default;
  padding: 0px 30px 0px 0px!important;
    border-color: transparent !important;
    background: none !important;
}

.benefit-card.main:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.benefit-card.main * {
    text-align: left !important;
}

.benefit-card.main .benefit-icon-box {
    margin-left: 0;
    margin-right: auto;
}

.benefit-card.main .card-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-icon-box {
    width: 56px;
    height: 56px;
    background: #FFF5F2;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon-box i { 
    width: 26px;
    height: 26px;
}

.benefit-card .card-heading {
    font-size: 1.3rem;
}



/* Pricing Section */
.pricing-light {
    padding: 8rem 0;
    background: var(--grey-bg);
}

.pricing-container-light {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #fff;
    padding: 4rem;
    border-radius: 32px;
    border: 2px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.pricing-pillar {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar-label {
    font-weight: 700;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary);
    color: var(--dark);
}

.pricing-card-action {
    background: var(--grey-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid var(--border-light);
    text-align: center;
}

.check-list-light {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.check-list-light li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.check-list-light i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Final CTA */
.final-cta { 
    padding: 8rem 0; 
    background: #fff;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #E04D15 100%);
    padding: 6rem 4rem;
    border-radius: 32px;
    text-align: center;
    color: white;
    box-shadow: 0 30px 60px rgba(255, 95, 31, 0.25);
}

.cta-banner .cta-heading { 
    color: white;
}

.cta-banner .body-text { 
    font-size: 1.3rem; 
    max-width: 700px; 
    margin: 0 auto 3rem; 
    color: rgba(255,255,255,0.95);
}

.cta-action-wrap { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 1.5rem; 
}

.cta-banner .btn-primary { 
    background: white; 
    color: var(--primary); 
    font-size: 1.2rem; 
}

.cta-banner .btn-primary:hover { 
    background: var(--dark); 
    color: white; 
}

.subtext { 
    font-size: 0.95rem; 
    font-weight: 600; 
    color: rgba(255,255,255,0.85);
}

/* Contact Section */
.contact-section { 
    padding: 8rem 0; 
    background: var(--grey-bg); 
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 6rem; 
    align-items: center;
}

.contact-meta {
    margin-top: 2rem;
}

.meta-item { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    margin: 1rem 0; 
    font-weight: 600; 
}

.meta-item i { 
    color: var(--primary); 
    width: 22px;
    height: 22px;
}

.contact-form { 
    background: #fff; 
    padding: 3rem; 
    border-radius: 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--border-light);
}

.form-group { 
    margin-bottom: 1.5rem; 
}

.form-group label { 
    display: block; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    font-size: 1rem;
    color: var(--dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; 
    padding: 1rem; 
    border: 2px solid var(--border-light); 
    border-radius: 10px; 
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--text-main);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 95, 31, 0.1);
}

.w-full { 
    width: 100%; 
}

/* Footer */
footer { 
    padding: 3rem 0; 
    text-align: center; 
    border-top: 2px solid var(--border-light); 
    font-size: 0.9rem; 
    color: var(--text-muted);
    background: #fff;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 2rem 1.5rem;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        gap: 0;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
    }

    .nav-links a:last-child {
        border-bottom: none;
        margin-top: 0.75rem;
        text-align: center;
    }

    .btn-sm {
        display: block;
        text-align: center;
    }

    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .hero-grid, 
    .grid-2, 
    .primary-grid,
    .add-on-grid,
    .contact-grid,
    .pricing-container-light { 
        grid-template-columns: 1fr; 
        gap: 3rem;
    }
    
    .hero { 
        text-align: center; 
        padding: 4rem 0; 
    }
    
    h1 { 
        font-size: 2.2rem; 
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .hero-ctas { 
        justify-content: center; 
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .mini-grid {
        grid-template-columns: 1fr;
    }
    
    .status-card { 
        position: relative;
        left: 0; 
        top: 0; 
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .process-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .process-number {
        font-size: 2.5rem;
    }
    
    .instruction-card { 
        position: relative; 
        left: 0; 
        bottom: 0; 
        margin-top: -60px; 
        width: 100%; 
    }
    
    .bento-grid { 
        grid-template-columns: 1fr;
    }
    
    .audience-grid-modern { 
        grid-template-columns: 1fr; 
    }
    
    .benefits-grid-light {
        grid-template-columns: 1fr;
    }
    
    .service-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-banner { 
        padding: 4rem 2rem; 
    }
    
    .cta-heading { 
        font-size: 2.2rem; 
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .body-text {
        font-size: 1rem;
    }
    
    .contact-form,
    .pricing-card-action {
        padding: 2rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-ctas,
    .contact-form,
    .cta-banner {
        display: none;
    }
}