/* ========================================
   BeeKeeperVoice — Main Stylesheet
   Warm, friendly, professional design
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --honey: #F5A623;
    --honey-dark: #C67F17;
    --honey-deeper: #A06B10;
    --honey-light: #FFF8ED;
    --honey-glow: rgba(245, 166, 35, 0.12);
    --warm-cream: #FFFDF7;
    --warm-beige: #F9F3E8;
    --dark: #2C1810;
    --dark-soft: #3D2B1F;
    --dark-warm: #4A3728;
    --text: #3D2B1F;
    --text-soft: #5C4A3D;
    --text-muted: #8B7B6E;
    --bg: #FFFCF5;
    --white: #FFFFFF;
    --green: #3D9B5E;
    --green-soft: #4AAD6A;
    --green-light: #EDF7F0;
    --red: #C0504D;
    --red-light: #F9ECEB;
    --warning: #D4911E;
    --warning-light: #FEF5E7;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.06);
    --shadow: 0 8px 32px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.10);
    --shadow-warm: 0 8px 32px rgba(245, 166, 35, 0.12);
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Image Placeholders (replace with real photos) --- */
.img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: relative;
    overflow: hidden;
}

/* Real beekeeper photos — free from Pexels.com (no attribution required) */
.beekeeper-1 {
    background: url('images/beekeeper-colombia.jpg') center/cover no-repeat;
}

.beekeeper-2 {
    background: url('images/hero-beekeeper.jpg') center/cover no-repeat;
}

.beekeeper-3 {
    background: url('images/family-beekeeping.jpg') center/cover no-repeat;
}

.feature-img-1 {
    background: url('images/beekeeper-checking-bees.jpg') center/cover no-repeat;
}

.feature-img-2 {
    background: url('images/beekeeper-holding-frame.jpg') center/cover no-repeat;
}

.gallery-1 {
    background: url('images/beehives-lavender.jpg') center/cover no-repeat;
}

.gallery-2 {
    background: url('images/beekeeper-colombia.jpg') center/cover no-repeat;
}

.gallery-3 {
    background: url('images/bees-entrance.jpg') center/cover no-repeat;
}

.gallery-4 {
    background: url('images/family-beekeeping.jpg') center 30%/cover no-repeat;
}

.segment-img-1 {
    background: url('images/hero-beekeeper.jpg') center/cover no-repeat;
}

.segment-img-2 {
    background: url('images/beekeeper-holding-frame.jpg') center/cover no-repeat;
}

.segment-img-3 {
    background: url('images/beekeepers-protective.jpg') center/cover no-repeat;
}

.apiary-scene {
    background: url('images/beekeepers-protective.jpg') center/cover no-repeat;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--honey-dark);
    background: var(--honey-light);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight {
    color: var(--honey-dark);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, #F5A623 0%, #E89A18 100%);
    color: var(--dark);
    padding: 14px 28px;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E89A18 0%, #D4880E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(44, 24, 16, 0.92);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(44, 24, 16, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.logo-mark {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/beekeeper-working.jpg') center/cover no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(44, 24, 16, 0.75) 0%, rgba(44, 24, 16, 0.6) 40%, rgba(44, 24, 16, 0.7) 100%);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    /* Honeycomb pattern */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hex" x="0" y="0" width="28" height="49" patternUnits="userSpaceOnUse" patternTransform="scale(2.5)"><path d="M14 0 L28 8.5 L28 25.5 L14 34 L0 25.5 L0 8.5 Z" fill="none" stroke="rgba(245,166,35,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hex)"/></svg>');
    background-size: 140px;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 780px;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: var(--honey);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.hero-headline .highlight {
    color: var(--honey);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
    opacity: 0.4;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Welcome Strip --- */
.welcome-strip {
    background: var(--warm-cream);
    padding: 40px 0;
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: center;
}

.welcome-images {
    display: flex;
    gap: -8px;
}

.welcome-img-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-soft);
    margin-left: -10px;
    animation: fadeInUp 0.5s ease var(--delay) both;
}

.welcome-img-circle:first-child {
    margin-left: 0;
}

.welcome-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    max-width: 460px;
}

/* --- Problem / Solution Section --- */
.problem-section {
    padding: 110px 0;
    text-align: center;
    background: var(--bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 52px;
    text-align: left;
}

.problem-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
}

.problem-card.struggle {
    background: var(--red-light);
    border: 1px solid rgba(192, 80, 77, 0.1);
}

.problem-card.solution {
    background: var(--green-light);
    border: 1px solid rgba(61, 155, 94, 0.1);
}

.problem-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.struggle-icon { background: rgba(192, 80, 77, 0.1); }
.solution-icon { background: rgba(61, 155, 94, 0.1); }

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.problem-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.95rem;
}

.problem-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.4;
}

.problem-card.solution p {
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.solution-demo {
    background: rgba(61, 155, 94, 0.06);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.voice-prompt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: italic;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.voice-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.voice-response {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --- Photo Banner --- */
.photo-banner {
    overflow: hidden;
}

.photo-banner-image {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.photo-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7) 0%, rgba(44, 24, 16, 0.4) 50%, rgba(44, 24, 16, 0.6) 100%);
}

.photo-banner-text {
    position: relative;
    text-align: center;
    padding: 60px 0;
}

.photo-banner-text blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--white);
    font-style: italic;
    font-weight: 600;
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.5;
}

.photo-banner-text cite {
    color: var(--honey);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
}

/* --- Features Section --- */
.features-section {
    padding: 110px 0;
    background: var(--white);
    text-align: center;
}

.feature-pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 80px;
    text-align: left;
}

.feature-pillar.reverse {
    direction: rtl;
}

.feature-pillar.reverse > * {
    direction: ltr;
}

.feature-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--honey-light);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.feature-pillar-title {
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.feature-pillar-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-list-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--honey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--honey-dark);
}

.feature-list li strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.feature-list li span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Feature Image Cards --- */
.feature-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.feature-image-card > .img-placeholder {
    border-radius: var(--radius-lg);
    height: 380px;
    box-shadow: var(--shadow-lg);
}

/* App screenshot floating on image */
.app-screenshot-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 180px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 3px solid var(--white);
    background: var(--white);
}

.app-screenshot-float img {
    width: 100%;
    display: block;
    border-radius: 17px;
}

/* Duo screenshots side by side */
.app-screenshots-duo {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
}

.app-screenshot-card {
    flex: 1;
    max-width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 3px solid var(--white);
}

.app-screenshot-card img {
    width: 100%;
    display: block;
}

/* Real screenshot cards in demo section */
.screenshot-real {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
    background: var(--white);
    border: 2px solid rgba(245, 166, 35, 0.08);
}

.screenshot-real img {
    width: 100%;
    display: block;
}

/* Keep old phone mockup styles for backwards compat */
.phone-mockup-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 220px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 3px solid var(--white);
}

.phone-screen {
    background: var(--white);
    overflow: hidden;
}

.mock-header {
    background: linear-gradient(135deg, var(--honey) 0%, #E89A18 100%);
    color: var(--dark);
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.82rem;
}

.mock-checklist {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
}

.mock-item.done {
    background: var(--green-light);
    color: var(--green);
}

.mock-item.active {
    background: var(--honey-light);
    color: var(--honey-dark);
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.listening-indicator {
    display: flex;
    gap: 2px;
    align-items: center;
}

.listening-indicator span {
    width: 3px;
    height: 10px;
    background: var(--honey-dark);
    border-radius: 2px;
    animation: listening 0.8s infinite ease-in-out;
}

.listening-indicator span:nth-child(2) { animation-delay: 0.1s; }
.listening-indicator span:nth-child(3) { animation-delay: 0.2s; }
.listening-indicator span:nth-child(4) { animation-delay: 0.3s; }

@keyframes listening {
    0%, 100% { height: 5px; }
    50% { height: 14px; }
}

.mock-voice-bar {
    background: var(--dark);
    color: var(--honey);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.voice-wave {
    display: flex;
    gap: 2px;
    align-items: center;
}

.voice-wave span {
    width: 2.5px;
    height: 12px;
    background: var(--honey);
    border-radius: 2px;
    animation: wave 1s infinite ease-in-out;
}

.voice-wave span:nth-child(1) { animation-delay: 0s; height: 7px; }
.voice-wave span:nth-child(2) { animation-delay: 0.15s; }
.voice-wave span:nth-child(3) { animation-delay: 0.3s; height: 16px; }
.voice-wave span:nth-child(4) { animation-delay: 0.45s; }
.voice-wave span:nth-child(5) { animation-delay: 0.6s; height: 9px; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.6); }
    50% { transform: scaleY(1.2); }
}

/* AI Chat floating on image */
.ai-chat-float {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 3px solid var(--white);
}

.chat-message {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.chat-bubble {
    background: #f7f4ef;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.8rem;
    line-height: 1.5;
    flex: 1;
}

.user-msg .chat-bubble {
    background: var(--honey-light);
    font-style: italic;
    color: var(--dark);
}

.chat-hive-list {
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-hive-item {
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

.chat-hive-item.alert {
    background: var(--red-light);
    color: var(--red);
}

.chat-hive-item.warning {
    background: var(--warning-light);
    color: var(--warning);
}

.chat-bubble em {
    display: block;
    margin-top: 6px;
    font-size: 0.72rem;
    color: var(--green);
}

/* --- Dashboard Mockup --- */
.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
}

.dash-date {
    color: var(--honey);
    font-size: 0.78rem;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #eee;
}

.dash-stat {
    background: var(--white);
    padding: 18px;
    text-align: center;
}

.dash-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.dash-stat-value.good { color: var(--green); }
.dash-stat-value.warning-val { color: var(--warning); }

.dash-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.dash-chart {
    padding: 20px;
    border-bottom: 1px solid #f0ebe4;
}

.dash-chart-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.chart-bars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--honey), var(--honey-light));
    border-radius: 6px 6px 0 0;
    height: var(--height);
    position: relative;
    transition: height var(--transition-slow);
}

.chart-bar span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.dash-queen {
    padding: 16px 20px;
}

.dash-queen-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.queen-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.queen-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.queen-marker.blue { background: #5B98C4; }
.queen-marker.white { background: #ECF0F1; border: 1px solid #BDC3C7; }

/* --- Apiary Photo Gallery --- */
.apiary-gallery {
    padding: 0;
    background: var(--warm-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 6px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item.large {
    grid-row: 1 / 3;
}

.gallery-item .img-placeholder {
    transition: transform var(--transition-slow);
}

.gallery-item:hover .img-placeholder {
    transform: scale(1.05);
}

.gallery-caption {
    text-align: center;
    padding: 32px 28px;
}

.gallery-caption p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-soft);
    font-style: italic;
    max-width: 560px;
    margin: 0 auto;
}

/* --- Segments Section --- */
.segments-section {
    padding: 110px 0;
    text-align: center;
    background: var(--bg);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.segment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0 0 36px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

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

.segment-card.featured {
    border-color: var(--honey);
    box-shadow: var(--shadow), 0 0 0 4px var(--honey-glow);
}

.segment-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--honey);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.segment-img-wrap {
    height: 160px;
    overflow: hidden;
    margin-bottom: 24px;
}

.segment-img-wrap .img-placeholder {
    transition: transform var(--transition-slow);
}

.segment-card:hover .segment-img-wrap .img-placeholder {
    transform: scale(1.08);
}

.segment-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    padding: 0 28px;
}

.segment-hives {
    font-size: 0.85rem;
    color: var(--honey-dark);
    font-weight: 600;
    margin-bottom: 14px;
    padding: 0 28px;
}

.segment-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 28px;
}

.segment-benefits {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 28px;
}

.segment-benefits li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.segment-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--honey);
    opacity: 0.5;
}

/* --- Emotional Benefit Banner --- */
.benefit-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.benefit-bg {
    position: absolute;
    inset: 0;
    background: url('images/beehives-lavender.jpg') center/cover no-repeat;
}

.benefit-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(44, 24, 16, 0.82) 0%, rgba(44, 24, 16, 0.7) 50%, rgba(44, 24, 16, 0.8) 100%);
}

.benefit-content {
    position: relative;
}

.benefit-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.benefit-content .highlight {
    color: var(--honey);
}

.benefit-content p {
    color: rgba(255,255,255,0.6);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Demo Section --- */
.demo-section {
    padding: 110px 0;
    background: var(--white);
    text-align: center;
}


.demo-video-wrapper {
    margin: 48px auto 64px;
    display: flex;
    justify-content: center;
}

.demo-video {
    display: block;
    height: 500px;
    width: auto;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--dark);
}

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

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

.screenshot-mock {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    margin-bottom: 18px;
    min-height: 200px;
    border: 1px solid rgba(245, 166, 35, 0.08);
}

.mock-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.screenshot-card h4 {
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 1rem;
}

.screenshot-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Calendar mock */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 14px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
}

.cal-day.active {
    background: var(--honey-light);
    color: var(--honey-dark);
    font-weight: 700;
}

.cal-day.alert-day {
    background: var(--red-light);
    color: var(--red);
    font-weight: 700;
}

.cal-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.cal-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.active-dot { background: var(--honey); }
.alert-dot { background: var(--red); }

/* Health bars mock */
.health-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.health-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.health-bar-row span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    width: 70px;
    text-align: right;
}

.health-bar {
    flex: 1;
    height: 10px;
    background: #f5f0e8;
    border-radius: 6px;
    overflow: hidden;
}

.health-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--honey) 0%, #E8C060 100%);
    border-radius: 6px;
    transition: width 1s ease;
}

.health-fill.warning-fill { background: linear-gradient(90deg, var(--warning) 0%, #E8A830 100%); }
.health-fill.good-fill { background: linear-gradient(90deg, var(--green) 0%, #5BB87A 100%); }

/* Appraisal mock */
.appraisal-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
}

.score-circle {
    width: 80px;
    height: 80px;
    position: relative;
}

.score-circle svg {
    width: 100%;
    height: 100%;
}

.score-circle span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
}

.appraisal-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.appraisal-tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.good-tag {
    background: var(--green-light);
    color: var(--green);
}

.warn-tag {
    background: var(--warning-light);
    color: var(--warning);
}

/* --- Lead Capture Section --- */
.lead-capture {
    padding: 80px 0;
    background: var(--warm-beige);
}

.lead-capture-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.lead-capture-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.lead-capture-card > p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.lead-form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto 14px;
}

.lead-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(44, 24, 16, 0.1);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
}

.lead-input:focus {
    border-color: var(--honey);
}

.lead-input::placeholder {
    color: var(--text-muted);
}

.lead-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.lead-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 520px) {
    .lead-form {
        flex-direction: column;
    }

    .lead-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 110px 0;
    background: var(--warm-beige);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    position: relative;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.pricing-card.featured-plan {
    border-color: var(--honey);
    box-shadow: var(--shadow), 0 0 0 4px var(--honey-glow);
    padding-top: 48px;
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--honey) 0%, #E89A18 100%);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 28px;
    text-align: center;
}

.pricing-card-header h3 {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    line-height: 1;
}

.price-dollar {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 6px;
}

.price-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.price-cents {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 6px;
}

.price-period {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 18px;
    margin-left: 4px;
}

.price-monthly-equiv {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 6px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.4;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--green);
}

.featured-plan .pricing-features li svg {
    color: var(--honey-dark);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    padding: 14px 28px;
    border: 2px solid var(--dark);
    border-radius: 100px;
}

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

.pricing-footnote {
    margin-top: 36px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 110px 0;
    background: var(--bg);
    text-align: center;
}

.faq-list {
    max-width: 700px;
    margin: 48px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(44, 24, 16, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--honey-dark);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--honey-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 22px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- NFC Section --- */
.nfc-section {
    padding: 80px 0;
    background: var(--warm-beige);
}

.nfc-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 760px;
    margin: 0 auto;
}

.nfc-text h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 14px;
}

.nfc-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.nfc-visual {
    flex-shrink: 0;
}

.nfc-phone {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nfc-scan-effect {
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 2px solid var(--honey);
    animation: nfc-pulse 2s infinite;
}

@keyframes nfc-pulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.3); }
}

/* --- Final CTA --- */
.final-cta {
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background: url('images/beekeeper-checking-bees.jpg') center/cover no-repeat;
}

.final-cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.75) 50%, rgba(44, 24, 16, 0.85) 100%);
}

.final-cta > .container {
    position: relative;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.final-cta > .container > p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.android-btn {
    opacity: 0.65;
}

.pricing-note {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-links h4 {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.footer-about {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--honey);
}

.footer-bottom {
    padding-top: 28px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .feature-pillar {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-pillar.reverse {
        direction: ltr;
    }

    .feature-pillar-visual {
        order: -1;
    }

    .feature-pillar.reverse .feature-pillar-visual {
        order: -1;
    }

    .phone-mockup-float {
        right: 10px;
        bottom: -20px;
    }

    .ai-chat-float {
        left: 10px;
        bottom: -20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

    .gallery-item.large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 24, 16, 0.97);
        backdrop-filter: blur(12px);
        padding: 24px 28px;
        gap: 16px;
    }

    .navbar.menu-open .btn-nav {
        display: inline-flex;
        position: absolute;
        top: calc(100% + 150px);
        left: 28px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 12px;
    }

    .welcome-content {
        flex-direction: column;
        text-align: center;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .segments-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .demo-screenshots {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 180px);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .nfc-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup-float, .ai-chat-float, .app-screenshot-float {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 200px;
        margin: -20px auto 0;
    }

    .app-screenshots-duo {
        flex-direction: row;
        gap: 12px;
    }

    .app-screenshot-card {
        max-width: 160px;
    }

    .photo-banner-image {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .problem-card {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
