/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette */
    --bg-color: #FAF9F6; /* Warm off-white */
    --bg-darker: #F3F1EC;
    --text-main: #2A3B47; /* Deep soft blue/grey */
    --text-muted: #5B6F7D;
    
    --primary: #A3C9A8; /* Pastel Green */
    --primary-hover: #8FBA95;
    --secondary: #A2D2FF; /* Pastel Blue */
    --secondary-hover: #8ABEEF;
    --accent: #E8D5C4; /* Beige Pastel */
    
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Borders */
    --container-width: 1200px;
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --shadow-sm: 0 4px 12px rgba(42, 59, 71, 0.05);
    --shadow-md: 0 12px 32px rgba(42, 59, 71, 0.08);
    --shadow-hover: 0 20px 48px rgba(42, 59, 71, 0.12);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.highlight-green {
    position: relative;
    display: inline-block;
    color: var(--text-main);
    z-index: 1;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2%;
    width: 104%;
    height: 35%;
    background-color: var(--primary);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

.highlight-blue {
    position: relative;
    display: inline-block;
    color: var(--text-main);
    z-index: 1;
}

.highlight-blue::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -2%;
    width: 104%;
    height: 35%;
    background-color: var(--secondary);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(1deg);
}

.italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
}

.fw-regular {
    font-weight: 400;
}

/* =========================================
   LAYOUT & UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    padding: 6rem 0;
    background-color: var(--bg-darker);
}

.bg-soft {
    background-color: var(--white);
    border-radius: 40px;
    margin: 2rem;
    padding: 6rem 0;
    box-shadow: var(--shadow-sm);
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 4px 14px rgba(163, 201, 168, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 201, 168, 0.6);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--white);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 59, 71, 0.05);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-main);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background-color: var(--accent);
    border-radius: 50px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Placeholders */
.video-placeholder, .image-placeholder {
    background-color: var(--bg-darker);
    border: 2px dashed rgba(42, 59, 71, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-video {
    width: 320px;
    height: 570px; /* 16:9 vertical ratio approximation */
    background-color: #E8E8E8;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    object-fit: cover;
    border: none;
}

.play-icon {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Blobs for aesthetic background */
.blob {
    position: absolute;
    filter: blur(60px);
    z-index: 1;
    border-radius: 50%;
    opacity: 0.6;
}

.blob-green {
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    top: -50px;
    right: 0;
}

.blob-blue {
    width: 250px;
    height: 250px;
    background-color: var(--secondary);
    bottom: 50px;
    left: -20px;
}

/* =========================================
   AGITATION SECTION
   ========================================= */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.pain-icon {
    background-color: var(--bg-darker);
    color: var(--text-main);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
}

.pain-card:hover .pain-icon {
    transform: scale(1.1);
    background-color: var(--primary);
    color: var(--white);
}

.pain-card p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.agitation-conclusion {
    text-align: center;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--accent);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-sm);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-main);
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 0.2rem;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-text strong {
    color: var(--text-main);
}

.empower {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-main) !important;
    margin-top: 2rem;
}

/* =========================================
   SOLUTIONS SECTION
   ========================================= */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(42, 59, 71, 0.05);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.solution-card.pop {
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.card-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.tag-green { background-color: var(--primary); }
.tag-blue { background-color: var(--secondary); }

.card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 2rem;
}

.card-features {
    margin-bottom: 2.5rem;
}

.card-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(42, 59, 71, 0.05);
    font-weight: 500;
}

.card-features li:last-child {
    border-bottom: none;
}

/* =========================================
   PROOF SECTION
   ========================================= */
.proof-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.proof-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-img-wrapper {
    flex: 0 0 280px;
    scroll-snap-align: center;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--bg-darker);
    aspect-ratio: 9/16; /* Ideal for vertical screenshots like IG/WhatsApp */
}

.testimonial-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevent cropping important text */
    background-color: var(--white);
    display: block;
}

/* =========================================
   INSTAGRAM SECTION
   ========================================= */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ig-card {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    aspect-ratio: 4/5; /* Standard IG portrait post */
    background-color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ig-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ig-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ig-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42, 59, 71, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.ig-card:hover .ig-overlay {
    opacity: 1;
}

.ig-icon {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
    background-color: var(--primary);
    padding: 6rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 700px;
}

.footer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(42, 59, 71, 0.8);
}

.footer-actions {
    margin-bottom: 4rem;
}

.footer-actions .btn {
    background-color: var(--text-main);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(42, 59, 71, 0.2);
}

.footer-actions .btn:hover {
    background-color: #1a242c;
    transform: translateY(-4px);
}

.footer-secondary {
    padding: 2rem 0;
    border-top: 1px solid rgba(42, 59, 71, 0.1);
    border-bottom: 1px solid rgba(42, 59, 71, 0.1);
    margin-bottom: 2rem;
}

.footer-secondary p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.substack-link {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.substack-link:hover {
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(42, 59, 71, 0.08);
    color: var(--primary);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (MOBILE OPTIMIZED)
   ========================================= */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 2rem; }
    .hero-actions { justify-content: center; }
    .hero-media { order: -1; margin-bottom: 2rem; width: 100%; max-width: 400px; margin-inline: auto; display: flex; justify-content: center; }
    
    /* Fix video ratio on tablets/mobile */
    .hero-video { width: 100%; height: auto; aspect-ratio: 9/16; }
    
    .blob-green { right: 5%; width: 200px; height: 200px; }
    .blob-blue { left: 5%; width: 180px; height: 180px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .experience-badge { right: 0; bottom: -15px; width: 120px; height: 120px; }
    .badge-number { font-size: 2rem; }
    
    .bg-soft { margin: 1rem; padding: 4rem 1.5rem; border-radius: 30px; }
    .solutions-grid { grid-template-columns: 1fr; gap: 2rem; }
    .ig-grid { gap: 1rem; }
}

@media (max-width: 768px) {
    .navbar-inner { height: 70px; }
    .brand-logo { font-size: 1.3rem; }
    .nav-links .btn { font-size: 0.85rem; padding: 0.5rem 1rem; }
    
    .section { padding: 4rem 0; }
    .hero { padding-top: 6rem; padding-bottom: 3rem; }
    .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 1rem; line-height: 1.1; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    
    .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 1.5rem; }
    
    .pain-points-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .proof-grid { gap: 1rem; scroll-padding-left: 1.25rem; }
    .testimonial-img-wrapper { flex: 0 0 75vw; }
    
    .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .ig-card { border-radius: 8px; }
    .ig-image-placeholder { font-size: 0.75rem; }
    .pain-card { flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; }
    .pain-icon { margin-bottom: 1rem; }
    
    .about-text p { font-size: 1.05rem; }
    .empower { font-size: 1.5rem; margin-top: 1.5rem; }
    
    .solution-card { padding: 2.5rem 1.5rem; }
    .card-title { font-size: 1.5rem; }
    .card-desc { font-size: 1rem; margin-bottom: 1.5rem; }
    

    
    .footer { padding: 4rem 0 2rem; }
    .footer-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .footer-desc { font-size: 1.1rem; padding: 0 1rem; }
}
