/* --- CSS Variables & Reset --- */
:root {
    /* FRUITY THEME COLORS */
    --deep-navy: #0f172a;   
    --vibrant-orange: #ff7e1d; 
    --accent-yellow: #facc15; 
    
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    
    --radius: 16px;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Nunito', sans-serif; }

html { scroll-behavior: smooth; }
body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; transition: 0.3s; }

/* --- Navbar --- */
.navbar { position: absolute; top: 0; width: 100%; z-index: 1000; padding-top: 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 60px; }

/* LOGO STYLES */
.logo { 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: var(--white); 
    display: flex;
    align-items: center;
    gap: 6px; 
}
.logo .highlight { color: var(--vibrant-orange); }

/* LOGO ICON SVG */
.logo-icon {
    height: 54px; 
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transform: translateY(-3px);
}

.nav-links a { color: rgba(255,255,255,0.8); margin-left: 30px; font-weight: 700; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); opacity: 1; }

.btn-nav { border: 2px solid rgba(255,255,255,0.3); padding: 8px 24px; border-radius: 50px; color: var(--white) !important; }
.btn-nav:hover { background: var(--white); color: var(--deep-navy) !important; }

/* Utility to push the Sign Up/Sign In group to the right */
.nav-login {
    margin-left: 50px !important; 
    opacity: 1 !important;
}

/* --- HERO SECTION --- */
.hero { background-color: var(--deep-navy); padding: 160px 0 120px; position: relative; color: var(--white); }
.hero-split { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-text { flex: 1; z-index: 2; }
.fresh-badge { background: rgba(255,255,255,0.1); color: var(--accent-yellow); display: inline-block; padding: 5px 15px; border-radius: 50px; font-weight: 700; margin-bottom: 20px; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.1); }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 900; }
.text-orange { color: var(--vibrant-orange); }
.hero p { font-size: 1.2rem; color: #cbd5e1; margin-bottom: 35px; max-width: 550px; }

/* Hero Buttons */
.hero-btns { display: flex; align-items: center; gap: 25px; margin-bottom: 15px; }

.btn-primary { 
    background-color: var(--accent-yellow); 
    color: var(--deep-navy); 
    padding: 16px 36px; 
    border-radius: 12px; 
    font-weight: 800; 
    font-size: 1.1rem; 
    box-shadow: 0 4px 0 #ca8a04; 
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { 
    background-color: #fde047; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 0 #ca8a04; 
}

.price-tag { display: flex; flex-direction: column; line-height: 1.1; }
.price-tag span { font-size: 0.8rem; color: #94a3b8; }
.price-tag strong { font-size: 1.6rem; color: var(--white); }
.small-print { font-size: 0.85rem !important; opacity: 0.7; margin-top: 10px; }

/* --- HERO IMAGE (Sunburst) --- */
.hero-image { flex: 1; position: relative; text-align: center; z-index: 2; display: flex; align-items: center; justify-content: center; min-height: 500px; }
.hero-image::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 420px; height: 420px; background-color: var(--accent-yellow); border-radius: 50%; z-index: -1;
    box-shadow: 0 0 0 15px rgba(250, 204, 21, 0.2), 0 20px 50px rgba(0,0,0,0.3);
}
.mascot-img { width: 100%; max-width: 480px; position: relative; z-index: 2; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 15px 10px rgba(161, 98, 7, 0.3)); }

/* --- FEATURES SECTION --- */
.features { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: var(--deep-navy); font-weight: 800; }
.section-header p { font-size: 1.15rem; color: var(--text-light); }
.section-header.text-white h2 { color: white; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 100px; }

.feature-card {
    background: var(--white); padding: 35px; border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s; position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

/* Icons */
.icon-wrapper { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 20px; font-size: 24px; }
.icon-wrapper svg { width: 28px; height: 28px; stroke-width: 2.5px; }
.orange { background: linear-gradient(135deg, #ff7e1d, #f97316); box-shadow: 0 8px 20px -5px rgba(255, 126, 29, 0.4); }
.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.4); }
.green { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 8px 20px -5px rgba(16, 185, 129, 0.4); }
.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 8px 20px -5px rgba(139, 92, 246, 0.4); }
.red { background: linear-gradient(135deg, #f43f5e, #e11d48); box-shadow: 0 8px 20px -5px rgba(244, 63, 94, 0.4); }
.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); box-shadow: 0 8px 20px -5px rgba(20, 184, 166, 0.4); }
.feature-card h4 { font-size: 1.35rem; margin-bottom: 12px; color: var(--deep-navy); font-weight: 800; }
.feature-card p { color: var(--text-light); line-height: 1.6; font-size: 0.95rem; }

/* --- SPECS SECTION (Dark Box) --- */
.specs-wrapper { text-align: center; }
.specs-header { margin-bottom: 40px; }
.specs-header h3 { font-size: 2rem; color: var(--deep-navy); margin-bottom: 10px; font-weight: 800; }
.specs-header p { color: var(--text-light); font-size: 1.1rem; }

.specs-card {
    background: var(--deep-navy);
    border-radius: var(--radius);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    color: white;
    position: relative;
    overflow: hidden;
}

.specs-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 126, 29, 0.05) 0%, rgba(15, 23, 42, 0) 60%);
    pointer-events: none;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    text-align: left;
    margin-bottom: 40px;
}

.spec-item {
    display: flex; align-items: center; gap: 15px;
    font-size: 1.1rem; font-weight: 600; color: #e2e8f0;
}

.spec-item i {
    color: var(--accent-yellow); 
    width: 28px;
    height: 28px;
    background: var(--vibrant-orange); 
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(255, 126, 29, 0.3);
}

.specs-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
}
.specs-footer span { color: #94a3b8; font-size: 0.95rem; }
.specs-footer strong { color: white; }

.specs-disclaimer {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* --- ABOUT & SUPPORT PAGE STYLES --- */
.hero-small {
    padding: 140px 0 80px;
    text-align: center;
}

.mission-section {
    padding: 80px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    margin-top: 30px;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 15px;
}

.mission-list li i {
    color: var(--vibrant-orange);
    width: 24px;
    height: 24px;
}

.mission-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    border-radius: var(--radius);
}

/* Honesty/Help Section */
.honesty-section {
    background-color: var(--deep-navy);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.honesty-box {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: var(--radius);
}

.honesty-icon {
    color: var(--vibrant-orange);
    margin-bottom: 20px;
}
.honesty-icon svg { width: 40px; height: 40px; }

.honesty-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.honesty-box .lead-text {
    font-size: 1.25rem;
    color: var(--accent-yellow);
    font-weight: 700;
    margin-bottom: 35px;
}

/* --- CONTACT GRID STYLES --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--vibrant-orange);
    transform: translateY(-5px);
}

.contact-icon-small {
    color: var(--vibrant-orange);
    margin-bottom: 15px;
}
.contact-icon-small svg { width: 24px; height: 24px; }

.contact-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.email-link {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
}

.email-link:hover {
    color: var(--vibrant-orange);
    text-decoration: underline;
}

.response-note {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    color: #94a3b8;
    background: rgba(255,255,255,0.05);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
}

/* --- TEAM SECTION --- */
.team-section {
    padding: 80px 0 120px;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--deep-navy);
    border-radius: var(--radius);
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    text-align: center;
    overflow: hidden;
    position: relative;
    color: white;
    border: 1px solid rgba(255,255,255,0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border-color: rgba(255, 126, 29, 0.4);
}

.mascot-wrapper {
    padding: 50px 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-head {
    width: 200px;
    height: 200px;
    object-fit: contain; 
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); 
    transition: transform 0.3s ease;
}

.hiring-circle {
    width: 200px;
    height: 200px;
    border: 3px dashed rgba(255,255,255,0.15); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    margin: 0 auto;
}

.hiring-circle svg {
    width: 64px;
    height: 64px;
    color: rgba(255,255,255,0.3);
    transition: 0.3s;
}

.team-card:hover .hiring-circle {
    border-color: var(--vibrant-orange);
    transform: scale(1.05);
}

.team-card:hover .hiring-circle svg {
    color: var(--vibrant-orange) !important;
}

.team-card:hover .team-head {
    transform: scale(1.05);
}

.team-info {
    padding: 0 30px 40px;
}

.team-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 800;
}

.team-role {
    display: inline-block;
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    background: rgba(250, 204, 21, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.team-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- PRIVACY SECTION --- */
.privacy-section { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 100px 0; color: white; }
.privacy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }
.privacy-card { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); text-align: center; transition: 0.3s; }
.privacy-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.p-icon { color: var(--accent-yellow); width: 32px; height: 32px; margin-bottom: 15px; }
.privacy-card h4 { margin-bottom: 5px; font-size: 1.2rem; }
.privacy-card span { color: #94a3b8; font-size: 0.95rem; }

/* --- FOOTER --- */
footer { 
    background: var(--deep-navy); 
    color: white; 
    padding: 60px 0; 
    border-top: 5px solid var(--vibrant-orange); 
    position: relative; 
}

/* FOOTER MASCOT */
.footer-mascot {
    position: absolute;
    top: 0;
    right: 10%; 
    transform: translateY(-94%); 
    width: 240px; 
    height: auto;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
}

.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 30px; }
.footer-links a { color: #94a3b8; margin: 0 15px; font-weight: 600; font-size: 0.95rem; }
.footer-links a:hover { color: var(--vibrant-orange); }
.copyright p { color: #64748b; font-size: 0.9rem; }

/* Footer Contact Block */
.footer-contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.footer-email:hover {
    color: var(--vibrant-orange);
    transform: translateX(5px);
}

.footer-email svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* --- UTILITIES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.menu-toggle { display: none; cursor: pointer; }

/* --- LEGAL / TERMS PAGES --- */
.legal-section { padding: 60px 0 100px; background: var(--white); }
.summary-box {
    background: #fff7ed; border: 2px solid var(--vibrant-orange); border-radius: var(--radius);
    padding: 40px; margin-bottom: 60px; position: relative;
}
.summary-icon {
    position: absolute; top: -25px; left: 40px; background: var(--vibrant-orange); color: white;
    width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 126, 29, 0.3);
}
.summary-box h3 { color: var(--deep-navy); font-size: 1.4rem; margin-bottom: 20px; margin-top: 10px; }
.summary-box ul { list-style: none; }
.summary-box ul li { margin-bottom: 12px; color: var(--text-dark); font-size: 1.05rem; line-height: 1.6; }
.summary-box ul li strong { color: var(--vibrant-orange); }

.legal-text { max-width: 800px; margin: 0 auto; }
.legal-text h2 { font-size: 1.8rem; color: var(--deep-navy); margin-top: 50px; margin-bottom: 20px; border-bottom: 1px solid #e2e8f0; padding-bottom: 15px; }
.legal-text p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.legal-list { margin-left: 20px; margin-bottom: 25px; }
.legal-list li { margin-bottom: 10px; color: var(--text-light); }
.legal-list li strong { color: var(--deep-navy); }
.last-updated { margin-top: 60px; font-style: italic; opacity: 0.6; font-size: 0.9rem !important; }

/* --- SUPPORT PAGE SPECIFIC STYLES --- */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 20px 0; }
.faq-question { 
    display: flex; justify-content: space-between; align-items: center; 
    cursor: pointer; font-weight: 700; font-size: 1.1rem; color: var(--deep-navy);
}
.faq-question:hover { color: var(--vibrant-orange); }
.faq-answer { 
    max-height: 0; overflow: hidden; transition: 0.3s ease; 
    color: var(--text-light); line-height: 1.6; margin-top: 0;
}
.faq-item.active .faq-answer { max-height: 200px; margin-top: 15px; }
.faq-icon { transition: 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--vibrant-orange); }

.status-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white; padding: 40px; border-radius: var(--radius);
    text-align: center; margin-bottom: 80px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}

/* --- APPLY PAGE STYLES --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 80px; }
.step-card { text-align: left; position: relative; padding-left: 20px; }
.step-number { font-size: 4rem; font-weight: 900; color: rgba(255, 126, 29, 0.1); position: absolute; top: -20px; left: 0; z-index: -1; line-height: 1; }
.step-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--deep-navy); }
.step-card p { color: var(--text-light); }

.email-template-box {
    background: #fff; border: 2px dashed #cbd5e1; border-radius: var(--radius);
    padding: 40px; position: relative; margin: 40px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.template-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
.template-label { font-weight: 700; color: var(--text-light); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.template-content {
    font-family: 'Courier New', Courier, monospace; background: #f8fafc; padding: 20px;
    border-radius: 8px; color: var(--deep-navy); line-height: 1.6; white-space: pre-wrap;
    font-size: 0.95rem; border: 1px solid #e2e8f0;
}

/* Why Manual Section */
.why-manual { background: var(--deep-navy); color: white; padding: 80px 0; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; text-align: left; }
.why-item i { color: var(--accent-yellow); margin-bottom: 15px; }
.why-item h4 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.why-item p { color: #94a3b8; line-height: 1.6; }

/* --- RESPONSIVE / MOBILE POLISH --- */
@media (max-width: 992px) {
    .hero-split { flex-direction: column; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-image { min-height: 400px; margin-top: 40px; }
    .hero-image::before { width: 350px; height: 350px; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-mascot { right: 5%; width: 180px; }
}

@media (max-width: 768px) {
    /* Navbar Tweak */
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--deep-navy); padding: 20px; text-align: center; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); max-height: 80vh; overflow-y: auto; }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 10px 0; display: block; }
    .menu-toggle { display: block; cursor: pointer; }
    
    /* Login Button Mobile Tweak */
    .nav-login { margin-left: 0 !important; }
    
    /* Layout Adjustments */
    .hero h1 { font-size: 2.8rem; }
    .hero-image::before { width: 280px; height: 280px; }
    .mascot-img { max-width: 320px; }
    .specs-grid { grid-template-columns: 1fr; }
    .specs-footer { flex-direction: column; gap: 20px; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-mascot { right: 50%; transform: translate(50%, -94%); width: 120px; }
    .honesty-box { padding: 30px 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .status-banner { flex-direction: column; text-align: center; }
    
    /* Reduce Padding on Mobile */
    .features, .team-section, .why-manual { padding: 60px 0; }
    .hero { padding-top: 120px; }
    
    /* Overflow Protection */
    .template-content { overflow-x: auto; font-size: 0.85rem; }
    .email-template-box { padding: 20px; }
}