/* ===== BIZ AUTOMATE PRO - MAIN STYLESHEET ===== */
/* Aesthetic: Bold Tech-Dark with Electric Accents */

:root {
  --bg: #080c14;
  --bg2: #0d1422;
  --bg3: #111827;
  --card: #131c2e;
  --card-border: rgba(99,179,237,0.15);
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --accent3: #10b981;
  --text: #e2e8f0;
  --text-muted: #8892a4;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 32px rgba(0,212,255,0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::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;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-decoration: none;
}

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.35); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(0,212,255,0.4);
  color: var(--accent);
}
.btn-outline:hover { background: rgba(0,212,255,0.08); border-color: var(--accent); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #20b855; transform: translateY(-2px); color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99,179,237,0.1);
  padding: 14px 0;
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(8,12,20,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
}
/* ===== LOGO ===== */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px; font-weight: 500;
  font-family: var(--font-head);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-head);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); }

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Hero Visual */
.hero-visual {
  position: absolute; right: 80px; top: 50%;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  display: none;
}
@media(min-width:900px){ .hero-visual { display: block; } }

.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ring1 { width: 180px; height: 180px; animation: spin 8s linear infinite; }
.ring2 { width: 260px; height: 260px; animation: spin 12s linear infinite reverse; }
.ring3 { width: 320px; height: 320px; animation: spin 18s linear infinite; }

.orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 3rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.orbit-dot {
  position: absolute; font-size: 1.5rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.dot1 { top: 0; left: 50%; transform: translateX(-50%); }
.dot2 { right: 0; top: 50%; transform: translateY(-50%); }
.dot3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.dot4 { left: 0; top: 50%; transform: translateY(-50%); }

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: var(--font-head);
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ===== SERVICES GRID ===== */
.services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all .3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); box-shadow: 0 16px 48px rgba(0,212,255,0.08); }
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: rgba(0,212,255,0.35);
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(124,58,237,0.05));
}
.service-card.featured::before { opacity: 1; }

.featured-label {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  font-family: var(--font-head);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card h3 small { font-size: 13px; color: var(--text-muted); font-weight: 400; display: block; }

.service-card > p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }

.service-list {
  list-style: none;
  margin-bottom: 16px;
}
.service-list li {
  color: var(--text);
  font-size: 13.5px;
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 12px;
}

.service-badges {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.service-badges span {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: #6ee7b7;
  font-size: 12px; font-weight: 500;
  padding: 3px 10px; border-radius: 50px;
}

/* ===== WHY US ===== */
.why-us { background: var(--bg3); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.why-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: all .25s;
}
.why-card:hover { border-color: rgba(0,212,255,0.3); transform: translateX(4px); }
.why-card span { font-size: 1.4rem; flex-shrink: 0; }
.why-card p { color: var(--text); font-size: 15px; font-weight: 500; }

/* =========================================
   FOUNDER SECTION PREMIUM
========================================= */

.founder {
  padding: 100px 0;
  background: linear-gradient(180deg,#0f172a,#111827);
  position: relative;
  overflow: hidden;
}

.founder-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* ===== IMAGE ===== */

.founder-avatar {
  position: relative;
}

.founder-img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid rgba(255,255,255,0.9);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 0 8px rgba(0,212,255,0.15);

  transition: all 0.4s ease;
}

.founder-img:hover {
  transform: scale(1.03);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.55),
    0 0 0 10px rgba(106,92,255,0.2);
}

/* ===== CONTENT ===== */

.founder-info {
  max-width: 600px;
}

.founder-info h2 {
  font-size: 52px;
  color: white;
  margin-bottom: 10px;
  font-weight: 800;
}

.founder-exp {
  font-size: 20px;
  color: #00d4ff;
  margin-bottom: 22px;
  font-weight: 600;
}

.founder-info p {
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 28px;
}

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(0,212,255,0.12);
  color: #00d4ff;
  border-radius: 40px;
  font-size: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,212,255,0.2);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .founder {
    padding: 70px 0;
  }

  .founder-inner {
    gap: 40px;
    text-align: center;
  }

  .founder-img {
    width: 260px;
    height: 260px;
  }

  .founder-info h2 {
    font-size: 36px;
  }

  .founder-exp {
    font-size: 17px;
  }

  .founder-info p {
    font-size: 15px;
  }
}

/* ===== CTA ===== */
.cta-section { background: var(--bg); padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px;
}
.cta-box > p { color: var(--text-muted); font-size: 17px; margin-bottom: 28px; }

.cta-points {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-bottom: 36px;
}
.cta-points span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
}
.cta-actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ===== OPT-IN CHECKBOX ===== */

.optin-group {
  margin-top: 10px;
  margin-bottom: 20px;
}

.optin-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  cursor: pointer;
}

.optin-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  accent-color: #5f52ff;
  cursor: pointer;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer { background: #05080f; border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-info p { color: var(--text-muted); font-size: 13px; margin-bottom: 6px; }
.footer-contact-info a { color: var(--accent); }

.footer-links h4 {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-cta-col h4 {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-cta-col > p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.biz-hours { color: var(--text-muted); font-size: 13px; margin-top: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-bottom a { color: var(--accent); }

/* ===== PAGE INNER (terms/privacy/refund/contact) ===== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--bg2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: var(--text-muted); font-size: 16px; }

.page-content { padding: 72px 0; }
.page-content .container { max-width: 820px; }

.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700; color: var(--white);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.page-content ul { padding-left: 20px; margin-bottom: 12px; }
.page-content li { color: var(--text-muted); font-size: 15px; margin-bottom: 6px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 24px;
}

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  font-size: 1.4rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 { font-family: var(--font-head); font-size: 13px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item p, .contact-item a { color: var(--text); font-size: 15px; }

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,212,255,0.04);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-success {
  display: none; text-align: center; padding: 20px;
  color: var(--accent3);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: all .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .founder-inner { flex-direction: column; padding: 40px 32px; gap: 32px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 65px; left: 0; right: 0; background: rgba(8,12,20,0.98); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-cta { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 40px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
