/* ============================================================
   GOOILA DIGITAL — Stylesheet utama
   Design token sesuai Website Playbook (Notion)
   ============================================================ */

:root {
  --primary: #1B5FA8;
  --primary-dark: #144a85;
  --primary-light: #EAF1F9;
  --secondary: #E8521A;
  --secondary-dark: #c94312;
  --accent: #F4A261;
  --bg: #FFFFFF;
  --bg-alt: #F5F8FD;
  --text: #1A1A2E;
  --text-2: #5A6A80;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(27, 95, 168, 0.10);
  --shadow-lg: 0 10px 40px rgba(27, 95, 168, 0.16);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1140px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(232, 82, 26, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--text-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1.4;
}
.btn-primary { background: var(--secondary); color: #fff; }
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232, 82, 26, .3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-blue { background: var(--primary); color: #fff; }
.btn-blue:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27, 95, 168, .3); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: var(--text); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, .3); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--text);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar a { color: var(--accent); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(27, 95, 168, .08);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary) 55%, var(--secondary) 55%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.logo .blue { color: var(--primary); }
.logo .orange { color: var(--secondary); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > li { position: relative; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
}
.main-nav > li > a:hover, .main-nav > li > a.active { color: var(--secondary); }
.main-nav .btn-primary, .main-nav .btn-primary:hover { color: #fff; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 250px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
}
.main-nav li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--primary); }

.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span { width: 22px; height: 2px; background: var(--text); transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(244, 162, 97, .18), transparent 60%),
    radial-gradient(700px 500px at 5% 90%, rgba(27, 95, 168, .10), transparent 60%),
    var(--bg-alt);
  padding: 90px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(32px, 5vw, 50px); margin: 16px 0 20px; }
.hero h1 .hl { color: var(--secondary); }
.hero p.lead { font-size: 18px; color: var(--text-2); margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-heading); font-size: 28px; color: var(--primary); display: block; }
.hero-stats .stat span { font-size: 13px; color: var(--text-2); }

.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.hero-card .bar { height: 10px; border-radius: 100px; background: var(--primary-light); margin: 14px 0; overflow: hidden; position: relative; }
.hero-card .bar i { position: absolute; inset: 0; border-radius: 100px; display: block; }
.hero-card .row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); font-weight: 600; }
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-badge .ic { width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-size: 17px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(500px 300px at 85% 20%, rgba(244, 162, 97, .16), transparent 60%),
    linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 76px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 42px); margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin: 0 auto 8px; color: rgba(255, 255, 255, .85); }
.page-hero .btn { margin-top: 22px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.breadcrumb a { color: var(--accent); }

/* ---------- Logo strip / social proof ---------- */
.logo-strip { padding: 40px 0; }
.logo-strip p.label { text-align: center; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-2); font-weight: 600; margin-bottom: 26px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; align-items: center; }
.client-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #9aa8bb;
  padding: 8px 14px;
  transition: color .2s;
  display: flex; align-items: center; gap: 8px;
}
.client-logo:hover { color: var(--primary); }
.client-logo .dot { width: 10px; height: 10px; border-radius: 3px; background: currentColor; opacity: .5; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid rgba(27, 95, 168, .08);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card:hover .icon { background: var(--secondary); color: #fff; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--text-2); margin-bottom: 16px; }
.card .link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
}
.card .link:hover { text-decoration: underline; }
.card ul.checks { margin: 0 0 16px; }
.card ul.checks li { font-size: 14px; color: var(--text-2); padding: 4px 0 4px 26px; position: relative; }
.card ul.checks li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }

/* ---------- Why us ---------- */
.why-item { text-align: center; padding: 10px; }
.why-item .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.why-item h3 { font-size: 17px; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--text-2); }

/* ---------- Steps / proses kerja ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 26px 26px;
}
.step .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-2); }

/* ---------- Portfolio ---------- */
.pf-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pf-thumb {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 34px;
  color: rgba(255, 255, 255, .9);
}
.pf-body { padding: 22px; }
.pf-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.pf-body h3 { font-size: 18px; margin-bottom: 6px; }
.pf-body .meta { font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.pf-result { display: flex; gap: 20px; border-top: 1px solid var(--bg-alt); padding-top: 14px; }
.pf-result div b { font-family: var(--font-heading); color: var(--secondary); font-size: 20px; display: block; }
.pf-result div span { font-size: 12px; color: var(--text-2); }

/* ---------- Testimonials ---------- */
.testi-slider { position: relative; max-width: 760px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform .45s ease; }
.testi-card {
  min-width: 100%;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
}
.testi-card blockquote { font-size: 17px; color: var(--text); font-style: italic; margin-bottom: 24px; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testi-person .who { text-align: left; }
.testi-person .who b { font-family: var(--font-heading); font-size: 15px; display: block; }
.testi-person .who span { font-size: 13px; color: var(--text-2); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: #c9d6e6; border: none; cursor: pointer; transition: all .2s; padding: 0; }
.testi-dot.active { background: var(--secondary); width: 26px; border-radius: 100px; }

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 56px 0;
}
.stats-band .grid { text-align: center; }
.stats-band b { font-family: var(--font-heading); font-size: 40px; display: block; }
.stats-band b em { font-style: normal; color: var(--accent); }
.stats-band span { font-size: 14px; color: rgba(255, 255, 255, .8); }

/* ---------- Course ---------- */
.course-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-thumb {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
}
.course-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.course-body h3 { font-size: 17px; margin: 8px 0; }
.course-meta { font-size: 13px; color: var(--text-2); display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.course-rating { color: var(--accent); font-size: 14px; font-weight: 600; }
.course-price { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--bg-alt); padding-top: 14px; }
.course-price .price { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 18px; }
.course-price .price s { color: var(--text-2); font-weight: 400; font-size: 13px; margin-right: 6px; }

.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-tab {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid rgba(27, 95, 168, .2);
  background: #fff;
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover, .filter-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------- Blog ---------- */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 42px; }
.blog-body { padding: 22px; }
.blog-body h3 { font-size: 17px; margin: 8px 0 10px; }
.blog-body h3 a { color: var(--text); }
.blog-body h3 a:hover { color: var(--secondary); }
.blog-body p { font-size: 14px; color: var(--text-2); margin-bottom: 14px; }
.blog-meta { font-size: 12.5px; color: var(--text-2); display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.team-card h3 { font-size: 17px; }
.team-card .role { font-size: 13px; color: var(--secondary); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13.5px; color: var(--text-2); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(27, 95, 168, .1);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  padding: 18px 22px;
}
.faq-q .chev { transition: transform .3s; color: var(--secondary); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; font-size: 14.5px; color: var(--text-2); }

/* ---------- CTA section ---------- */
.cta-section {
  background:
    radial-gradient(500px 300px at 15% 20%, rgba(244, 162, 97, .25), transparent 60%),
    linear-gradient(120deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  color: #fff;
  padding: 60px 48px;
  text-align: center;
}
.cta-section h2 { color: #fff; font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 14px; }
.cta-section p { color: rgba(255, 255, 255, .85); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.form-group label .req { color: var(--secondary); }
.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid #d7e0ec;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27, 95, 168, .12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-2); margin-top: 14px; }
.form-error { color: #d63031; font-size: 13px; margin-top: 5px; display: none; }
.form-group.invalid .form-control { border-color: #d63031; }
.form-group.invalid .form-error { display: block; }
.form-success {
  display: none;
  background: #e8f8ef;
  border: 1px solid #25D366;
  color: #147a3d;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14.5px;
  margin-bottom: 18px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-card .icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 21px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card h3 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14.5px; color: var(--text-2); }
.contact-info-card a:hover { color: var(--secondary); }

/* ---------- Content / article prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 36px 0 14px; }
.prose h3 { font-size: 20px; margin: 28px 0 12px; }
.prose p { color: var(--text-2); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; list-style: disc; color: var(--text-2); }
.prose ul li { margin-bottom: 6px; }

/* ---------- Two-column feature ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-split h2 { font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 16px; }
.feature-split p { color: var(--text-2); margin-bottom: 14px; }
.feature-visual {
  border-radius: 16px;
  min-height: 340px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* ---------- Values ---------- */
.value-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-list .vic { font-size: 24px; }
.value-list b { font-family: var(--font-heading); display: block; margin-bottom: 3px; }
.value-list p { font-size: 14px; color: var(--text-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--text); color: #b9c2d4; padding: 64px 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer .logo { color: #fff; margin-bottom: 16px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #b9c2d4; }
.site-footer a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s;
}
.footer-social a:hover { background: var(--secondary); color: #fff; }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: #91a3b5; }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.badge-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(232, 82, 26, .1);
  padding: 3px 10px;
  border-radius: 100px;
  vertical-align: middle;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .hide-m { display: none; }

  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 90px 28px 40px;
    box-shadow: -10px 0 40px rgba(27, 95, 168, .15);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > li { width: 100%; }
  .main-nav a { display: block; padding: 10px 0; font-size: 16px; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 14px;
    min-width: 0;
    display: none;
  }
  .main-nav li.open-sub .dropdown-menu { display: block; }
  .nav-cta { margin: 14px 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; }

  .hero { padding: 60px 0; }
  .hero-stats { gap: 24px; }
  .cta-section { padding: 44px 24px; }
  .form-card { padding: 26px 20px; }
  .testi-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
