/* Global Reset & Typography */
:root {
    --primary-color: #052044;
    /* Deeper Navy Blue */
    --primary-dark: #03152d;
    --primary-light: #f1f5f9;
    --secondary-color: #16a34a;
    /* Primary Brand Green */
    --secondary-dark: #15803d;
    --secondary-soft: #f0fdf4;
    --text-main: #1e293b;
    /* Slate-800 */
    --text-secondary: #64748b;
    /* Slate-500 */
    --accent-color: #22d3ee;
    /* Cyan/Turquoise Accents */
    --gold-trust: #f59e0b;
    /* Amber-500 */

    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.5);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(43, 182, 115, 0.15);

    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    background-color: #fff;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
    /* Subtle dot pattern */
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--text-main);
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    background: linear-gradient(to right, #003d7a, #0066cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(32px, 4vw, 42px); /* Slightly smaller/cleaner */
    margin-bottom: 24px;
    color: var(--primary-color);
}

.section-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #16a34a;
    margin-bottom: 12px;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5em;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 80px 0;
    position: relative;
}

.bg-light {
    background-color: var(--secondary-color);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23005eb8' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.margin-top-large {
    margin-top: 80px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(31, 78, 121, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(31, 78, 121, 0.25);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(43, 182, 115, 0.25);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: #1e293b;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px) scale(1.02);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 83px;
    /* Reduced height like Apple */
}

.logo {
    font-weight: 600;
    font-size: 20px;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 14.5px;
    color: #334155;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .btn-sm {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.nav-links .btn-sm:hover {
    background: #004a91;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 94, 184, 0.2);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    /* Important note: path in css needs to be double dotted if inside css folder */
    background-image: url('../assets/images/hero-image.jpg');
    background-size: cover;
    background-position: 50% 30%;
    /* This flips the image horizontally as requested! */
    transform: scaleX(-1);
    z-index: 0;
}

.hero-backdrop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(30, 58, 138, 0.2) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 50h40M50 30v40' stroke='white' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 2;
}

.hero-wrapper {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 750px;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    position: relative;
    z-index: 3;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #86efac;
    margin-bottom: 20px;
    font-weight: 700;
    background: #1e293b;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(22, 197, 94, 0.2);
}

.hero-pricing {
    display: inline-block;
    padding: 8px 24px;
    background: #1e293b;
    border: 1px solid rgba(43, 182, 115, 0.2);
    border-radius: 100px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Remove separate pseudo-element to avoid complexity/conflicts */
.hero::before {
    display: none;
}

.hero h1 {
    /* Specific override for hero text color */
    background: linear-gradient(to right, #ffffff, #e8eff6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.08;
    margin-bottom: 16px;
}

.hero h1 .highlight-text {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color), var(--accent-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* Urgency Live Line */
.urgency-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #86efac;
    font-size: 15px;
    font-weight: 500;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: live-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
}

/* Green Trust Bar */
.trust-bar-green {
    background-color: var(--secondary-color);
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

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

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.trust-bar-item svg {
    opacity: 0.9;
}

.trust-val {
    font-size: 18px;
    font-weight: 800;
    font-family: 'League Spartan', sans-serif;
}

.trust-lbl {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: capitalize;
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Call Now Button */
.btn-call {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
    filter: brightness(1.1);
}

/* Sticky Navbar CTA */
#navbar-cta.scrolled {
    background: #16a34a;
    color: white;
}

/* Google Reviews Section Redesign */
.reviews-section {
    background: #ffffff;
    padding: 100px 0; /* Reduced padding for better fit after Stats bar */
    border-top: 1px solid #f1f5f9;
}

/* Base state for scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.reviews-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.google-rating-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.rating-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.rating-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 16px;
    border-left: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #4ade80;
}

/* Review grid staggered entry */
.reviews-grid .review-card:nth-child(1) { transition-delay: 0.1s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.3s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.5s; }

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.user-init-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.bg-blue-500 { background-color: #3b82f6; }
.bg-green-500 { background-color: #22c55e; }
.bg-amber-500 { background-color: #f59e0b; }

.user-meta {
    flex-grow: 1;
}

.user-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.user-rating-stars {
    color: #f59e0b;
    font-size: 12px;
}

.google-card-icon {
    opacity: 0.8;
}

.review-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    font-weight: 400;
}

.review-date {
    font-size: 13px;
    color: #94a3b8;
}

.hero p.subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 0 24px 0;
    color: #cbd5e1;
    font-weight: 400;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.btn-primary-hero {
    width: 100%;
    max-width: 412px;
    /* 2 * 200px + 12px gap from previous 2x2 grid */
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
    box-shadow: 0 4px 14px 0 rgba(43, 182, 115, 0.3) !important;
    text-align: center;
    justify-content: center;
}

.btn-primary-hero:hover {
    box-shadow: 0 8px 25px rgba(43, 182, 115, 0.25) !important;
}

.cta-secondary-row {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 412px;
}

.btn-secondary-hero {
    flex: 1;
    padding: 12px 10px !important;
    font-size: 14px !important;
    background: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #cbd5e1 !important;
    justify-content: center;
}

.btn-secondary-hero:hover {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
}

.cta-text-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #16a34a;
    border: 1px solid rgba(22, 163, 74, 0.22);
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.12);
    margin-left: 0;
}

.cta-text-link:hover {
    color: white;
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
}

/* Helper Text Classes */
.text-white { color: #ffffff !important; }
.text-slate-300 { color: #cbd5e1 !important; }

/* Story Section Overhaul (Big Bento Grid Layout) */
.story-section {
    background: #020c1b;
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.story-gallery.bento-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.story-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    position: absolute;
    top: -60px;
    left: -80px;
    font-size: 200px;
    font-family: serif;
    color: #4ade80;
    opacity: 0.25;
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.bento-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.1;
    color: #ffffff !important;
}

.story-text {
    max-width: 540px;
}

.story-text .lead {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    border-left: 4px solid #4ade80;
    padding-left: 24px;
    margin-bottom: 32px;
}

.story-signature {
    margin-top: 48px;
    display: flex;
    align-items: center;
}

.signature-text {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #4ade80;
    font-style: italic;
}

/* Big Bento Grid Trust Cards */
.story-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 14px;
    position: relative;
}

.bento-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(74, 222, 128, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.24);
}

.bento-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.15);
}

/* Fix for dark headers in bento cards */
.bento-card h3 {
    color: #ffffff !important;
    margin-bottom: 8px;
    font-size: 20px;
}

.bento-card p {
    color: #94a3b8 !important;
    font-size: 14px;
    margin: 0;
}

.bento-card.animate-in {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Glassmorphism 2.0 - Glowing Border on Hover */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    background: #1e293b;
    border-color: rgba(74, 222, 128, 0.4);
    transform: scale(1.02);
}

.bento-card:hover::before {
    opacity: 1;
}

/* Multi-directional "Assembly" Animation */
.bento-1 { transform: translate(-40px, -40px) scale(0.9); transition-delay: 0.1s; }
.bento-2 { transform: translate(40px, -40px) scale(0.9); transition-delay: 0.2s; }
.bento-3 { transform: translate(-40px, 40px) scale(0.9); transition-delay: 0.3s; }
.bento-4 { transform: translate(40px, 40px) scale(0.9); transition-delay: 0.4s; }

/* Bento Span - Making it look "Big" and asymmetric */
.bento-1 { grid-column: span 1; }
.bento-2 { grid-column: span 1; padding-top: 60px; }
.bento-3 { grid-column: span 1; padding-bottom: 60px; }
.bento-4 { grid-column: span 1; }

.bento-card .story-card-icon {
    width: 48px;
    height: 48px;
    background: #1e293b;
    color: #4ade80;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.bento-card:hover .story-card-icon {
    background: #4ade80;
    color: #020c1b;
}

.bento-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.bento-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Services Section Overhaul */
.services-section {
    background: #052044; /* Deep Navy */
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.service-card {
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for 6 cards */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.card-bg-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 84px;
    height: 84px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.95);
}

.service-card.animate-in .card-bg-circle {
    transform: scale(1);
    transition-delay: 0.2s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.service-card:hover .card-bg-circle {
    transform: scale(1.1);
    background: radial-gradient(circle, rgba(74, 222, 128, 0.12) 0%, transparent 72%);
}

.service-card .card-icon {
    width: 46px;
    height: 46px;
    background: #f8fafc;
    color: #16a34a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .card-icon {
    background: #16a34a;
    color: #ffffff;
    transform: rotate(8deg);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #052044;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-tag {
    background: #4ade80;
    color: #052044;
}

/* Feature Item with 'Trust' styling */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: background 0.3s;
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.feature-item .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -2px rgba(14, 165, 233, 0.2);
}

/* Check list styling */
.check-list {
    display: grid;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: var(--text-main);
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 56px;
}

.check-list li:hover {
    border-color: rgba(22, 163, 74, 0.3);
    transform: translateX(6px);
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.check-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 25px -5px rgba(0, 61, 122, 0.5);
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.step-card:hover .step-number {
    transform: rotate(0deg) scale(1.1);
}

/* Process Timeline */
/* Process Timeline Refinement */
.process-section {
    background: #ffffff;
    padding: 120px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-line {
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 45px;
    left: 12.5%;
    width: 0%;
    height: 3px;
    background: #ef4444; /* Vivid Red */
    z-index: 2;
}

.animate-in .timeline-progress {
    animation: fillProgress 12s ease-in-out forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 75%; } /* Reaches center of last icon */
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 3;
}

.step-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 32px;
}

.step-icon {
    width: 100%;
    height: 100%;
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-bg-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.05;
    z-index: 1;
    line-height: 1;
    pointer-events: none;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

/* Step Activation Animations (Delayed to match red line) */
.animate-in .process-step:nth-child(3) .step-icon { animation: stepActive 0.8s ease forwards 0s; }
.animate-in .process-step:nth-child(4) .step-icon { animation: stepActive 0.8s ease forwards 4s; }
.animate-in .process-step:nth-child(5) .step-icon { animation: stepActive 0.8s ease forwards 8s; }
.animate-in .process-step:nth-child(6) .step-icon { animation: stepActive 0.8s ease forwards 11.5s; }

@keyframes stepActive {
    0% { 
        border-color: #e2e8f0; 
        color: var(--primary-color);
        transform: scale(1);
    }
    100% { 
        border-color: #ef4444; 
        color: #ef4444;
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    }
}

.process-step p {
    font-size: 14px;
    color: #64748b;
    padding: 0 10px;
}

.trust-lbl {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: capitalize;
}

/* Pricing Section Refinement */
.pricing-section {
    background: #f8fafc;
}

.pricing-section-v2 {
    background: #050914;
    color: #e2e8f0;
}

.pricing-v2-header {
    text-align: left;
    max-width: 760px;
}

.pricing-v2-header h2 {
    color: #f8fafc;
    font-size: clamp(34px, 5.2vw, 56px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.pricing-v2-header p {
    color: #94a3b8;
    margin-bottom: 0;
}

.pricing-v2-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.pricing-v2-card {
    background: #0b1220;
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
}

.pricing-v2-featured {
    background: linear-gradient(180deg, #1d4ed8, #1e3a8a);
    border-color: #3b82f6;
    box-shadow: 0 22px 44px rgba(14, 65, 177, 0.35);
}

.pricing-v2-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    background: #fbbf24;
    padding: 4px 8px;
    border-radius: 999px;
}

.pricing-v2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.pricing-v2-name {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.pricing-v2-shift {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #93c5fd;
    border: 1px solid #1d4ed8;
    border-radius: 999px;
    padding: 4px 8px;
    flex-shrink: 0;
}

.pricing-v2-price {
    font-family: 'League Spartan', sans-serif;
    color: #f8fafc;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
}

.pricing-v2-price span {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.pricing-v2-list {
    margin: 0 0 16px;
    padding-left: 16px;
    list-style: disc;
    flex-grow: 1;
}

.pricing-v2-list li {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 8px;
}

.pricing-v2-card .btn {
    margin-top: auto;
}

.pricing-v2-card .btn-outline-blue {
    color: #93c5fd;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.12);
}

.pricing-v2-card .btn-outline-blue:hover {
    color: #f8fafc;
    background: #2563eb;
    border-color: #2563eb;
}

.pricing-v2-featured .btn-primary {
    background: #f8fafc;
    color: #1d4ed8;
    border-color: #f8fafc;
}

.pricing-v2-featured .btn-primary:hover {
    background: #dbeafe;
    color: #1e3a8a;
    border-color: #dbeafe;
}

.pricing-v2-note {
    margin-top: 24px;
    border-top: 1px solid #1e293b;
    padding-top: 18px;
}

.pricing-v2-note p {
    color: #94a3b8;
    margin-bottom: 8px;
}

.pricing-grid {
    align-items: stretch;
    margin-top: 40px;
}

.pricing-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 24px 22px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    display: block;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    min-height: auto;
    height: auto;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: #020c1b;
    border-color: #020c1b;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
    z-index: 5;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
    font-family: 'League Spartan', sans-serif;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card .period {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.7;
}

.pricing-quick {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 6px;
}

.pricing-more {
    margin: 0 0 10px;
    text-align: left;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
}

.pricing-more summary {
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-more summary::-webkit-details-marker {
    display: none;
}

.pricing-more summary::after {
    content: '+';
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.pricing-more[open] summary::after {
    content: '-';
}

.pricing-more-list {
    margin-top: 6px;
    margin-bottom: 0;
}

.pricing-more-list li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #64748b;
    padding-left: 0;
    list-style: disc;
    margin-left: 18px;
}

.pricing-more-list li::before {
    content: '';
}

.pricing-more-featured {
    border-top-color: rgba(148, 163, 184, 0.35);
}

.pricing-more-featured summary {
    color: #cbd5e1;
}

.pricing-more-featured .pricing-more-list li {
    color: #cbd5e1;
}

.pricing-card .btn-block {
    width: auto;
    display: inline-flex;
    min-width: 150px;
    margin-top: 4px;
}

.btn-outline-blue {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold-trust);
    position: relative;
}

.testimonial-card p {
    font-size: 18px;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 100px;
    color: #f1f5f9;
    font-family: serif;
    z-index: 0;
}

.testimonial-card p,
.testimonial-card .author {
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
    display: inline-block;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

/* Contact Section */
.contact-box {
    background: radial-gradient(circle at top right, #1e3a8a, #0f172a);
    padding: 80px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: white;
    box-shadow: var(--shadow-lg);
}

.contact-box h2,
.contact-box p,
.contact-box a {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.form-mockup {
    background: #1e293b;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-mockup input,
.form-mockup textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.form-mockup input::placeholder,
.form-mockup textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: #f5f5f7;
    padding: 60px 0 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #d2d2d7;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

/* Mobile Menu & Responsive */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
}

/* Removed remaining mobile media queries */

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Fixes */
.stagger-container>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-container>*.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* 3D Tilt Glare Effect */
.card,
.pricing-card,
.testimonial-card,
.feature-item,
.contact-box {
    transform-style: preserve-3d;
}

.glare {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    mix-blend-mode: overlay;
    z-index: 10;
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: rippleEffect 0.6s linear;
}

@keyframes rippleEffect {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Medical Pulse Animation */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.pulse-animation {
    animation: pulse-red 0.5s infinite;
}

/* Medical Background Pattern */
.bg-medical {
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

/* EKG Line Decoration (Optional usage) */
.ekg-line {
    height: 50px;
    width: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none"><polyline fill="none" stroke="%233b82f6" stroke-width="2" points="0,75 100,75 120,25 140,125 160,75 200,75 220,25 240,125 260,75 500,75" opacity="0.2"/></svg>');
    background-repeat: repeat-x;
    background-size: contain;
    margin: 20px 0;
}

/* ===== NEW INTERACTIVE ELEMENTS ===== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Trust Badges Section */
.trust-badges {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 94, 184, 0.1);
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 94, 184, 0.15);
}

.badge-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.badge-item span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 14px;
}

/* Stats Counter Section */
.stats-section {
    background: #020c1b; /* Extra deep navy from reference */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.services-offer-strip-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    padding: 60px 0 50px;
    position: relative;
    z-index: 1;
}

.services-offer-strip {
    text-align: center;
}

.services-offer-strip h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 32px;
    color: #052044;
    font-weight: 700;
}

.services-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.services-offer-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1.5px solid rgba(74, 222, 128, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.services-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.services-offer-card h3 {
    font-size: 24px;
    margin: 0 0 12px;
    line-height: 1.15;
    color: #052044;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.services-offer-card a {
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    padding-bottom: 4px;
}

.services-offer-card a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #16a34a;
    transition: width 0.3s ease;
}

.services-offer-card:hover a::after {
    width: 100%;
}

.services-offer-avatar {
    margin-top: auto;
    align-self: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #10b981);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 12px 28px rgba(74, 222, 128, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-offer-card:hover .services-offer-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 16px 36px rgba(74, 222, 128, 0.4);
}

.services-offer-cta {
    margin-top: 36px;
    text-align: center;
}

.services-offer-cta .btn {
    border-radius: 12px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-offer-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'League Spartan', sans-serif;
    display: inline-flex;
    align-items: baseline;
}

.stat-number::after {
    content: '+';
    color: #00f2fe; /* Brighter, more vibrant teal */
    margin-left: 4px;
    font-size: 0.7em; /* Proportionally sized */
    font-weight: 700;
}

.stat-label {
    font-size: 13px;
    color: #cbd5e1; /* Lighter color for better readability */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.5;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cta:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.floating-cta svg {
    width: 24px;
    height: 24px;
}

/* Interactive FAQ Accordion */
.faq-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1.5px solid rgba(74, 222, 128, 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(74, 222, 128, 0.15);
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #052044;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 16px;
    letter-spacing: -0.3px;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #f1f5f9 100%);
    color: #16a34a;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: #16a34a;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), rotate 0.4s ease;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #16a34a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 32px;
    color: #64748b;
    line-height: 1.8;
    font-weight: 400;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 32px 24px;
}

/* Responsive adjustments for new elements */
/* Removed mobile stats media queries */

/* Removed footer and badge media queries */

/* Service Preview Section */
.service-preview {
    margin-top: -50px;
    position: relative;
    z-index: 100;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-radius: var(--radius-lg);
    transition: background 0.3s ease, transform 0.3s ease;
}

.preview-item:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.preview-icon {
    width: 54px;
    height: 54px;
    background: var(--secondary-soft);
    color: var(--secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.preview-item:hover .preview-icon {
    background: var(--secondary-color);
    color: white;
}

.preview-text h5 {
    font-size: 18px;
    margin: 0 0 4px;
    color: var(--primary-color);
}

.preview-text p {
    font-size: 14px;
    margin: 0;
    color: var(--text-secondary);
}

/* Internal Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.hero-badge svg {
    color: var(--secondary-color);
}

/* Animations */

/* Removed mobile service-preview media queries */

/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary-soft) 0%, white 100%);
}

/* Why We Built This Section */
.why-built-section {
    background-color: #050505;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: white;
}

.why-built-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/file_00000000bba472088ba834f093222d1f.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
}

.why-title-col {
    padding-right: 40px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    margin-top: 10px;
}

.why-content-col {
    border-left: 4px solid var(--secondary-soft);
    padding-left: 40px;
}

.why-subhead {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-quote {
    position: relative;
    padding: 5px 0 5px 30px;
    margin: 15px 0;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: -10px;
    color: var(--secondary-color);
    opacity: 0.15;
    transform: scale(1.5);
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #f1f5f9;
    font-style: italic;
    margin-bottom: 10px;
}

.why-strong {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px !important;
    margin-top: 15px;
}

.why-promise {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #cbd5e1;
}

.testimonials-section .section-header h2 {
    color: var(--primary-dark);
    font-size: clamp(28px, 4vw, 42px);
}

/* App Launch Section */
.app-launch-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.app-launch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.app-launch-content {
    flex: 1;
    max-width: 600px;
}

.badge-dev {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dev::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #0d9488;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.5);
}

.app-launch-content h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--primary-color);
}

.app-launch-content .subtitle-text {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.highlight-teal {
    color: #0d9488;
}

.notify-form {
    margin-top: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 20px;
}

.notify-label {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 12px;
    font-weight: 600;
}

.notify-input-group {
    display: flex;
    gap: 12px;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-input-group.success-hide {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    margin-bottom: -50px; /* Collapse the space slightly */
}

.notify-input {
    flex: 1;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.notify-input::placeholder {
    color: #94a3b8;
}

.notify-input:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.btn-notify {
    background: #0d9488;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-notify:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-notify.loading {
    background: #0d9488;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.notify-response {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0d9488;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notify-response.visible {
    opacity: 1;
}

.app-mockup-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
}

.glow-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.app-mockup-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
}

.features-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #00B4A6;
    margin-bottom: 40px;
}

.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.app-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 180, 166, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.app-feature-card h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
}

.app-feature-card p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Feature Icon Colors */
.bg-purple-500 { background-color: rgba(168, 85, 247, 0.2); }
.bg-teal-500 { background-color: rgba(20, 184, 166, 0.2); }
.bg-indigo-500 { background-color: rgba(99, 102, 241, 0.2); }
.bg-red-500 { background-color: rgba(239, 68, 68, 0.2); }
.bg-orange-500 { background-color: rgba(249, 115, 22, 0.2); }
.bg-cyan-500 { background-color: rgba(6, 182, 212, 0.2); }
.bg-pink-500 { background-color: rgba(236, 72, 153, 0.2); }
.bg-yellow-500 { background-color: rgba(234, 179, 8, 0.2); }
.bg-rose-500 { background-color: rgba(244, 63, 94, 0.2); }

/* ============================================
   RESPONSIVE DESIGN — Mobile-First Approach
   Breakpoints: 1024px, 768px, 480px
   ============================================ */

/* === Small Desktop / Tablet Landscape (max-width: 1024px) === */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: 80vh;
        padding: 110px 0 60px;
    }

    .hero-wrapper {
        max-width: 600px;
    }

    h1 {
        font-size: clamp(36px, 5vw, 56px);
    }

    .story-gallery.bento-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-content {
        transform: none;
    }

    .bento-title {
        font-size: 40px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .timeline-line,
    .timeline-progress {
        display: none;
    }

    .grid-2 {
        gap: 40px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-box {
        padding: 50px;
    }

    .contact-grid {
        gap: 50px;
    }

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

    .stat-number {
        font-size: 60px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-trust-badges {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .story-section {
        padding: 100px 0;
    }

    .services-section {
        padding: 80px 0;
    }

    .stats-section {
        padding: 60px 0;
    }

    .reviews-section {
        padding: 80px 0;
    }

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

/* === Tablet Portrait (max-width: 768px) === */
@media (max-width: 768px) {
    /* Override overflow to prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .app-launch-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .app-feature-grid {
        grid-template-columns: 1fr;
    }

    .notify-input-group {
        flex-direction: column;
    }

    /* Navbar Mobile */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .navbar-content {
        height: 70px;
    }

    .logo img,
    .logo > img {
        height: 55px !important;
        width: 55px !important;
        border-radius: 50% !important;
    }

    .logo span:first-child,
    .logo div span:first-child {
        font-size: 22px !important;
    }

    .logo span:last-child,
    .logo div span:last-child {
        font-size: 12px !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 1000;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-links .btn-sm {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        min-height: 48px;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: clamp(30px, 7vw, 44px);
        margin-bottom: 16px;
    }

    .hero p.subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-wrapper {
        max-width: 100%;
    }

    .btn-primary-hero {
        max-width: 100%;
    }

    .cta-secondary-row {
        max-width: 100%;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cta-group {
        margin-bottom: 30px;
    }

    /* Trust Bar Mobile */
    .trust-bar-green {
        padding: 16px 0;
    }

    .trust-bar-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .trust-bar-item {
        flex: 0 0 calc(50% - 8px);
        justify-content: center;
    }

    .trust-val {
        font-size: 16px;
    }

    .trust-lbl {
        font-size: 12px;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .stat-number {
        font-size: 44px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* Reviews Mobile */
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .google-rating-box {
        flex-wrap: wrap;
        gap: 12px;
    }

    .rating-num {
        font-size: 36px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 24px;
    }

    /* Story / Bento Grid Mobile */
    .story-section {
        padding: 60px 0;
    }

    .story-gallery.bento-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bento-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .story-text .lead {
        font-size: 18px;
    }

    .quote-icon {
        font-size: 120px;
        top: -40px;
        left: -20px;
    }

    .story-bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .bento-card {
        padding: 16px;
        border-radius: 14px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Reset the staggered padding offsets */
    .bento-2 { padding-top: 16px; }
    .bento-3 { padding-bottom: 16px; }

    .bento-card .story-card-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .bento-card .story-card-icon svg {
        width: 16px;
        height: 16px;
    }

    .bento-card h3 {
        font-size: 14px !important;
        font-weight: 800 !important;
        margin-bottom: 4px !important;
        line-height: 1.2;
        color: #ffffff !important;
    }

    .bento-card p {
        font-size: 12px !important;
        line-height: 1.45;
        color: #94a3b8 !important;
        margin: 0 !important;
    }

    /* Services Mobile */
    .services-section {
        padding: 56px 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .service-card {
        padding: 18px 16px;
        border-radius: 16px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: #ffffff;
        border: 1.5px solid #f1f5f9;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    /* Top row: icon + tag side by side */
    .service-card-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .service-card .card-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: #f0fdf4;
        color: #16a34a;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .service-card .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .service-card h3 {
        font-size: 13.5px;
        font-weight: 800;
        color: #052044;
        margin: 0 0 6px;
        line-height: 1.25;
    }

    .service-card p {
        font-size: 12px;
        color: #64748b;
        line-height: 1.5;
        margin: 0 0 10px;
        flex-grow: 1;
    }

    .service-tag {
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        background: #f1f5f9;
        color: #475569;
        border-radius: 999px;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        width: fit-content;
        align-self: flex-start;
    }

    /* Hover/active state on touch */
    .service-card:active {
        border-color: rgba(22, 163, 74, 0.3);
        box-shadow: 0 4px 16px rgba(22, 163, 74, 0.12);
    }

    /* Accent top border per card — subtle color coding */
    .service-card:nth-child(1) { border-top: 3px solid #16a34a; }
    .service-card:nth-child(2) { border-top: 3px solid #0ea5e9; }
    .service-card:nth-child(3) { border-top: 3px solid #f59e0b; }
    .service-card:nth-child(4) { border-top: 3px solid #8b5cf6; }
    .service-card:nth-child(5) { border-top: 3px solid #ef4444; }
    .service-card:nth-child(6) { border-top: 3px solid #06b6d4; }

    /* Disable stagger animation on mobile for instant render */
    .service-card:nth-child(n) {
        transition-delay: 0s;
    }

    /* Hide decorative bg circle on mobile */
    .service-card .card-bg-circle {
        display: none;
    }

    /* Process Timeline Mobile */
    .process-section {
        padding: 60px 0;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .timeline-line,
    .timeline-progress {
        display: none;
    }

    .step-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .step-bg-num {
        font-size: 70px;
    }

    /* Grid Layouts Mobile */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-v2-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-v2-card {
        padding: 16px 14px;
    }

    .pricing-v2-price {
        font-size: 34px;
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card .price {
        font-size: 36px;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 20px 24px;
        font-size: 15px;
        font-weight: 600;
        color: #052044;
    }

    .faq-answer {
        padding: 0 24px;
        font-size: 14px;
        color: #64748b;
    }

    .faq-item.active .faq-answer {
        padding: 12px 24px 20px;
    }

    /* Contact Mobile */
    .contact-box {
        padding: 40px 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-mockup {
        padding: 24px;
    }

    .btn-block {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Service Preview Mobile */
    .service-preview {
        grid-template-columns: 1fr;
        margin-top: -30px;
        padding: 30px;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 32px;
    }

    h2 {
        font-size: clamp(26px, 5vw, 36px);
        margin-bottom: 16px;
    }

    h3 {
        font-size: 20px;
    }

    /* Buttons touch-friendly */
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }
}

/* === Small Mobile (max-width: 480px) === */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 48px 0;
    }

    /* Hero small mobile */
    .hero {
        padding: 90px 0 48px;
    }

    .hero h1 {
        font-size: clamp(26px, 8vw, 36px);
    }

    .hero p.subtitle {
        font-size: 15px;
    }

    .hero-tagline {
        font-size: 11px;
        padding: 6px 12px;
    }

    .btn-primary-hero {
        padding: 14px 24px;
        font-size: 15px;
    }

    .cta-secondary-row {
        flex-direction: column;
        gap: 10px;
    }

    .btn-secondary-hero {
        width: 100%;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 8px;
    }

    /* Trust Bar small mobile */
    .trust-bar-item {
        flex: 0 0 calc(50% - 8px);
    }

    .trust-val {
        font-size: 15px;
    }

    .trust-lbl {
        font-size: 11px;
    }

    /* Stats small mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Bento Grid small mobile */
    .story-bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .bento-card {
        padding: 14px;
    }

    .bento-card h3 {
        font-size: 13px !important;
    }

    .bento-card p {
        font-size: 11.5px !important;
    }

    .bento-title {
        font-size: 28px;
    }

    .story-text .lead {
        font-size: 16px;
        padding-left: 16px;
    }

    /* Services Grid small mobile */
    .services-grid {
        gap: 8px;
    }

    .service-card {
        padding: 16px 14px;
    }

    .service-card h3 {
        font-size: 13px;
    }

    .service-card p {
        font-size: 11.5px;
    }

    /* Reviews small mobile */
    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 14px;
    }

    /* Check list small mobile */
    .check-list {
        gap: 14px;
    }

    .check-list li {
        padding: 16px 18px;
        gap: 14px;
        min-height: 54px;
        font-size: 14px;
    }

    .check-list li::before {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    /* Process steps small mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .step-bg-num {
        font-size: 50px;
    }

    /* Pricing small mobile */
    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card .price {
        font-size: 32px;
    }

    /* Contact small mobile */
    .contact-box {
        padding: 30px 16px;
        border-radius: 16px;
    }

    .contact-box h2 {
        font-size: 24px;
    }

    .contact-list li {
        font-size: 14px;
    }

    /* Footer small mobile */
    footer {
        padding: 40px 0 16px;
    }

    .footer-col h3 {
        font-size: 15px;
    }

    /* General type small mobile */
    h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 15px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    /* FAQ small mobile */
    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Make check-list items wrap nicely */
    .check-list li {
        padding: 12px;
        font-size: 14px;
    }

    /* Logo sizing small mobile */
    .logo img,
    .logo > img {
        height: 45px !important;
        width: 45px !important;
        border-radius: 50% !important;
    }

    .logo span:first-child,
    .logo div span:first-child {
        font-size: 18px !important;
    }

    .logo span:last-child,
    .logo div span:last-child {
        font-size: 10px !important;
    }

    .navbar-content {
        height: 60px;
    }

    .nav-links {
        top: 60px;
    }
}

/* === Global image responsiveness === */
img {
    max-width: 100%;
    height: auto;
}

/* === Prevent horizontal overflow globally === */
*, *::before, *::after {
    max-width: 100vw;
}

.container, .navbar, .hero, section, footer, main {
    max-width: 100%;
}

/* === Terms/Privacy page mobile overrides === */
@media (max-width: 768px) {
    .terms-content {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Override inline styles on terms/privacy page content boxes */
    .section > .container[style*="max-width: 900px"] {
        padding: 24px !important;
    }

    .section > .container[style*="max-width: 900px"] h1 {
        font-size: 28px !important;
    }

    .section > .container[style*="max-width: 900px"] h2 {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .services-offer-strip-section {
        padding: 84px 0 12px;
    }

    .services-offer-strip h2 {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 16px;
        color: #0f172a;
    }

    .services-offer-grid {
    grid-template-columns: 1fr 1fr;   /* ← 2×2 grid on mobile */
    gap: 10px;
    }

    .services-offer-card {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 80px;
        grid-template-rows: auto auto;
        gap: 8px 12px;
        align-items: center;
        padding: 20px 18px;
        border-radius: 16px;
    }

    .services-offer-card h3 {
        font-size: 20px;
        margin: 0;
        grid-column: 1;
        grid-row: 1;
        color: #052044;
        font-weight: 700;
    }

    .services-offer-card a {
        margin: 0;
        grid-column: 1;
        grid-row: 2;
        font-size: 14px;
        color: #16a34a;
        font-weight: 700;
    }

    .services-offer-avatar {
        width: 78px;
        height: 78px;
        font-size: 36px;
        margin: 0;
        justify-self: end;
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .services-offer-cta {
        margin-top: 14px;
    }

/* ============================================
   MOBILE BOTTOM TOOLBAR — Redesigned
   ============================================ */

.mobile-toolbar {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    display: none;
}

.mobile-toolbar.visible {
    display: block;
}

.toolbar-container {
    position: absolute;
    left: 50%;
    bottom: max(env(safe-area-inset-bottom, 12px), 12px);
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 480px;
    padding: 10px 12px;
    background: #052044;
    border-radius: 18px;
    box-shadow: 0 -4px 24px rgba(5, 32, 68, 0.28), 0 8px 32px rgba(0,0,0,0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    opacity: 0;
    transform: translate(-50%, 16px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease-out;
}

.mobile-toolbar.visible .toolbar-container {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Appointment — dominant wide button */
.toolbar-btn.toolbar-action-appointment {
    flex: 1;
    height: 52px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
    -webkit-tap-highlight-color: transparent;
    transition: filter 0.2s ease, transform 0.2s ease;
    flex-direction: row;
}

.toolbar-btn.toolbar-action-appointment .toolbar-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

.toolbar-btn.toolbar-action-appointment svg {
    width: 17px;
    height: 17px;
    stroke: white;
    fill: none;
}

.toolbar-btn.toolbar-action-appointment span:last-child {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

/* Divider between appointment and icon buttons */
.toolbar-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Call + WhatsApp — compact square icon buttons */
.toolbar-btn.toolbar-action-call,
.toolbar-btn.toolbar-action-whatsapp {
    width: 52px;
    height: 52px;
    min-width: 52px;
    flex: 0 0 52px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.toolbar-btn.toolbar-action-call {
    background: rgba(255, 255, 255, 0.07);
}

.toolbar-btn.toolbar-action-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.22);
}

.toolbar-btn.toolbar-action-call .toolbar-icon,
.toolbar-btn.toolbar-action-whatsapp .toolbar-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

.toolbar-btn.toolbar-action-call svg,
.toolbar-btn.toolbar-action-whatsapp svg {
    width: 18px;
    height: 18px;
}

.toolbar-icon-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.toolbar-btn span.toolbar-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2px;
    line-height: 1;
    display: block;
}

/* Active / press states */
.toolbar-btn:active {
    transform: scale(0.96);
    outline: none;
}

.toolbar-btn.toolbar-action-appointment:active {
    filter: brightness(0.92);
}

.toolbar-btn.toolbar-action-call:active {
    background: rgba(255, 255, 255, 0.14);
}

.toolbar-btn.toolbar-action-whatsapp:active {
    background: rgba(37, 211, 102, 0.2);
}

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

.toolbar-btn span {
    line-height: 1.2;
}

/* Show only on mobile (≤768px) */
@media (max-width: 768px) {
    .mobile-toolbar {
        display: block;
    }
}

/* =============================================
   SERVICES OFFER STRIP — Mobile Redesign
   ============================================= */
@media (max-width: 768px) {
    .services-offer-strip-section {
        padding: 60px 0 32px;
    }

    .services-offer-strip h2 {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #052044;
        font-weight: 800;
    }

    .services-offer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .services-offer-card {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 16px;
        border-radius: 14px;
        background: #ffffff;
        border: 1.5px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
    }

    .services-offer-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #16a34a, #4ade80);
        border-radius: 14px 0 0 14px;
    }

    /* Hide the emoji avatar on mobile */
    .services-offer-avatar {
        display: none;
    }

    .services-offer-card h3 {
        font-size: 15px;
        font-weight: 800;
        color: #052044;
        margin: 0;
        line-height: 1.25;
    }

    .services-offer-card a {
        font-size: 12px;
        font-weight: 700;
        color: #16a34a;
        margin: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .services-offer-card a::after {
        content: '→';
        font-size: 12px;
    }

    .services-offer-cta {
        margin-top: 20px;
    }
}


/* =============================================
   PROCESS TIMELINE — Mobile Redesign
   ============================================= */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }

    .process-timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 36px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    /* Vertical connecting line */
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 27px;
        top: 28px;
        bottom: 28px;
        width: 2px;
        background: linear-gradient(180deg, #16a34a 0%, #e2e8f0 100%);
        z-index: 0;
    }

    .timeline-line,
    .timeline-progress {
        display: none;
    }

    .process-step {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto;
        align-items: start;
        gap: 0 16px;
        text-align: left;
        padding: 0 0 28px 0;
    }

    .process-step:last-child {
        padding-bottom: 0;
    }

    /* Icon sits in column 1, spans both rows */
    .step-icon-wrapper {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: start;
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        margin: 0;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        background: #ffffff;
        border: 2px solid #16a34a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #16a34a;
        box-shadow: 0 2px 8px rgba(22,163,74,0.15);
        position: relative;
        z-index: 2;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Title — column 2, row 1 */
    .process-step h3,
    .process-step h4 {
        grid-column: 2;
        grid-row: 1;
        font-size: 15px;
        font-weight: 800;
        color: #052044;
        margin: 10px 0 4px;
        padding: 0;
        line-height: 1.2;
        white-space: nowrap; /* prevent wrapping */
    }

    /* Description — column 2, row 2 */
    .process-step p {
        grid-column: 2;
        grid-row: 2;
        font-size: 13px;
        color: #64748b;
        line-height: 1.55;
        margin: 0;
        padding: 0;
    }

    /* Hide the large background number */
    .step-bg-num {
        display: none;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .services-offer-card h3 {
        font-size: 14px;
    }

    .process-step h3,
    .process-step h4 {
        font-size: 15px;
    }
}