@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800&display=swap');

:root {
  --cream: #ffffff;
  --white: #ffffff;
  --primary: #4162b9;
  --primary-dark: #33509f;
  --primary-light: #e7ebf8;
  --navy: #0e1a2f;
  --text-muted: #5b6472;
  --amber: #f59e0b;
  --border: #e6e9f0;
  --radius-pill: 999px;
  --radius-card: 20px;
  --shadow: 0 20px 45px rgba(14, 26, 47, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
}
h1, h2, h3, .font-heading {
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f2f4fb; }
.btn-white-outline { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-white-outline:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  object-fit: cover; flex-shrink: 0;
}
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--navy); line-height: 1.1; }
.brand-name span { display: block; font-size: .68rem; letter-spacing: .06em; color: var(--primary); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 600; font-size: .92rem; color: var(--navy);
}
.main-nav a:hover { background: rgba(65,98,185,.08); }
.main-nav a.active { background: var(--primary-light); color: var(--primary); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px;
  background: var(--cream); border-bottom: 1px solid var(--border);
}
.mobile-nav a { padding: 12px 14px; border-radius: 12px; font-weight: 600; color: var(--navy); }
.mobile-nav a.active { background: var(--primary-light); color: var(--primary); }
.mobile-nav.open { display: flex; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .site-header .btn-primary.header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Page hero band (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #59489a 100%);
  color: #fff; padding: 72px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 2.9rem); color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* ---------- Home hero ---------- */
.hero { background: var(--cream); padding: 0 0 60px; }
.hero-media { height: 320px; overflow: hidden; }
.hero-media svg { width: 100%; height: 100%; }
.hero-body { padding-top: 44px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light); color: var(--primary);
  padding: 8px 18px; border-radius: var(--radius-pill); font-weight: 600; font-size: .85rem; margin-bottom: 20px;
}
.badge-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.hero-body h1 { font-size: clamp(2.3rem, 6vw, 3.4rem); max-width: 720px; }
.hero-body h1 .accent { color: var(--primary); }
.hero-body p.lead { font-size: 1.08rem; max-width: 560px; margin: 20px 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--navy); }
.hero-stats .stat .ic {
  width: 22px; height: 22px; border-radius: 50%; background: #fdecc8; color: var(--amber);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-stats .stat .ic svg { width: 13px; height: 13px; }

/* ---------- Feature band ---------- */
.feature-band { background: var(--primary); padding: 56px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-card .ic {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card .ic svg { width: 24px; height: 24px; color: #fff; }
.feature-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { color: rgba(255,255,255,.82); font-size: .9rem; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Section ---------- */
.section { padding: 76px 0; }
.section.alt { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 14px; }
.section-head p { font-size: 1.02rem; }

/* ---------- Packages teaser (home) ---------- */
.teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.teaser h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 16px; }
.teaser p.lead { font-size: 1.02rem; margin-bottom: 24px; }
.check-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--navy); }
.check-list .ic {
  width: 22px; height: 22px; border-radius: 50%; background: #fdecc8; color: var(--amber);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-list .ic svg { width: 13px; height: 13px; }
.tv-mock {
  background: linear-gradient(135deg, #1c2f63, #4162b9); border-radius: var(--radius-card);
  padding: 28px; box-shadow: var(--shadow);
}
.tv-mock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tv-mock-grid .app {
  aspect-ratio: 1; border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.tv-mock-grid .app svg { width: 26px; height: 26px; color: #fff; }
@media (max-width: 860px) { .teaser { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary); padding: 64px 0; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 520px; margin: 0 auto 30px; font-size: 1.02rem; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Service / value cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 860px) { .card-grid, .value-grid { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 32px; box-shadow: var(--shadow);
}
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .ic svg { width: 24px; height: 24px; color: var(--primary); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p.desc { margin-bottom: 18px; }
.card .check-list { margin: 0; gap: 8px; }
.card .check-list li { font-size: .9rem; font-weight: 400; color: var(--text-muted); }

.value-grid .card { text-align: center; padding: 28px 22px; }
.value-grid .card .ic { margin-left: auto; margin-right: auto; }

/* ---------- Founder tribute (about) ---------- */
.founder-photo { min-height: 0; }
.founder-photo .about-photo { min-height: 0; aspect-ratio: 4/5; }
.founder-quote { margin: 0; padding: 0; border: 0; display: grid; gap: 16px; }
.founder-quote p { font-size: 1.05rem; color: var(--navy); }
.founder-quote p:first-child { font-weight: 600; }
.founder-attribution { margin-top: 18px; font-weight: 700; color: var(--primary); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-badge {
  display: flex; align-items: center; gap: 10px; background: var(--cream); border-radius: 14px; padding: 14px 16px;
  font-weight: 600; font-size: .9rem;
}
.about-badge .ic { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.about-visual {
  border-radius: var(--radius-card); min-height: 340px; overflow: hidden; box-shadow: var(--shadow);
}
.about-photo { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; }
.about-visual.story-photo { min-height: 0; aspect-ratio: 4 / 3; }
.about-visual.story-photo .about-photo { min-height: 0; height: 100%; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.map-frame {
  border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-cta { padding: 20px; text-align: center; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--cream); font-family: inherit; font-size: .95rem; color: var(--navy);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px 56px; padding-bottom: 44px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; }
.footer-grid h4.partner-title { font-size: 1.3rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: .92rem; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--text-muted); }
.footer-contact svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.partner-box { border: 1px solid var(--border); border-radius: 14px; padding: 18px; text-align: center; }
.partner-box .gtpl-logo { max-width: 170px; margin: 0 auto; }
.partner-box .caption { font-size: .78rem; margin-top: 10px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; text-align: center; font-size: .85rem; color: var(--text-muted); }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,.2);
  z-index: 60;
}
.wa-float svg { width: 28px; height: 28px; color: #fff; }

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .hero-actions, .cta-band .hero-actions { flex-direction: column; }
  .wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 22px; height: 22px; }
}
