/* ==========================================================================
   SATGOLD TECHNOL — CORE STYLESHEET
   Design tokens, base styles, layout, and components.
   ========================================================================== */

:root {
  /* Brand colors */
  --deep-green: #063B2A;
  --emerald: #008F5A;
  --yellow: #FFD21F;
  --black: #050505;
  --blue: #1687FF;
  --pink: #FF4F9A;
  --white: #FFFFFF;
  --off-white: #F8FAF8;

  /* Derived tones */
  --green-gradient: linear-gradient(135deg, var(--deep-green) 0%, var(--emerald) 100%);
  --ink: #0B1210;
  --muted: #5B6B65;
  --line: rgba(6, 59, 42, 0.12);
  --surface: var(--white);
  --surface-alt: var(--off-white);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Scale */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(5, 5, 5, 0.06);
  --shadow-md: 0 12px 32px rgba(6, 59, 42, 0.12);
  --shadow-lg: 0 24px 64px rgba(6, 59, 42, 0.18);

  --container: 1200px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

html, body { height: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--black);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--yellow);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.25);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--pink); color: var(--white); box-shadow: var(--shadow-md); }

.btn-dark {
  background: var(--deep-green);
  color: var(--white);
}
.btn-dark:hover { background: var(--pink); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(5, 5, 5, 0.18);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-whatsapp {
  background: #1FAA53;
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--pink); }

.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.88rem; }

/* ---------- Top contact bar (legacy, kept for reference) ---------- */
.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar-msg {
  color: var(--yellow);
  font-weight: 600;
  font-family: var(--font-display);
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.topbar-links a { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-links a:hover { color: var(--yellow); }
.topbar-links svg { width: 14px; height: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--black);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-mark-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(5, 5, 5, 0.18);
}
.footer-brand .brand-mark-img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 1.9rem);
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--emerald); }

.nav-cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1.5rem;
}
.mobile-panel a {
  padding: 0.85rem 0.25rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-panel a[aria-current="page"] { color: var(--emerald); }
.mobile-panel .btn { margin-top: 0.75rem; }

/* ---------- Breadcrumb (inner pages) ---------- */
.breadcrumb {
  background: var(--surface-alt);
  padding-block: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--emerald); font-weight: 600; }
.page-hero {
  background: var(--surface-alt);
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); max-width: 780px; }
.page-hero p { margin-top: 1.1rem; max-width: 620px; color: var(--muted); font-size: 1.08rem; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 7vw, 5rem);
  background: var(--surface-alt);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  margin-bottom: 1.25rem;
}
.hero-content h1 .accent { color: var(--emerald); }
.hero-content p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}
.hero-price {
  font-size: 0.92rem;
  color: var(--ink);
}
.hero-price strong { color: var(--emerald); font-family: var(--font-display); }

.hero-visual { position: relative; min-height: 380px; }
.hero-panel {
  position: relative;
  background: var(--green-gradient);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 380px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255,210,31,0.18), transparent 45%);
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.float-card small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
}
.float-card .dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.card-dashboard { top: 6%; left: 6%; }
.card-dashboard .dot { background: var(--blue); }
.card-growth { bottom: 10%; left: 10%; }
.card-growth .dot { background: var(--yellow); color: var(--black); }
.card-design { top: 42%; right: 6%; }
.card-design .dot { background: var(--pink); }

.hero-panel-image {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-shape-dots {
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: -30px;
  right: -30px;
  opacity: 0.5;
}

/* ---------- Marquee / logo strip ---------- */
.strip {
  background: var(--deep-green);
  color: var(--white);
  padding-block: 1.6rem;
  overflow: hidden;
  white-space: nowrap;
}
.strip-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 26s linear infinite;
}
.strip-track span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.strip-track span::after { content: "•"; margin-left: 3rem; color: var(--yellow); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--emerald);
}
.stat-label {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.service-card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card li {
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.service-card li svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; margin-top: 3px; }

/* ---------- Founder / about-on-home ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.founder-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--deep-green);
  margin-bottom: 1.25rem;
}
.founder-name { font-weight: 700; font-family: var(--font-display); }
.founder-role { color: var(--muted); font-size: 0.9rem; }

/* ---------- Why us / reasons ---------- */
.reason-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}
.reason-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--yellow);
  -webkit-text-stroke: 1.5px var(--deep-green);
  flex-shrink: 0;
}
.reason-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.reason-card p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Portfolio ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.is-active { background: var(--deep-green); color: var(--white); border-color: var(--deep-green); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-alt);
}
.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-media img { transform: scale(1.08); }
.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,59,42,0) 40%, rgba(6,59,42,0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-media::after { opacity: 1; }
.portfolio-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(12px) scale(0.7);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 2;
}
.portfolio-card:hover .portfolio-arrow { transform: translateY(0) scale(1); opacity: 1; }
.portfolio-body { padding: 1.35rem 1.5rem 1.6rem; }
.portfolio-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}
.portfolio-body h3 { font-size: 1.15rem; margin-block: 0.4rem 0.35rem; }
.portfolio-body p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.is-popular {
  background: var(--green-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-14px);
}
.price-card.is-popular .price-tagline,
.price-card.is-popular .price-desc,
.price-card.is-popular li { color: rgba(255,255,255,0.85); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}
.price-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
}
.price-card.is-popular .price-tagline { color: var(--yellow); }
.price-tier { font-family: var(--font-display); font-size: 1.35rem; margin-block: 0.5rem 0.15rem; }
.price-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; }
.price-amount span { font-size: 1rem; font-weight: 500; opacity: 0.7; }
.price-desc { font-size: 0.92rem; color: var(--muted); margin-block: 0.75rem 1.25rem; }
.price-card ul { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.75rem; flex-grow: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; }
.price-card li svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.price-card:not(.is-popular) li svg { color: var(--emerald); }

.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.addon-card {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.addon-card h4 { font-size: 0.98rem; margin-bottom: 0.5rem; }
.addon-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.addon-price { font-family: var(--font-display); font-weight: 700; color: var(--emerald); }

/* ---------- Homepage single price highlight ---------- */
.price-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--green-gradient);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.price-highlight-text h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.price-highlight-text p { color: rgba(255,255,255,0.82); max-width: 440px; }
.price-highlight-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.price-highlight-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
}
.price-highlight-title { font-family: var(--font-display); font-size: 1.2rem; margin-block: 0.4rem 0.9rem; }
.price-highlight-label { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.price-highlight-amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--black); margin-bottom: 1.25rem; }
.price-highlight-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-highlight-card ul { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.price-highlight-card li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; }
.price-highlight-card li svg { width: 17px; height: 17px; color: var(--emerald); flex-shrink: 0; }

.faq { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
}
.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--deep-green);
  border-radius: 2px;
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: opacity 0.25s ease; }
.faq-item.is-open .faq-q .plus::after { opacity: 0; }
.faq-item.is-open .faq-q .plus { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.faq-item.is-open .faq-a { max-height: 240px; padding: 0 1.5rem 1.5rem; }

/* ---------- Testimonials ---------- */
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 0.95rem; }
.testimonial-card p { font-size: 0.96rem; color: var(--ink); flex-grow: 1; }
.testimonial-person { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.testimonial-person img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Timeline / process ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; }
.timeline-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.timeline-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.timeline-step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Academy tracks ---------- */
.track-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.track-duration {
  align-self: flex-start;
  background: var(--surface-alt);
  color: var(--deep-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.track-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.track-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.1rem; }
.track-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.track-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--surface-alt);
  color: var(--ink);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-gradient);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { margin-block: 1rem 2rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-band .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}
.contact-info-card {
  background: var(--deep-green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.info-item h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 0.25rem; }
.info-item p, .info-item a { font-size: 0.9rem; color: rgba(255,255,255,0.78); }
.info-item a:hover { color: var(--yellow); }
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 0.5rem;
  border: none;
  width: 100%;
  height: 200px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--surface-alt);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--emerald);
  outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-error {
  display: none;
  color: var(--pink);
  font-size: 0.8rem;
  margin-top: 0.4rem;
  font-weight: 600;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--pink); }
.field.has-error .field-error { display: block; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.form-status {
  display: none;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 143, 90, 0.1);
  color: var(--deep-green);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1FAA53;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-green);
  color: rgba(255,255,255,0.75);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
}
.footer-brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 300px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.footer-social a:hover { background: var(--pink); color: var(--white); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.88rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 5vw, 3.5rem); }
.bg-alt { background: var(--surface-alt); }
.dot-pattern {
  position: absolute;
  background-image: radial-gradient(var(--emerald) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.15;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Promo banner (replaces top contact bar) ---------- */
.promo-banner {
  position: relative;
  background: var(--deep-green);
  overflow: hidden;
  height: 76px;
}
.promo-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.promo-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.promo-slide a,
.promo-slide .promo-slide-inner {
  display: block;
  width: 100%;
  height: 100%;
}
.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease;
}
.promo-nav:hover { background: rgba(5, 5, 5, 0.6); }
.promo-nav svg { width: 16px; height: 16px; }
.promo-prev { left: 10px; }
.promo-next { right: 10px; }
.promo-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.25s ease, transform 0.25s ease;
}
.promo-dot.is-active { background: var(--yellow); transform: scale(1.2); }
.promo-banner:focus-within .promo-nav,
.promo-banner:hover .promo-nav { opacity: 1; }

@media (max-width: 600px) {
  .promo-banner { height: 56px; }
  .promo-nav { width: 24px; height: 24px; }
  .promo-nav svg { width: 13px; height: 13px; }
}

/* ---------- Ad popup ---------- */
.ad-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.25rem;
}
.ad-overlay.is-visible { display: flex; }
.ad-box {
  position: relative;
  max-width: 560px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ad-box img { width: 100%; height: auto; display: block; }
.ad-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ad-close:hover { background: var(--pink); transform: rotate(90deg); }
.ad-close svg { width: 18px; height: 18px; }

/* ---------- Post cards ---------- */
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.post-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-media img { transform: scale(1.07); }
.post-cat-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}
.post-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.post-date { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.post-body h3 { font-size: 1.12rem; line-height: 1.3; }
.post-body h3 a { color: var(--black); transition: color 0.2s ease; }
.post-card:hover .post-body h3 a { color: var(--emerald); }
.post-excerpt { font-size: 0.9rem; color: var(--muted); flex-grow: 1; }
.post-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--deep-green);
  margin-top: 0.25rem;
}
.post-readmore svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.post-card:hover .post-readmore svg { transform: translateX(5px); }
.post-card:hover .post-readmore { color: var(--pink); }

/* ---------- Blog page controls ---------- */
.blog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.blog-search {
  position: relative;
  flex: 1 1 260px;
  max-width: 360px;
}
.blog-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--surface-alt);
  font-size: 0.92rem;
}
.blog-search input:focus { border-color: var(--emerald); outline: none; }
.blog-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--muted);
}
.blog-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  display: none;
}
.blog-empty.is-visible { display: block; }

/* ---------- Article page ---------- */
.article-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.article-meta .post-cat-badge { position: static; }
.article-body {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.05rem;
  color: var(--ink);
}
.article-body h2 { font-size: 1.5rem; margin-block: 2rem 1rem; }
.article-body h3 { font-size: 1.2rem; margin-block: 1.5rem 0.75rem; }
.article-body p { margin-bottom: 1.25rem; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.4rem; color: var(--ink); }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 4px solid var(--yellow);
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: var(--deep-green);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.75rem 0;
}
.share-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 760px;
  margin-inline: auto;
}
.share-row span { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.share-btn:hover { background: var(--pink); color: var(--white); }
.share-btn svg { width: 16px; height: 16px; }
