/* ═══ HOME INTERNET CAFE — Shared Stylesheet ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:      #0F6E56;
  --teal-mid:  #1D9E75;
  --teal-lt:   #E1F5EE;
  --teal-glow: rgba(15,110,86,0.15);
  --dark:      #0D1412;
  --dark2:     #1A2520;
  --dark3:     #111C19;
  --mid:       #4A6560;
  --light:     #8AADA7;
  --rule:      #1E3530;
  --white:     #FFFFFF;
  --amber-lt:  #FEF3DC;
  --blue-lt:   #E6F1FB;
  --green-wa:  #25D366;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark); color: var(--white);
  line-height: 1.6; overflow-x: hidden;
}

/* SKIP LINK */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--teal); color: white;
  padding: 8px 16px; border-radius: 4px;
  font-size: 14px; text-decoration: none; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: rgba(13,20,18,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800;
  color: var(--white); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--teal-mid); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--light); text-decoration: none;
  padding: 7px 14px; border-radius: 100px; transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--teal-mid); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--teal); color: white; padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none; margin-left: 8px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--teal-mid); transform: translateY(-1px); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-mid); color: white; padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 24px rgba(29,158,117,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: #23c28e; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(29,158,117,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none; border: 1px solid var(--rule);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--teal-mid); background: var(--teal-glow); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa); color: white; padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-wa:hover { background: #20b958; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.btn-wa svg, .wa-float svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* TRUST BAR */
.trust-bar {
  background: var(--dark2); border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule); padding: 14px 24px; overflow: hidden;
}
.trust-inner {
  display: flex; gap: 40px;
  animation: scrollTrust 22s linear infinite; width: max-content;
}
.trust-inner:hover { animation-play-state: paused; }
@keyframes scrollTrust { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--light); white-space: nowrap; }
.trust-item .dot { color: var(--teal-mid); }

/* PAGE HEADER */
.page-header {
  padding: 120px 24px 60px;
  background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(29,158,117,0.12) 0%, transparent 70%), linear-gradient(160deg, #0D1412 0%, #0A1E18 100%);
  border-bottom: 1px solid var(--rule); position: relative; overflow: hidden;
}
.page-header-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(var(--teal-mid) 1px, transparent 1px), linear-gradient(90deg, var(--teal-mid) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-header-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--light); margin-bottom: 20px; }
.breadcrumb a { color: var(--teal-mid); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* TYPOGRAPHY */
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 12px; }
h1 { font-family: 'Syne', sans-serif; font-size: clamp(34px, 7vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 16px; }
h1 .accent { color: var(--teal-mid); }
h2 { font-family: 'Syne', sans-serif; font-size: clamp(24px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 12px; }
h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lead { font-size: 17px; color: var(--light); font-weight: 300; max-width: 540px; margin-bottom: 36px; }
.section-lead { font-size: 16px; color: var(--light); font-weight: 300; max-width: 520px; margin-bottom: 44px; }

/* SECTIONS */
section { padding: 72px 24px; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-alt { background: var(--dark2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

/* SERVICE CARDS */
.service-group { margin-bottom: 48px; }
.service-group:last-child { margin-bottom: 0; }
.group-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.group-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.icon-blue { background: var(--blue-lt); } .icon-teal { background: var(--teal-lt); } .icon-amber { background: var(--amber-lt); }
.group-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); }
.service-cards { display: flex; flex-direction: column; gap: 2px; }
.service-card { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 20px; background: var(--dark2); border: 1px solid var(--rule); border-radius: 2px; transition: border-color 0.2s, background 0.2s; }
.service-card:first-child { border-radius: 12px 12px 2px 2px; }
.service-card:last-child  { border-radius: 2px 2px 12px 12px; }
.service-card:only-child  { border-radius: 12px; }
.service-card:hover { border-color: var(--teal-mid); background: rgba(29,158,117,0.05); }
.svc-left { flex: 1; }
.svc-name { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.svc-note { font-size: 12px; color: var(--light); }
.svc-trust { font-size: 11px; font-weight: 600; color: var(--teal-mid); margin-top: 4px; }
.svc-price { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); white-space: nowrap; }

/* BUNDLE */
.bundle-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; background: var(--teal-glow); border: 1px solid rgba(29,158,117,0.4); border-radius: 12px; margin-top: 8px; }
.bundle-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); background: var(--teal-lt); padding: 2px 10px; border-radius: 100px; margin-bottom: 6px; }
.bundle-name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.bundle-desc { font-size: 12px; color: var(--light); }
.bundle-price-wrap { text-align: right; flex-shrink: 0; }
.bundle-was { font-size: 11px; color: var(--light); text-decoration: line-through; margin-bottom: 2px; }
.bundle-now { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--teal-mid); }

/* WHY CARDS */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.why-card { background: var(--dark); border: 1px solid var(--rule); border-radius: 16px; padding: 28px 24px; transition: border-color 0.2s, transform 0.2s; }
.why-card:hover { border-color: var(--teal-mid); transform: translateY(-3px); }
.why-icon { font-size: 28px; margin-bottom: 16px; display: block; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--dark2); border: 1px solid var(--rule); border-radius: 2px; overflow: hidden; }
.faq-item:first-child { border-radius: 12px 12px 2px 2px; }
.faq-item:last-child  { border-radius: 2px 2px 12px 12px; }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500; color: var(--white); }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-arrow { color: var(--teal-mid); font-size: 18px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 14px; color: var(--light); line-height: 1.7; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.contact-card { background: var(--dark2); border: 1px solid var(--rule); border-radius: 16px; padding: 28px 24px; text-decoration: none; color: var(--white); display: flex; flex-direction: column; gap: 6px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.contact-card:hover { border-color: var(--teal-mid); transform: translateY(-3px); box-shadow: 0 8px 32px var(--teal-glow); }
.contact-icon { font-size: 32px; margin-bottom: 6px; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); }
.contact-value { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--teal-mid); }
.contact-sub { font-size: 13px; color: var(--light); }

/* FOOTER */
footer { background: var(--dark3); border-top: 1px solid var(--rule); padding: 40px 24px 32px; }
.footer-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; display: block; }
.footer-logo span { color: var(--teal-mid); }
.footer-desc { font-size: 13px; color: var(--light); line-height: 1.6; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--light); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-mid); }
.footer-contact p { font-size: 13px; color: var(--light); margin-bottom: 6px; }
.footer-contact a { color: var(--teal-mid); text-decoration: none; }
.footer-bottom { max-width: 900px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom small { font-size: 12px; color: var(--mid); }

/* FLOATING WA */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; align-items: center; gap: 10px; background: var(--green-wa); color: white; padding: 14px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links .nav-link { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 14px; }
  .nav-cta { padding: 7px 14px; font-size: 12px; }
  .bundle-card { flex-direction: column; align-items: flex-start; }
}
