/* Start custom CSS for html, class: .elementor-element-9a709fa *//* ==========================================================================
   MY BEST BUD - DESIGN SYSTEM & STYLES (3D CLINICAL NATURAL AESTHETIC)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette (Releaf Brand Theme) */
    --primary-dark: hsl(150, 60%, 11%);      /* Deep Pine Green */
    --primary-mid: hsl(150, 58%, 18%);       /* Rich Forest Green */
    --primary-light: hsl(150, 50%, 25%);     /* Soft Green */
    --emerald: hsl(145, 63%, 45%);           /* Midtone Natural Accent */
    --mint: hsl(150, 72%, 46%);              /* Glowing Mint Green */
    --mint-light: hsl(150, 48%, 94%);        /* Ultra Soft Mint Backdrop */
    --accent-orange: hsl(24, 95%, 53%);      /* Releaf Specialists Warm Orange */
    --accent-orange-hover: hsl(24, 95%, 48%);
    --accent-gold: hsl(42, 95%, 53%);        /* Trust Star Gold */
    
    /* Neutral & Backgrounds */
    --bg-light: hsl(150, 30%, 98%);          /* Creamy White Mint Tint */
    --bg-card: #ffffff;
    --bg-dark: hsl(150, 40%, 6%);            /* Very Deep Charcoal Green */
    --text-main: hsl(150, 30%, 12%);         /* Deep Charcoal Green */
    --text-muted: hsl(150, 12%, 42%);        /* Balanced Subtitle Grey */
    --text-light: #ffffff;
    
    /* Glassmorphism & Borders */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --border-light: rgba(10, 58, 32, 0.08);
    --border-focus: hsl(145, 63%, 45%);
    
    /* Shadows & Depth */
    --shadow-sm: 0 4px 6px -1px rgba(10, 58, 32, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(10, 58, 32, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(10, 58, 32, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-3d: 0 20px 40px -10px rgba(4, 120, 87, 0.25), 0 10px 20px -15px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-headers: 'Jost', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-out;

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

/* ==========================================================================
   BASE RESET & UTILITIES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-headers);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-standard {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

/* ==========================================================================
   PARTNERSHIP BANNER & HEADER
   ========================================================================== */
.system-banner {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.system-banner a {
    color: var(--mint);
    font-weight: 600;
    text-decoration: underline;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    filter: drop-shadow(0 2px 8px rgba(4, 120, 87, 0.15));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-mid);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--emerald);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header-cta {
    background-color: var(--accent-orange);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.btn-header-cta:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn .bar {
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 80px 0 120px 0;
    background: radial-gradient(circle at 80% 20%, hsl(150, 40%, 94%) 0%, var(--bg-light) 60%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(4, 120, 87, 0.08);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge i {
    color: var(--emerald);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-3d {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.35);
    border: none;
    cursor: pointer;
}

.btn-primary-3d:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.45);
}

.btn-secondary-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.btn-secondary-glow:hover {
    background-color: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Custom visual in place of stock photo */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    filter: blur(20px);
}

.podcast-art-3d {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Audio waves and decorative particles */
.podcast-waves {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-top: 20px;
}

.podcast-wave-bar {
    flex: 1;
    background: linear-gradient(to top, var(--emerald), var(--mint));
    border-radius: 4px;
    height: 10%;
    animation: wave-bounce 1.5s infinite ease-in-out alternate;
}

.podcast-wave-bar:nth-child(2) { animation-delay: 0.15s; height: 15%; }
.podcast-wave-bar:nth-child(3) { animation-delay: 0.3s; height: 25%; }
.podcast-wave-bar:nth-child(4) { animation-delay: 0.45s; height: 40%; }
.podcast-wave-bar:nth-child(5) { animation-delay: 0.6s; height: 60%; }
.podcast-wave-bar:nth-child(6) { animation-delay: 0.75s; height: 90%; }
.podcast-wave-bar:nth-child(7) { animation-delay: 0.9s; height: 75%; }
.podcast-wave-bar:nth-child(8) { animation-delay: 1.05s; height: 45%; }
.podcast-wave-bar:nth-child(9) { animation-delay: 1.2s; height: 20%; }
.podcast-wave-bar:nth-child(10) { animation-delay: 1.35s; height: 10%; }

@keyframes wave-bounce {
    0% { height: 10%; }
    100% { height: 100%; }
}

.podcast-badge {
    align-self: flex-start;
    background-color: var(--accent-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.podcast-center {
    text-align: center;
    margin: 20px 0;
}

.podcast-mic-icon {
    font-size: 4rem;
    color: var(--mint);
    margin-bottom: 12px;
    animation: float-slow 4s infinite ease-in-out;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.podcast-title-art {
    color: white;
    font-family: var(--font-headers);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.podcast-title-art span {
    color: var(--mint);
}

.podcast-footer-art {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* ==========================================================================
   WHY THIS PODCAST EXISTS
   ========================================================================== */
.why-exists-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald);
    margin-bottom: 16px;
    display: block;
}

.section-title-large {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.questions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.question-bubble {
    background-color: var(--mint-light);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.question-bubble i {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.why-narrative {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.why-narrative p {
    margin-bottom: 20px;
}

.why-narrative p:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--emerald);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-mid);
}

/* ==========================================================================
   FORMS GENERAL & ASK BOB SECTION
   ========================================================================== */
.form-section {
    background: radial-gradient(circle at 10% 80%, hsl(150, 40%, 94%) 0%, var(--bg-light) 80%);
}

.form-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.form-header p {
    color: var(--text-muted);
    font-weight: 500;
}

.form-card-3d {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.form-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--emerald);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group label span.optional {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: lowercase;
    font-weight: 400;
}

.form-control {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(10, 58, 32, 0.15);
    background-color: #ffffff;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a3a20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.form-action .btn-primary-3d {
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.form-reassurance {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Success State Styles */
.form-success-container {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.4s ease-out forwards;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--mint-light);
    color: var(--emerald);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.form-success-container h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.form-success-container p {
    color: var(--text-muted);
    max-width: 500px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   WHAT YOU'LL HEAR SECTION (CARDS GRID)
   ========================================================================= */
.what-you-hear-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

.section-header-std {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-header-std h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-header-std p {
    color: var(--text-muted);
    font-weight: 500;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.hear-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.hear-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--mint));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.hear-card:hover {
    transform: translateY(-8px);
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.2);
}

.hear-card:hover::after {
    transform: scaleX(1);
}

.hear-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--emerald);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.hear-card:hover .hear-icon-box {
    background-color: var(--emerald);
    color: white;
    transform: scale(1.05);
}

.hear-card h3 {
    font-size: 1.35rem;
    color: var(--primary-dark);
}

.hear-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   MEET BOB SECTION
   ========================================================================== */
.meet-bob-section {
    background-color: var(--mint-light);
}

.bio-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    padding: 50px;
}

.bio-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.bio-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--primary-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-3d);
}

.avatar-wrapper::after {
    content: '';
    position: absolute;
    width: 108%;
    height: 108%;
    border: 2px dashed var(--emerald);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    100% { transform: rotate(360deg); }
}

.avatar-mic-icon {
    font-size: 5rem;
    color: white;
    opacity: 0.9;
}

.bio-content h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.bio-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--emerald);
    margin-bottom: 24px;
}

.bio-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.bio-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--emerald);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.bio-link-btn:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateX(4px);
}

/* ==========================================================================
   SHARE YOUR STORY SECTION
   ========================================================================== */
.share-story-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.share-story-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: -150px;
    left: -150px;
}

.share-story-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.share-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.share-story-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.share-story-content .btn-primary-3d {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.share-story-content .btn-primary-3d:hover {
    box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.55);
}

.reassurance-line {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 16px;
}

/* ==========================================================================
   RESOURCES SECTION
   ========================================================================== */
.resources-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.resources-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.resources-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.resources-cta-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resources-cta-block .btn-primary-3d {
    align-self: flex-start;
    padding: 18px 36px;
    font-size: 1.05rem;
}

.fast-certification {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.fast-certification a {
    color: var(--emerald);
    font-weight: 700;
    text-decoration: underline;
}

.fast-certification a:hover {
    color: var(--primary-dark);
}

/* Visual card for partnership */
.partner-logo-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.partner-logo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--emerald);
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
}

.partner-logo-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.partner-logo-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SUBSCRIBE SECTION
   ========================================================================== */
.subscribe-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.subscribe-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: 40px 60px;
}

.subscribe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.subscribe-text h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.subscribe-text p {
    color: var(--text-muted);
    font-weight: 500;
}

.subscribe-form-inline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subscribe-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.subscribe-form-inline .btn-primary-3d {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-section {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 48px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.footer-brand h3 span {
    color: var(--mint);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 20px;
}

.partnership-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mint);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mint);
    margin-bottom: 20px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    opacity: 1;
    color: var(--mint);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* ==========================================================================
   MODAL POPUP (SHARE YOUR STORY)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 78, 59, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modal-slide 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    transform: translateY(30px);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

@keyframes modal-slide {
    to { transform: translateY(0); }
}

.modal-header {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 24px 32px;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.4rem;
}

.modal-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: 32px;
}

.modal-body .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Custom Checkbox styles for format */
.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(10, 58, 32, 0.3);
    outline: none;
    cursor: pointer;
    accent-color: var(--emerald);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-visual-wrapper {
        margin-top: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .bio-visual {
        justify-content: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resources-text {
        text-align: center;
    }
    
    .resources-cta-block .btn-primary-3d {
        align-self: center;
    }
    
    .subscribe-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Handled via Javascript mobile menu overlay */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav-active .nav-menu {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 32px 24px;
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid var(--emerald);
        gap: 24px;
        animation: slideDown 0.3s ease-out forwards;
    }
    
    @keyframes slideDown {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .mobile-nav-active .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .mobile-nav-active .nav-link {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }
    
    .mobile-nav-active .btn-header-cta {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .form-card-3d {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .subscribe-card {
        padding: 32px 24px;
    }
    
    .subscribe-fields {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group a {
        width: 100%;
        justify-content: center;
    }
    
    .questions-container {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */