/* ============ LANDING PAGE - AVOKADO TEMASI ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --avo-dark: #1a2e0a;
    --avo-deep: #2d5016;
    --avo-green: #568203;
    --avo-light: #8bc34a;
    --avo-lime: #a8d45f;
    --avo-cream: #f5f7e8;
    --avo-brown: #3e2723;
    --avo-warm: #795548;
    --avo-gold: #d4a017;
    --avo-text: #2c3e1a;
    --avo-muted: #6b7c5a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--avo-text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HERO WRAPPER ============ */
.hero-wrapper {
    position: relative;
    background: linear-gradient(160deg, #0d1a04 0%, var(--avo-dark) 30%, #1c3a0d 60%, #0f2207 100%);
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
}

.blob-1 {
    width: 650px;
    height: 650px;
    background: var(--avo-green);
    top: -180px;
    right: -120px;
    animation: blobFloat 14s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--avo-light);
    bottom: -120px;
    left: -180px;
    animation: blobFloat 16s ease-in-out infinite reverse;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--avo-gold);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blobFloat 18s ease-in-out infinite 3s;
    opacity: 0.12;
}

.hero-leaf {
    position: absolute;
    font-size: 40px;
    opacity: 0.12;
    pointer-events: none;
    will-change: transform;
}

.leaf-1 { top: 15%; left: 8%; font-size: 50px; }
.leaf-2 { top: 60%; right: 5%; font-size: 60px; }
.leaf-3 { bottom: 10%; left: 20%; font-size: 35px; }

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.06); }
    66% { transform: translate(-20px, 20px) scale(0.94); }
}

/* ============ HEADER ============ */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    background: rgba(13, 26, 4, 0.92);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 195, 74, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.header-nav a:hover {
    color: #fff;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--avo-light);
    border-radius: 2px;
    transition: width 0.3s;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--avo-green);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.header-cta:hover {
    background: var(--avo-light);
    color: var(--avo-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero-section {
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-top {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 50px;
    font-size: 13px;
    color: var(--avo-lime);
    font-weight: 600;
    border: 1px solid rgba(139, 195, 74, 0.15);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--avo-light), var(--avo-lime), #c6e377, var(--avo-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 400;
}

/* ============ HERO CARDS ============ */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}

.hero-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.hero-card:hover {
    transform: translateY(-6px);
}

.hero-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
}

.hero-card:hover .hero-card-glow {
    opacity: 1;
}

.card-alici {
    background: linear-gradient(160deg, rgba(139, 195, 74, 0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(139, 195, 74, 0.12);
    backdrop-filter: blur(10px);
}

.card-alici .hero-card-glow {
    background: radial-gradient(circle, rgba(139, 195, 74, 0.15), transparent 70%);
}

.card-satici {
    background: linear-gradient(160deg, rgba(212, 160, 23, 0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(212, 160, 23, 0.12);
    backdrop-filter: blur(10px);
}

.card-satici .hero-card-glow {
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15), transparent 70%);
}

.hero-card-content {
    position: relative;
    padding: 36px 32px;
    z-index: 1;
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-emoji {
    font-size: 32px;
}

.card-alici .hero-card-icon {
    background: rgba(139, 195, 74, 0.12);
}

.card-satici .hero-card-icon {
    background: rgba(212, 160, 23, 0.12);
}

.hero-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-card-features li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-card-features li i {
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-alici .hero-card-features li i {
    background: rgba(139, 195, 74, 0.15);
    color: var(--avo-lime);
}

.card-satici .hero-card-features li i {
    background: rgba(212, 160, 23, 0.15);
    color: var(--avo-gold);
}

.hero-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.btn-alici {
    background: var(--avo-green);
    color: #fff;
}

.btn-alici:hover {
    background: var(--avo-light);
    color: var(--avo-dark);
    box-shadow: 0 8px 30px rgba(139, 195, 74, 0.3);
    transform: translateY(-1px);
}

.btn-satici {
    background: var(--avo-gold);
    color: #fff;
}

.btn-satici:hover {
    background: #e8b425;
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
    transform: translateY(-1px);
}

/* ============ TRUST BAND ============ */
.trust-band {
    background: var(--avo-cream);
    border-top: 1px solid #e4e8d0;
    border-bottom: 1px solid #e4e8d0;
    padding: 28px 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--avo-muted);
}

.trust-item i {
    font-size: 18px;
    color: var(--avo-green);
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: #c8d4a8;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 55px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: rgba(86, 130, 3, 0.08);
    color: var(--avo-green);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-badge i {
    font-size: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--avo-text);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--avo-muted);
    line-height: 1.7;
}

/* ============ FEATURES ============ */
.features-section {
    padding: 100px 0;
    background: #fff;
}

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

.feature-card {
    padding: 34px 28px;
    border-radius: 18px;
    border: 1px solid #e8ecd8;
    background: #fff;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(86, 130, 3, 0.25);
    box-shadow: 0 14px 45px rgba(45, 80, 22, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.fi-green { background: #e8f5e0; color: #2d8c3c; }
.fi-orange { background: #fff5e0; color: #d4a017; }
.fi-blue { background: #e3f2fd; color: #1976d2; }
.fi-brown { background: #efebe9; color: #5d4037; }
.fi-purple { background: #f3e8ff; color: #7b1fa2; }
.fi-teal { background: #e0f2f1; color: #00796b; }

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--avo-text);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--avo-muted);
    line-height: 1.7;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 100px 0;
    background: var(--avo-cream);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, #fff, var(--avo-cream));
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e4e8d0;
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.1);
    border-color: var(--avo-light);
}

.product-visual {
    background: linear-gradient(135deg, #e8f5e0, #f0f4e4);
    padding: 40px;
    text-align: center;
    position: relative;
}

.product-emoji {
    font-size: 72px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}

.product-card:hover .product-emoji {
    transform: scale(1.1) rotate(-5deg);
}

.product-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-popular {
    background: var(--avo-green);
    color: #fff;
}

.tag-organic {
    background: #27ae60;
    color: #fff;
}

.tag-new {
    background: var(--avo-gold);
    color: #fff;
}

.tag-out {
    background: #b71c1c;
    color: #fff;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--avo-text);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 13px;
    color: var(--avo-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-specs {
    display: flex;
    gap: 16px;
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--avo-green);
    background: rgba(86, 130, 3, 0.06);
    padding: 5px 12px;
    border-radius: 8px;
}

.product-specs span i {
    font-size: 11px;
}

/* ============ HOW TO ============ */
.howto-section {
    padding: 100px 0;
    background: #fff;
}

.howto-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.howto-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e8ecd8;
    transition: all 0.3s;
    position: relative;
}

.howto-step:hover {
    border-color: var(--avo-green);
    box-shadow: 0 10px 35px rgba(45, 80, 22, 0.08);
}

.step-number {
    font-size: 38px;
    font-weight: 900;
    color: var(--avo-green);
    opacity: 0.18;
    flex-shrink: 0;
    min-width: 50px;
    line-height: 1;
    transition: opacity 0.3s;
}

.howto-step:hover .step-number {
    opacity: 0.5;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--avo-text);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--avo-muted);
    line-height: 1.6;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(86, 130, 3, 0.08);
    color: var(--avo-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.howto-step:hover .step-icon {
    background: var(--avo-green);
    color: #fff;
}

.howto-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, #e4e8d0, var(--avo-light), #e4e8d0);
    margin: 0 auto;
    opacity: 0.4;
}

/* ============ STATS ============ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--avo-dark), #1c3a0d, #0f2207);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '\1F951';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

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

.stat-box {
    text-align: center;
    padding: 28px 20px;
}

.stat-num {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    display: inline;
}

.stat-plus {
    font-size: 28px;
    font-weight: 700;
    color: var(--avo-lime);
}

.stat-lbl {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
    font-weight: 500;
}

/* ============ CTA ============ */
.cta-section {
    padding: 80px 0;
    background: var(--avo-cream);
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 50px 56px;
    background: linear-gradient(135deg, var(--avo-deep), var(--avo-green));
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 420px;
    height: 420px;
    background: rgba(168, 212, 95, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-icon {
    font-size: 64px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 450px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-primary {
    background: #fff;
    color: var(--avo-deep);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.22);
}

/* ============ FOOTER ============ */
.landing-footer {
    background: #0d1a04;
    padding: 60px 0 0;
    color: rgba(255,255,255,0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(139, 195, 74, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--avo-lime);
}

.footer-contact i {
    width: 16px;
    font-size: 13px;
    color: var(--avo-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ============ BİLGİ SAYFALARI ============ */
.bilgi-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--avo-dark) 0%, var(--avo-deep) 100%);
}
.bilgi-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.bilgi-breadcrumb a {
    color: var(--avo-lime);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.bilgi-breadcrumb a:hover { opacity: 1; }
.bilgi-breadcrumb i.fa-chevron-right { font-size: 10px; color: rgba(255,255,255,0.3); }
.bilgi-breadcrumb span { color: #fff; }
.bilgi-title-area {
    display: flex;
    align-items: center;
    gap: 20px;
}
.bilgi-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(139, 195, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--avo-lime);
}
.bilgi-title-area h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.bilgi-content {
    padding: 60px 0 80px;
    background: var(--avo-cream);
    min-height: 50vh;
}
.bilgi-body {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    line-height: 1.8;
    color: var(--avo-text);
}
.bilgi-body h2 { font-size: 26px; color: var(--avo-deep); margin: 0 0 16px; }
.bilgi-body h3 { font-size: 20px; color: var(--avo-green); margin: 28px 0 12px; }
.bilgi-body h4 { font-size: 17px; color: var(--avo-brown); margin: 20px 0 8px; }
.bilgi-body p { margin: 0 0 16px; font-size: 15px; }
.bilgi-body ul { padding-left: 24px; margin: 0 0 16px; }
.bilgi-body li { margin-bottom: 8px; font-size: 15px; }
.bilgi-body strong { color: var(--avo-deep); }

/* FAQ Accordion */
.faq-accordion { margin-top: 32px; }
.faq-item {
    border: 1px solid rgba(86, 130, 3, 0.12);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(86, 130, 3, 0.1); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--avo-text);
    transition: all 0.3s;
    gap: 16px;
}
.faq-question span { display: flex; align-items: center; gap: 12px; }
.faq-question i.fa-question-circle { color: var(--avo-green); font-size: 18px; }
.faq-question:hover { background: rgba(139, 195, 74, 0.05); }
.faq-arrow {
    transition: transform 0.3s;
    color: var(--avo-muted);
    font-size: 14px;
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--avo-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ============ NAV DIVIDER (Admin Menu) ============ */
.nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 12px 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-title { font-size: 42px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { flex-direction: column; text-align: center; padding: 40px 32px; }
    .cta-content p { max-width: 100%; }
    .cta-icon { margin-bottom: -10px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 26, 4, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(139, 195, 74, 0.1);
    }
    .header-nav.open { display: flex; }
    .mobile-menu-btn { display: block; }
    .header-cta { display: none; }
    
    .hero-section { padding: 130px 0 60px; }
    .hero-title { font-size: 34px; }
    .hero-desc { font-size: 15px; }
    .hero-cards { grid-template-columns: 1fr; gap: 20px; }
    .hero-card-content { padding: 28px 24px; }
    .hero-leaf { display: none; }
    
    .trust-items { flex-wrap: wrap; gap: 20px; }
    .trust-divider { display: none; }
    
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 28px; }
    .features-section, .howto-section, .products-section { padding: 60px 0; }
    
    .howto-step { padding: 20px; gap: 16px; }
    .step-number { font-size: 28px; min-width: 36px; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-num { font-size: 34px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .bilgi-hero { padding: 100px 0 30px; }
    .bilgi-title-area h1 { font-size: 24px; }
    .bilgi-body { padding: 28px 20px; border-radius: 16px; }
    .faq-question { padding: 14px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .container { padding: 0 16px; }
    .logo-text-group { display: none; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-btn { justify-content: center; }
    .product-visual { padding: 30px; }
    .product-emoji { font-size: 56px; }
}
