/* =========================================================
   Forklift Pioneer Training — Design System
   Plain CSS, no build step required.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand green (matches live site) — token names kept as --yellow* for compatibility */
  --yellow: #22c55e;
  --yellow-dark: #15803d;
  --yellow-soft: #dcfce7;
  --green-deep: #105f2d;
  /* Brand red (sampled from the T block in the FPT logo) */
  --red: #FC0230;
  --red-dark: #C40126;
  --red-soft: #ffe4ea;
  --grad-green: linear-gradient(91.62deg, #22c55e 7.42%, #105f2d 92.58%);
  --ink: #1f2124;
  --ink-2: #2a2d31;
  --ink-3: #33373d;
  --steel: #5b6b66;
  --muted: #6b7280;
  --line: #e6eaef;
  --bg: #ffffff;
  --bg-soft: #f7fafc;
  --bg-dark: #1f2124;
  --white: #ffffff;
  --green: #25d366;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(15, 22, 32, .06);
  --shadow: 0 18px 40px -18px rgba(15, 22, 32, .25);
  --shadow-lg: 0 30px 60px -22px rgba(15, 22, 32, .35);

  --container: 1180px;
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --t: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #d7dee6; }
.section--tight { padding: 60px 0; }
.center { text-align: center; }
.grid { display: grid; gap: 26px; }
.gallery-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .18em; font-weight: 700;
  font-size: .72rem; color: var(--yellow-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--yellow); border-radius: 2px; }
.section--dark .eyebrow { color: var(--yellow); }
.kicker { color: var(--steel); font-weight: 600; font-size: .95rem; margin-top: 6px; }
.section--dark .kicker { color: #9fb0bf; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-top: 10px; }
.section-head p { color: var(--muted); margin-top: 14px; }
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: #9fb0bf; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-green); color: #fff; box-shadow: 0 12px 24px -10px rgba(34, 197, 94, .7); }
.btn--primary:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { filter: brightness(.95); transform: translateY(-2px); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 12px 24px -10px rgba(252, 2, 48, .5); }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--on-dark { color: #fff; border-color: rgba(255,255,255,.3); }
.btn--on-dark:hover { border-color: var(--red); color: #fff; background: rgba(252, 2, 48, .12); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: #c7d0da; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 9px 0; }
.topbar__list { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.topbar__list li { display: inline-flex; align-items: center; gap: 8px; }
.topbar__list svg { width: 15px; height: 15px; color: var(--yellow); }
.topbar a:hover { color: #fff; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow var(--t); }
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand__text { font-family: var(--font-head); font-weight: 800; line-height: 1; color: var(--ink); }
.brand__text span { display: block; font-size: 1.02rem; }
.brand__text small { display: block; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--yellow-dark); font-weight: 700; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: center; }
.nav a { padding: 8px 10px; border-radius: 10px; font-weight: 600; font-size: .86rem; color: var(--ink-2); transition: color var(--t), background var(--t); }
.nav a:hover, .nav a.is-active { color: var(--ink); background: var(--bg-soft); }

.has-drop { position: relative; }
.has-drop > a::after { content: "▾"; font-size: .7rem; margin-left: 6px; color: var(--muted); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 290px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; flex-direction: column; padding: 10px 12px; border-radius: 10px; }
.dropdown a strong { font-weight: 700; color: var(--ink); font-size: .92rem; }
.dropdown a small { color: var(--muted); font-size: .78rem; font-weight: 500; }
.dropdown a:hover { background: var(--yellow-soft); }

.header__cta { display: flex; align-items: center; gap: 12px; }
.header__quick { display: none; }
.header__phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); }
.header__phone svg { width: 20px; height: 20px; color: var(--yellow-dark); }
.header__phone small { display: block; font-weight: 500; font-size: .68rem; color: var(--muted); letter-spacing: .04em; }

.burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.burger span { position: relative; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--t); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--t); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(1200px 600px at 80% -10%, #2c2f34 0%, var(--ink) 55%); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: url("/assets/images/pattern.svg"); opacity: .06; pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-block: 84px 90px; position: relative; z-index: 1; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(34, 197, 94, .14); border: 1px solid rgba(34, 197, 94, .35); color: var(--yellow); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .82rem; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; margin: 22px 0 18px; letter-spacing: -.01em; }
.hero h1 .hl { color: var(--yellow); }
.hero p { color: #aebccb; font-size: 1.08rem; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.hero__wa {
  width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; flex: none;
  box-shadow: 0 12px 24px -8px rgba(37, 211, 102, .7); transition: transform var(--t);
}
.hero__wa:hover { transform: scale(1.08); }
.hero__wa svg { width: 32px; height: 32px; display: block; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--font-head); font-size: 1.7rem; color: #fff; }
.hero__trust span { color: #8da0b3; font-size: .85rem; }
.hero__media { position: relative; }
.hero__media .media-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-lg); }
.hero__media img { border-radius: 18px; width: 100%; height: auto; max-height: 540px; object-fit: contain; background: #0b0c0e; }
.hero__chip { position: absolute; background: #fff; color: var(--ink); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .9rem; }
.hero__chip small { display: block; font-weight: 500; color: var(--muted); font-size: .74rem; }
.hero__chip .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--yellow-soft); display: grid; place-items: center; color: var(--yellow-dark); }
.hero__chip .ico svg { width: 22px; height: 22px; }
.hero__chip--a { bottom: 24px; left: -26px; }
.hero__chip--b { top: 28px; right: -22px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: linear-gradient(120deg, var(--ink) 0%, #2c2f34 100%); color: #fff; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: url("/assets/images/pattern.svg"); opacity: .07; }
.page-hero__inner { position: relative; z-index: 1; padding: 70px 0; text-align: center; }
.page-hero .eyebrow { color: var(--yellow); justify-content: center; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin: 14px 0 14px; }
.breadcrumbs { display: flex; gap: 8px; justify-content: center; color: #9fb0bf; font-size: .9rem; }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs span { color: var(--yellow); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--yellow-soft); line-height: 1; }
.card__ico { width: 58px; height: 58px; border-radius: 14px; background: var(--yellow-soft); display: grid; place-items: center; color: var(--yellow-dark); margin-bottom: 20px; }
.card__ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 700; color: var(--ink); }
.card__link svg { width: 16px; height: 16px; transition: transform var(--t); color: var(--yellow-dark); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Course cards (with image) */
.course-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform var(--t), box-shadow var(--t); display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.course-card__media { position: relative; aspect-ratio: 300 / 192; background: var(--bg-soft); overflow: hidden; }
.course-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.course-card__tag { position: absolute; top: 14px; left: 14px; background: var(--yellow); color: var(--ink); font-weight: 700; font-size: .72rem; padding: 6px 12px; border-radius: 999px; }
.course-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.course-card__body h3 { font-size: 1.18rem; }
.course-card__body p { color: var(--muted); font-size: .94rem; margin: 10px 0 18px; flex: 1; }
.course-card__meta { display: flex; gap: 16px; color: var(--steel); font-size: .82rem; margin-bottom: 16px; }
.course-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-card__meta svg { width: 15px; height: 15px; color: var(--yellow-dark); }

.plant-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.plant-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.plant-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plant-card__ico { width: 58px; height: 58px; border-radius: 14px; background: var(--yellow-soft); display: grid; place-items: center; color: var(--yellow-dark); margin: 0 0 16px; align-self: flex-start; }
.plant-card__ico svg { width: 32px; height: 32px; }
.plant-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.plant-card > p { color: var(--muted); font-size: .94rem; margin: 0 0 14px; flex: 1; }
.plant-card .course-card__meta { margin-bottom: 12px; }
.plant-card .btn { margin-top: auto; }

.duration-row { display: grid; grid-template-columns: repeat(4, minmax(160px, 220px)); justify-content: center; gap: 22px; margin-bottom: 36px; }
.duration-card { text-align: center; }
.duration-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.duration-card p { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin: 0; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--media-right { direction: ltr; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__media .badge-float { position: absolute; right: -18px; bottom: -18px; background: var(--grad-green); color: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow); font-family: var(--font-head); font-weight: 800; max-width: 200px; }
.split__media .badge-float b { font-size: 2rem; display: block; }
.split__media .badge-float span { font-size: .82rem; font-weight: 600; }
.split h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin: 12px 0 18px; }
.split p { color: var(--muted); margin-bottom: 14px; }
.section--dark .split h2 { color: #fff; }
.section--dark .split p { color: #9fb0bf; }

/* Checklist */
.checklist { display: grid; gap: 12px; margin: 18px 0 26px; }
.checklist.cols-2 { grid-template-columns: 1fr 1fr; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: .96rem; }
.checklist li svg { flex: none; width: 22px; height: 22px; color: var(--yellow-dark); margin-top: 1px; }
.section--dark .checklist li { color: #c7d0da; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 16px; border-radius: var(--radius); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); }
.stat b { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--yellow); display: block; }
.stat span { color: #9fb0bf; font-size: .92rem; }

/* ---------- Features (icons) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature { padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); text-align: center; transition: transform var(--t), box-shadow var(--t); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__ico { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; background: var(--grad-green); display: grid; place-items: center; color: #fff; }
.feature__ico svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ---------- Partners ---------- */
.partners { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center; }
.partner { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 26px; font-family: var(--font-head); font-weight: 800; color: var(--ink-3); box-shadow: var(--shadow-sm); }
.partner svg { width: 30px; height: 30px; color: var(--yellow-dark); }
.partner img { height: 44px; width: auto; max-width: 120px; object-fit: contain; display: block; }
.partner small { display: block; font-weight: 500; font-size: .7rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Testimonials ---------- */
.tslider { position: relative; }
.ttrack { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; overflow-x: auto; scroll-snap-type: x mandatory; gap: 26px; scrollbar-width: none; padding: 28px 0 8px; }
.ttrack::-webkit-scrollbar { display: none; }
@media (min-width: 760px) { .ttrack { grid-auto-columns: calc(50% - 13px); } }
@media (min-width: 1040px) { .ttrack { grid-auto-columns: calc(33.333% - 18px); } }
.tcard { position: relative; height: 100%; scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 42px 30px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard__google {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; z-index: 1;
}
.tcard__google svg { width: 28px; height: 28px; display: block; }
.tcard .stars { display: flex; gap: 3px; color: #fbbc04; margin-bottom: 14px; justify-content: center; }
.tcard .stars svg { width: 18px; height: 18px; }
.tcard p { color: var(--ink-2); font-size: .98rem; font-style: italic; flex: 1; }
.tcard__person { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.tcard__avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: var(--ink); flex: none; }
.tcard__person b { display: block; color: var(--ink); line-height: 1.2; }
.tslider__nav { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.tslider__nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; transition: var(--t); }
.tslider__nav button:hover { background: var(--yellow); border-color: var(--yellow); }
.tslider__nav svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow var(--t); }
.faq__item.is-open { box-shadow: var(--shadow-sm); border-color: var(--yellow); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq__q .ico { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--yellow-soft); color: var(--yellow-dark); display: grid; place-items: center; transition: var(--t); }
.faq__item.is-open .faq__q .ico { background: var(--yellow); transform: rotate(45deg); }
.faq__q .ico svg { width: 16px; height: 16px; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq__a p { padding: 0 22px 22px; color: var(--muted); }

/* ---------- Forms ---------- */
form[data-form] { position: relative; }
.form { display: grid; gap: 16px; }
.form-honeypot {
  position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: .85rem; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink); transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(34, 197, 94, .18); }
.form__note { font-size: .82rem; color: var(--muted); }
.form-status { font-size: .9rem; font-weight: 600; padding: 12px 16px; border-radius: 12px; display: none; }
.form-status.is-ok { display: block; background: #e9f9ef; color: #167c45; }
.form-status.is-err { display: block; background: #fdecec; color: #c0392b; }

.form-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.section--dark .form-card { color: var(--ink-2); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.contact-item .ico { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--yellow-soft); color: var(--yellow-dark); display: grid; place-items: center; }
.contact-item .ico svg { width: 24px; height: 24px; }
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .94rem; }
.contact-item a:hover { color: var(--yellow-dark); }
.whatsapp-cta { background: linear-gradient(135deg, #128c4f, var(--green)); color: #fff; border-radius: var(--radius); padding: 24px; }
.whatsapp-cta h4 { color: #fff; font-size: 1.1rem; }
.whatsapp-cta p { color: rgba(255, 255, 255, .9); font-size: .9rem; margin: 6px 0 16px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Overview / prose ---------- */
.prose { color: var(--muted); }
.prose p { margin-bottom: 16px; }
.prose h3 { color: var(--ink); margin: 6px 0 14px; }

.overview-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.overview-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.overview-stack { display: grid; gap: 30px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-green); border-radius: var(--radius-lg); padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-band p { color: rgba(255, 255, 255, .9); font-weight: 500; margin-top: 6px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #9fb0bf; padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer .brand__text span { color: #fff; }
.footer p { font-size: .92rem; margin: 18px 0; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .92rem; transition: color var(--t); }
.footer__links a:hover { color: var(--yellow); padding-left: 4px; }
.footer__contact li { display: flex; gap: 12px; font-size: .92rem; margin-bottom: 14px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 3px; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .06); display: grid; place-items: center; transition: var(--t); }
.footer__socials a:hover { background: var(--yellow); color: var(--ink); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); transition: transform var(--t); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

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

/* ---------- Mobile nav drawer ---------- */
.nav-backdrop { position: fixed; inset: 0; background: rgba(15, 22, 32, .5); opacity: 0; visibility: hidden; transition: var(--t); z-index: 80; }
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__chip--a { left: 12px; }
  .hero__chip--b { right: 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 36px; }
}
@media (max-width: 900px) {
  .cards, .features { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .header__phone { display: none; }
}
@media (max-width: 820px) {
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .header { z-index: 82; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header__cta { display: none; }
  .header__quick {
    display: flex; align-items: center; justify-content: flex-end; gap: 8px;
    margin-left: auto; margin-right: 4px;
  }
  .header__quick a {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
    display: grid; place-items: center; color: var(--yellow-dark); background: #fff;
  }
  .header__quick svg { width: 18px; height: 18px; }
  .burger { display: inline-flex; position: relative; z-index: 83; }
  .nav {
    display: flex;
    position: fixed; inset: 0; width: 100%; height: 100dvh; max-height: none;
    background: #fff; flex-direction: column; align-items: stretch; justify-content: center;
    gap: 2px; flex-wrap: nowrap;
    padding: 88px 28px 40px; z-index: 81;
    transform: translateX(100%);
    transition: transform var(--t); box-shadow: none;
    overflow: hidden;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav a { padding: 14px 4px; font-size: 1.12rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .has-drop > a::after { float: right; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 12px; min-width: auto; display: none; }
  .has-drop.is-expanded .dropdown { display: block; }
  .split { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .checklist.cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .duration-row { grid-template-columns: repeat(2, minmax(160px, 240px)); }
}
@media (max-width: 560px) {
  .cards, .features { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .cta-band { padding: 34px; }
  .topbar__list { gap: 14px; }
  .hero__inner { padding-block: 48px 56px; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero__actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .hero__actions .btn { width: auto; flex: 1 1 auto; }
  .hero__trust { gap: 18px; }
  .hero__chip { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .duration-row { grid-template-columns: 1fr; }
}

/* ---------- Homepage red accents (logo T / #FC0230) ---------- */
.is-home .topbar { box-shadow: inset 0 3px 0 var(--red); }
.is-home .hero__chip--b .ico { background: var(--red-soft); color: var(--red); }
.is-home .cards .card:nth-child(2) .card__ico { background: #ececec; color: var(--ink); }
.is-home .cards .card:nth-child(2) .card__num { color: #d8d8d8; }
.is-home .cards .card:nth-child(3) .card__ico { background: var(--red-soft); color: var(--red); }
.is-home .cards .card:nth-child(3) .card__num { color: #ffd0d8; }
.is-home .cards .card:nth-child(3) .card__link svg { color: var(--red); }
.is-home .course-card__tag { background: var(--red); color: #fff; }
.is-home .cta-band { box-shadow: var(--shadow), inset 8px 0 0 var(--red); }
.is-home .faq__item.is-open { border-color: var(--red); }
.is-home .faq__item.is-open .faq__q .ico { background: var(--red); color: #fff; }
.is-home .tslider__nav button:hover { background: var(--red); border-color: var(--red); color: #fff; }

