/* =========================================
   1. VARIABLES & CONFIGURATION
   ========================================= */
:root {
    /* --- Colors: Neutrals --- */
    --bg-white: #ffffff;
    --bg-offset: #fafafa;
    --bg-dark: #111111;
    
    --text-main: #111111; 
    --text-light: #555555;
    --text-inverse: #ffffff;
    --border-color: #e5e5e5;

    /* --- Colors: Brand / Accent --- */
    /* Primary Accent Blue (Requested) */
    --text-accent: #2563eb; 
    --pain-color: #ef4444; 
    --success-color: #34C759;

    /* --- Typography --- */
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* --- Layout --- */
    --max-width: 900px;
    --spacing-section: 120px; /* Kept the more generous spacing from style.css */
}

/* =========================================
   2. RESET & GLOBAL STYLES
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Responsive Headings */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h1.headline-primary {
    /* Helper class for specific hero usage */
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Sub-headlines & Lead Text */
.headline-sub {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.lead-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.note {
    font-style: italic;
    color: #666;
    font-size: 1rem;
}

/* Decorative Section Titles */
h2.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--text-main);
    padding-bottom: 10px;
    display: inline-block;
}

h2.section-title-inverse {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--text-inverse);
    padding-bottom: 10px;
    display: inline-block;
    color: var(--text-inverse);
}

/* Accent Labels & Highlights */
.label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.label-pill {
    /* Pill style label from style.css */
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    padding: 4px 12px;
    border-radius: 50px;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-main);
    border-left: 3px solid var(--text-accent);
    padding-left: 1rem;
}

/* =========================================
   4. BUTTONS & LINKS
   ========================================= */
a {
    color: var(--text-accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px; /* Rounded corners from missed-call.css */
    border: 2px solid transparent; /* Prepare for border variants */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary Button - BLUE (Requested) */
.btn-primary {
    background-color: var(--text-accent);
    color: #fff;
    border-color: var(--text-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-accent);
    transform: translateY(-2px); /* Lift effect */
}

/* Inverse Button (Dark Backgrounds) */
.btn-inverse {
    background-color: var(--text-inverse);
    color: var(--bg-dark);
    border-color: var(--text-inverse);
}

.btn-inverse:hover {
    background-color: transparent;
    color: var(--text-inverse);
}

/* CTA Wrapper */
.cta-wrapper {
    margin-top: 2rem;
}

/* =========================================
   5. LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.content-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-section) 0;
}

.text-center { text-align: center; }
.text-white { color: #fff; }

.bg-offset { background-color: var(--bg-offset); }
.bg-dark { background-color: var(--bg-dark); color: #fff; }

/* Grid Systems */
.grid-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.grid-three-col {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* =========================================
   6. HEADER & NAVIGATION
   ========================================= */
.site-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
}

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

.logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    list-style: none;
}

.main-nav a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--text-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================================
   7. HERO & MEDIA COMPONENTS
   ========================================= */
.hero-section {
    padding: 60px 0 40px;
}

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

.hero-note {
    font-weight: 600;
    color: var(--text-light);
    margin-top: 1rem;
    display: block;
}

/* Hero Video Wrapper */
.hero-video-wrapper {
    margin: 3rem auto 0;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    line-height: 0;
}

.hero-video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================
   8. LIST STYLES
   ========================================= */
ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

/* Standard Arrow List */
.styled-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.styled-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--text-main);
}

/* Pain Points (Red X) */
.pain-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
}
.pain-list li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: var(--pain-color);
    font-size: 0.9rem;
}

/* Check List (Blue Check) */
.check-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-accent);
    font-weight: bold;
}

/* White Check List (For Dark Backgrounds) */
.check-list-white li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: #fff;
}
.check-list-white li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}

/* =========================================
   9. COMPONENT BLOCKS
   ========================================= */

/* Social Proof */
.social-proof {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
}
.social-proof p { margin-bottom: 0; color: #888; }

/* Service Cards */
.service-card {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* Spotlight Section (Split Layout) */
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spotlight-media {
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.media-placeholder {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mockup Chat Bubbles */
.mockup-text-bubble {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    position: relative;
    max-width: 85%;
}

.bubble-incoming {
    background-color: #f1f1f1;
    color: #444;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    padding: 8px 16px;
}
.bubble-reply {
    background-color: var(--success-color);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.bubble-reply p { color: #fff; margin-bottom: 0; }

/* Numbered Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #eee;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Quote Box */
.quote-box {
    background: #eef2ff; /* Very light blue tint */
    padding: 1.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 0;
}

/* Bio Section */
.bio-wrapper {
    max-width: 700px;
}
.bio-wrapper p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* =========================================
   10. CONTACT & FOOTER
   ========================================= */

/* Contact (Dark Mode Section) */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-inverse);
}

.contact-container {
    text-align: center;
    max-width: 600px;
}

.contact-sub { color: #cccccc; }

.contact-methods {
    text-align: left; 
    margin: 2rem auto; 
    display: inline-block;
}

.contact-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888888;
}

/* Site Footer */
.site-footer {
    padding: 1rem 0;
    background: #000; 
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}
.site-footer p {margin-bottom:0;font-size: 12px;color:#ccc;}
.footer-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    list-style: none;
}
.footer-benefits li::before { content: "• "; color: #ccc; margin-right: 5px; }


/* --- IPHONE VIDEO WRAPPER --- */
.iphone-container {
    width: 100%;
    /* Standard width of a large iPhone on desktop view */
    max-width: 350px; 
    margin: 0 auto;
    position: relative;
}

/* THE VIDEO RATIO (9:16) */
.iphone-screen {
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* OPTIONAL: ADD THE "DEVICE" LOOK */
.iphone-bezel {
    border-radius: 48px; /* Smooth corners */
    border: 12px solid #1c1c1e; /* Dark bezel color */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* Depth */
    /* Fixes video bleeding outside rounded corners */
    -webkit-mask-image: -webkit-radial-gradient(white, black); 
}

/* THE VIDEO ELEMENT */
.iphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
    display: block;
}

/* OPTIONAL: DYNAMIC ISLAND / NOTCH (Pure CSS) */
.iphone-notch::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    pointer-events: none; /* Let users click the video underneath if needed */
}


/* --- SEO PAGE STYLES --- */

/* Package Card (The $1,500 Base) */
.package-card {
    background: #fff;
    border: 1px solid var(--text-main); /* Dark border to signify importance */
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.package-desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: right;
}

.currency {
    font-size: 1rem;
    vertical-align: top;
    margin-right: 2px;
}

.one-time {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.divider {
    height: 1px;
    background: #eee;
    width: 100%;
    margin: 2rem 0;
}

.small-list li {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Module Cards (The Add-ons) */
.module-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.2s;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: #ccc;
}

.module-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.module-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.tiny {
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
    vertical-align: middle;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-main);
    font-weight: bold;
}

/* Mini Grid (Socials/Ads) */
.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
    align-items: center;
}

.sub-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.price-inline {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
    .package-header {
        flex-direction: column;
    }
    .price-tag {
        text-align: left;
    }
    .grid-two-col {
        grid-template-columns: 1fr;
    }
    .mini-grid {
        grid-template-columns: 1fr;
    }
    .mini-grid > div:last-child {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 2rem;
    }
}

/* =========================================
   11. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    :root {
        --spacing-section: 80px;
    }
    
    .main-nav {
        display: none; /* Hide nav on small screens */
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .spotlight-media {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-benefits { flex-direction: column; gap: 0.5rem; }
    .footer-benefits li::before { content: ""; }
    :root { --spacing-section: 60px; }
}