/* =============================================
   ZOE TECHNO — style.css  |  2026
   ============================================= */

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #1a1a1a;
  --border:    #222222;
  --text:      #e8e8e8;
  --text-muted:#888888;
  --accent:    #f5a623;
  --accent2:   #e6931a;
  --white:     #ffffff;
  --radius:    8px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h:     68px;
  --max-w:     1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(245,166,35,0.4); color: var(--accent); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); background: rgba(245,166,35,0.08); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 24px;
  transition: all 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.link-arrow { color: var(--accent); font-weight: 500; font-size: 0.9rem; }
.link-arrow:hover { text-decoration: underline; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled { background: rgba(10,10,10,0.98); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { font-family: var(--font-head); font-size: 1.6rem; letter-spacing: 0.04em; color: var(--white); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--accent) !important; color: #000 !important; padding: 8px 18px; border-radius: var(--radius); font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent2) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,166,35,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,166,35,0.04) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; padding: 80px 24px; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-title { font-family: var(--font-head); font-size: clamp(4rem, 10vw, 8rem); line-height: 0.92; color: var(--white); margin-bottom: 28px; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: var(--text-muted); font-size: 1.2rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* PAGE HERO */
.page-hero { padding: calc(var(--nav-h) + 80px) 0 80px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(3rem, 8vw, 6rem); line-height: 1; color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }

/* STRIP */
.strip { padding: 80px 0; border-bottom: 1px solid var(--border); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.strip-item { padding: 44px 36px; background: var(--bg2); border: 1px solid var(--border); transition: border-color 0.2s, background 0.2s; }
.strip-item:hover { border-color: rgba(245,166,35,0.3); background: var(--bg3); }
.strip-icon { font-size: 2rem; display: block; margin-bottom: 18px; }
.strip-item h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 10px; }
.strip-item p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }

/* ABOUT BAND */
.about-band { padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.05; color: var(--white); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--accent); margin-bottom: 6px; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* CTA BANNER */
.cta-banner { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 32px; }

/* SERVICES PAGE */
.service-block { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-block.alt { background: var(--bg2); }
.service-label {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.service-inner h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.service-intro { color: var(--text-muted); max-width: 580px; margin-bottom: 40px; }
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.service-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s; }
.service-card:hover { border-color: rgba(245,166,35,0.3); }
.service-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.card-price { color: var(--accent) !important; font-weight: 600 !important; margin-top: 12px !important; font-size: 0.95rem !important; }
.service-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* PRICING PAGE */
.pricing-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.pricing-section.alt { background: var(--bg2); }
.pricing-header { margin-bottom: 36px; }
.pricing-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 10px; }
.pricing-header p { color: var(--text-muted); font-size: 0.95rem; }
.pricing-header h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); margin-bottom: 10px; }
.pricing-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pricing-row { display: grid; grid-template-columns: 1.4fr 2.2fr 1fr; gap: 0; padding: 16px 20px; border-bottom: 1px solid var(--border); align-items: center; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row.header { background: var(--bg3); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.pricing-row span { font-size: 0.9rem; color: var(--text-muted); }
.pricing-row span:first-child { color: var(--text); font-weight: 500; }
.pricing-row .price { color: var(--accent); font-weight: 600; font-size: 0.95rem; }
.pricing-note { margin-top: 20px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; font-size: 0.9rem; color: var(--text-muted); }
.pricing-note strong { color: var(--white); }

/* AI PLANS */
.ai-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.plan-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.plan-card.featured { border-color: var(--accent); background: rgba(245,166,35,0.04); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.plan-card h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); letter-spacing: 0.04em; }
.plan-price { font-family: var(--font-head); font-size: 2.2rem; color: var(--accent); letter-spacing: 0.02em; }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-family: var(--font-body); }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { font-size: 0.88rem; color: var(--text-muted); }

/* TEAM PAGE */
.team-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.team-section.alt { background: var(--bg2); }
.team-section-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 48px; }
.exec-card { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.exec-photo { width: 100%; aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 2px solid var(--border); }
.exec-photo img { width: 100%; height: 100%; object-fit: cover; }
.exec-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(245,166,35,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-height: 280px;
}
.exec-info h3 { font-family: var(--font-head); font-size: 2.4rem; color: var(--white); margin-bottom: 6px; }
.exec-title { color: var(--accent); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.exec-bio { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.exec-contacts { display: flex; flex-direction: column; gap: 8px; }
.exec-contact-link { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.exec-contact-link:hover { color: var(--accent); }
.team-intro { color: var(--text-muted); max-width: 600px; margin-bottom: 48px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 64px; }
.team-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.team-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; border: 2px solid var(--border); }
.team-photo-img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 100%; background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.8rem; color: var(--accent); }
.team-card h4 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.team-role { color: var(--accent); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.team-bio { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.team-join { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; text-align: center; }
.team-join h3 { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.team-join p { color: var(--text-muted); margin-bottom: 28px; }

/* CONTACT PAGE */
.contact-section { padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h3, .contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-item strong { display: block; color: var(--white); font-size: 0.82rem; margin-bottom: 4px; font-weight: 600; }
.contact-item a, .contact-item span { color: var(--text-muted); font-size: 0.92rem; }
.contact-item a:hover { color: var(--accent); }

.banking-details { margin-top: 36px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.banking-details h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.bank-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.bank-row:last-of-type { border-bottom: none; }
.bank-row span:first-child { color: var(--text-muted); }
.bank-row span:last-child { color: var(--white); font-weight: 500; }
.bank-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }
.bank-note a { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; }

/* FOOTER */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.footer-address { font-size: 0.78rem !important; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .ai-plans { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(4,1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-cards { grid-template-columns: 1fr; }
  .exec-card { grid-template-columns: 1fr; }
  .exec-photo { max-width: 220px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-row { grid-template-columns: 1fr 1.5fr 0.7fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .strip-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .ai-plans { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; gap: 4px; }
  .pricing-row.header { display: none; }
  .pricing-row .price { color: var(--accent); font-weight: 700; }
  .hero-title { font-size: clamp(3.5rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; }
}

/* ============ CAREERS PAGE ============ */
.careers-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-month {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.timeline-content h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.timeline-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

@media (max-width: 640px) {
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ NAVIGATION LOGO STYLES ============ */
.nav-logo-img {
  height: 110px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 75px;
  }
}