/* ==========================================
   PEAK SPEEDY — CSS STYLES
   ========================================== */

/* RESET & BASE */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  color:#fff;
  background:#0a0a0a;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

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

/* COLORS */
:root {
  --dark:#0a0a0a;
  --dark2:#1a1a1a;
  --accent:#FF0040;
  --accent-hover:#E60023;
  --text:#ffffff;
  --text-muted:#b0b0b0;
  --light:#F5F5F5;
  --light2:#e8e8e8;
  --accent-bg:#1a0a10;
}

/* LAYOUT */
.container {
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}

/* NAV */
.navbar {
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(10,10,10,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  padding:0 24px;
}
.nav-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px;
  max-width:1140px;
  margin:0 auto;
}
.logo {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:1.1rem;
  letter-spacing:-0.02em;
}
.logo-img { height:32px; width:auto; }
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a {
  color:var(--text-muted);
  font-size:0.9rem;
  font-weight:500;
  transition:color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color:#fff; }
.btn-nav {
  background:var(--accent);
  color:#fff !important;
  padding:8px 20px;
  border-radius:6px;
  font-weight:600;
  transition:background 0.2s;
}
.btn-nav:hover { background:var(--accent-hover); }
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.hamburger span {
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
}

/* HERO */
.hero {
  padding:180px 0 120px;
  text-align:center;
  background:linear-gradient(180deg,#0a0a0a 0%,#111 100%);
}
.hero-badge {
  display:inline-block;
  background:rgba(255,0,64,0.15);
  border:1px solid rgba(255,0,64,0.3);
  color:var(--accent);
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:6px 16px;
  border-radius:100px;
  margin-bottom:24px;
}
.hero h1 {
  font-size:clamp(2.2rem,5vw,3.5rem);
  font-weight:900;
  line-height:1.1;
  letter-spacing:-0.03em;
  margin-bottom:24px;
}
.accent { color:var(--accent); }
.hero-sub {
  font-size:1.1rem;
  color:var(--text-muted);
  max-width:640px;
  margin:0 auto 40px;
  line-height:1.7;
}
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* BUTTONS */
.btn {
  display:inline-block;
  padding:14px 32px;
  border-radius:8px;
  font-weight:600;
  font-size:0.95rem;
  transition:all 0.2s;
  cursor:pointer;
  border:none;
}
.btn-primary {
  background:var(--accent);
  color:#fff;
}
.btn-primary:hover { background:var(--accent-hover); transform:translateY(-1px); }
.btn-outline {
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color:#fff; }
.btn-lg { padding:18px 40px; font-size:1rem; }

/* SECTIONS */
.section-dark { background:#0a0a0a; }
.section-light { background:#fff; color:#0a0a0a; }
.section-accent { background:var(--accent); color:#fff; }

section { padding:80px 0; }
.section-label {
  font-size:0.7rem;
  font-weight:800;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
}
.section-label.light { color:rgba(255,255,255,0.7); }
section h2 {
  font-size:clamp(1.6rem,3.5vw,2.4rem);
  font-weight:800;
  letter-spacing:-0.02em;
  margin-bottom:48px;
  line-height:1.2;
}
.section-light h2 { color:#0a0a0a; }
section.light h2 { color:#fff; }

/* TWO COL */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.two-col p { margin-bottom:16px; font-size:0.95rem; }
.lead { font-size:1.05rem !important; color:var(--text-muted); }
.sub-heading { font-size:1rem; font-weight:700; margin-bottom:16px; color:#0a0a0a; }

/* CARD DARK */
.card-dark {
  background:#1a1a1a;
  border-radius:12px;
  padding:28px;
  color:#fff;
}
.card-dark h3 { font-size:1rem; font-weight:700; margin-bottom:12px; color:#fff; }
.card-dark p { color:var(--text-muted); font-size:0.9rem; }
.tag-row { display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; }
.tag {
  background:rgba(255,0,64,0.15);
  color:var(--accent);
  font-size:0.7rem;
  font-weight:600;
  padding:4px 12px;
  border-radius:100px;
}

/* FEATURE LIST */
.feature-list { margin-top:16px; }
.feature-list li {
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
  font-size:0.9rem;
  color:var(--text-muted);
}
.section-light .feature-list li { border-color:rgba(0,0,0,0.08); }

/* GRID 4 */
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.benefit-card {
  background:#1a1a1a;
  border-radius:12px;
  padding:28px;
  border:1px solid rgba(255,255,255,0.06);
}
.benefit-icon { font-size:2rem; margin-bottom:16px; }
.benefit-card h3 { font-size:1rem; font-weight:700; margin-bottom:10px; color:#fff; }
.benefit-card p { font-size:0.85rem; color:var(--text-muted); line-height:1.6; }

/* REQ LIST */
.req-list { display:flex; flex-direction:column; gap:0; }
.req-item {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 0;
  font-size:0.95rem;
  border-bottom:1px solid rgba(0,0,0,0.08);
}
.check { font-size:1.1rem; }

/* NOTE BOX */
.note-box {
  background:#F5F5F5;
  border-radius:12px;
  padding:28px;
  border-left:4px solid var(--accent);
}
.note-icon { font-size:1.5rem; margin-bottom:12px; }
.note-box h3 { font-size:1rem; font-weight:700; margin-bottom:8px; color:#0a0a0a; }
.note-box p { font-size:0.9rem; color:#555; }

/* STEPS */
.steps { display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; }
.step {
  background:rgba(255,255,255,0.1);
  border-radius:12px;
  padding:32px 28px;
  text-align:center;
  flex:1;
  min-width:200px;
  max-width:280px;
}
.step-num {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  background:var(--accent);
  color:#fff;
  font-size:1.4rem;
  font-weight:900;
  border-radius:50%;
  margin-bottom:16px;
}
.step h3 { font-size:1.1rem; font-weight:700; margin-bottom:8px; }
.step p { font-size:0.85rem; color:rgba(255,255,255,0.75); line-height:1.5; }
.step-arrow { font-size:1.5rem; color:rgba(255,255,255,0.4); }

/* SERVICE LIST */
.service-list { display:flex; flex-direction:column; gap:0; }
.service-list li {
  padding:12px 0;
  font-size:0.9rem;
  border-bottom:1px solid rgba(0,0,0,0.08);
  color:#333;
}
.service-list li strong { color:#0a0a0a; }

/* TOOL LIST */
.tool-list { display:flex; flex-direction:column; gap:10px; }
.tool-item {
  background:#F5F5F5;
  padding:12px 16px;
  border-radius:8px;
  font-size:0.9rem;
  font-weight:600;
  color:#0a0a0a;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.optional {
  font-size:0.7rem;
  font-weight:500;
  color:#888;
  background:#ddd;
  padding:2px 8px;
  border-radius:100px;
}

/* GRID 3 */
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:32px; }
.earn-card {
  background:#1a1a1a;
  border-radius:12px;
  padding:28px;
  border:1px solid rgba(255,255,255,0.06);
}
.earn-icon { font-size:2rem; margin-bottom:16px; }
.earn-card h3 { font-size:1rem; font-weight:700; margin-bottom:10px; color:#fff; }
.earn-card p { font-size:0.85rem; color:var(--text-muted); line-height:1.6; }

/* REV NOTE */
.rev-note {
  background:rgba(255,0,64,0.1);
  border:1px solid rgba(255,0,64,0.2);
  border-radius:10px;
  padding:20px 24px;
  font-size:0.9rem;
  color:var(--text-muted);
  text-align:center;
}
.rev-note strong { color:var(--accent); }

/* TIP CARDS */
.tip-card {
  background:#F5F5F5;
  border-radius:12px;
  padding:28px;
}
.tip-icon { font-size:1.8rem; margin-bottom:14px; }
.tip-card h3 { font-size:0.95rem; font-weight:700; margin-bottom:8px; color:#0a0a0a; }
.tip-card p { font-size:0.85rem; color:#666; line-height:1.6; }

/* CHALLENGE TABLE */
.challenge-table { display:flex; flex-direction:column; gap:12px; }
.challenge-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.challenge-item {
  padding:18px 24px;
  border-radius:10px;
  font-size:0.9rem;
  font-weight:500;
}
.challenge-prob { background:rgba(0,0,0,0.2); }
.challenge-fix { background:rgba(0,0,0,0.15); }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid rgba(0,0,0,0.08); }
.faq-q {
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:20px 0;
  font-size:1rem;
  font-weight:600;
  color:#0a0a0a;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-toggle { font-size:1.5rem; color:var(--accent); transition:transform 0.3s; }
.faq-item.open .faq-toggle { transform:rotate(45deg); }
.faq-a {
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease, padding 0.3s ease;
  font-size:0.9rem;
  color:#666;
  line-height:1.7;
  padding-bottom:0;
}
.faq-item.open .faq-a {
  max-height:200px;
  padding-bottom:20px;
}

/* CTA SECTION */
.cta-section { text-align:center; }
.cta-section h2 { font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:16px; }
.cta-section p { font-size:1rem; color:var(--text-muted); max-width:560px; margin:0 auto 40px; }
.cta-section .hero-btns { justify-content:center; }

/* FOOTER */
footer { background:#0a0a0a; border-top:1px solid rgba(255,255,255,0.06); padding:48px 0 32px; }
.footer-inner { display:flex; flex-direction:column; gap:32px; }
.footer-brand { display:flex; align-items:center; gap:10px; font-weight:700; font-size:1rem; }
.footer-brand img { height:28px; }
.footer-brand p { font-size:0.8rem; color:var(--text-muted); margin-top:4px; }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { font-size:0.85rem; color:var(--text-muted); transition:color 0.2s; }
.footer-links a:hover { color:#fff; }
.footer-copy { font-size:0.75rem; color:#555; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.page-hero {
  padding:140px 0 80px;
  text-align:center;
  background:linear-gradient(180deg,#0a0a0a 0%,#111 100%);
}
.page-hero h1 { font-size:clamp(2rem,4.5vw,3rem); font-weight:900; letter-spacing:-0.02em; margin-bottom:16px; }
.page-hero p { color:var(--text-muted); font-size:1rem; max-width:560px; margin:0 auto; }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section { padding:80px 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.contact-info h2 { font-size:1.6rem; font-weight:800; margin-bottom:20px; }
.contact-info p { color:#666; font-size:0.95rem; margin-bottom:32px; line-height:1.7; }
.contact-detail { display:flex; align-items:center; gap:12px; padding:14px 0; border-bottom:1px solid rgba(0,0,0,0.08); font-size:0.95rem; color:#333; }
.contact-form-box { background:#F5F5F5; border-radius:16px; padding:40px; }
.contact-form-box h3 { font-size:1.2rem; font-weight:700; margin-bottom:24px; color:#0a0a0a; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:0.8rem; font-weight:600; color:#555; margin-bottom:6px; text-transform:uppercase; letter-spacing:0.05em; }
.form-group input, .form-group textarea {
  width:100%;
  padding:12px 16px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:0.95rem;
  font-family:inherit;
  background:#fff;
  color:#0a0a0a;
  transition:border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline:none; border-color:var(--accent); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-btn { width:100%; background:var(--accent); color:#fff; font-weight:700; font-size:0.95rem; border:none; padding:14px; border-radius:8px; cursor:pointer; transition:background 0.2s; }
.form-btn:hover { background:var(--accent-hover); }

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media(max-width:900px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:1fr; }
  .two-col { grid-template-columns:1fr; }
  .steps { flex-direction:column; }
  .step-arrow { display:none; }
  .challenge-row { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
}

@media(max-width:640px) {
  section { padding:60px 0; }
  .hero { padding:140px 0 80px; }
  .grid-4 { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero-btns { flex-direction:column; align-items:center; }
  .btn-lg { width:100%; text-align:center; }
  .footer-links { flex-direction:column; gap:12px; }
}

@media(max-width:400px) {
  .container { padding:0 16px; }
  .hero h1 { font-size:1.8rem; }
}