/* ui_kits/website/site.css — site-specific styles, all token-driven */

* { box-sizing: border-box; }

body { margin: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 8px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--orange); color: #1A1A1A; }
.btn-primary:hover:not(:disabled) { background: var(--orange-dark); }
.btn-primary:active:not(:disabled) { transform: scale(0.98); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid var(--border); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.04); }
.btn-ghost { background: transparent; color: var(--orange); padding: 12px 0; }
.btn-ghost:hover { color: var(--orange-light); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-shouty { font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: .03em; text-transform: uppercase; padding: 14px 30px; box-shadow: 0 6px 18px rgba(252,81,0,0.35); }
.arrow::after { content: " →"; }

/* ============ HEADER ============ */
.ga-header {
  position: sticky; top: 0; z-index: 80;
  background: transparent;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.ga-header--scrolled {
  background: rgba(33, 37, 41, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.ga-header__inner {
  max-width: 1280px; margin: 0 auto;
  height: 72px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.ga-header__brand img { height: 34px; display: block; }
.ga-header__nav { display: flex; gap: 26px; }
.ga-header__nav a { color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; }
.ga-header__nav a:hover { color: var(--orange-light); }
.ga-header__nav a.active { color: var(--orange); }
.ga-header__right { display: flex; align-items: center; gap: 14px; }
.ga-header__phone { color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; }
.ga-header__phone .muted { color: var(--text-secondary); font-weight: 400; margin-right: 4px; }

/* ============ HERO ============ */
.ga-hero {
  position: relative; overflow: hidden;
  padding: 48px 0 80px;
}
.ga-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(252,81,0,0.10) 0%, transparent 55%),
    var(--bg-dark);
  z-index: 0;
}
.ga-hero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: center;
}
.ga-hero__copy { max-width: 580px; }
.ga-hero__title {
  font-family: var(--font-display);
  font-size: 88px; line-height: 0.92; letter-spacing: .01em;
  text-transform: uppercase; color: #fff;
  margin: 14px 0 22px;
}
.ga-hero__sub {
  font-size: 18px; line-height: 1.55;
  color: #fff;
  margin: 0 0 28px;
  max-width: 520px;
}
.ga-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ga-hero__inline-trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.ga-hero__inline-trust img { height: 42px; }
.ga-hero__inline-trust span { font-size: 13px; color: var(--text-secondary); margin-left: 6px; }
.ga-hero__art { display: flex; justify-content: center; align-items: flex-end; }
.ga-hero__art img { width: 100%; max-width: 480px; height: auto; }

.eyebrow {
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.muted { color: var(--text-secondary); }

/* ============ TRUST BAR ============ */
.ga-trustbar { background: var(--bg-darker); border-block: 1px solid var(--border-soft); }
.ga-trustbar__inner {
  max-width: 1280px; margin: 0 auto; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
}
.ga-trustbar__item { display: flex; align-items: center; justify-content: center; }
.ga-trustbar__item img { height: 104px; width: auto; transition: transform var(--dur-base) var(--ease-spring); }
.ga-trustbar__item:hover img { transform: scale(1.04); }

/* ============ SECTION HEAD ============ */
.ga-section { max-width: 1280px; margin: 0 auto; padding: 96px 32px; }
.ga-section__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.ga-section__head h2 {
  font-family: var(--font-display); font-size: 56px; line-height: .95; letter-spacing: .01em;
  text-transform: uppercase; margin: 8px 0 14px;
}
.ga-section__lede { font-size: 17px; line-height: 1.55; color: #fff; opacity: .92; margin: 0; }

/* ============ SERVICES ============ */
.ga-services { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ga-service {
  background: var(--bg-card); border-radius: 12px;
  padding: 28px; min-height: 240px;
  display: grid; grid-template-columns: 1fr 180px; gap: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: background var(--dur-base) var(--ease-out);
}
.ga-service:hover { background: var(--bg-card-hover); }
.tag { display:inline-block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); padding: 4px 8px; border-radius: 4px; background: rgba(252,81,0,0.10); }
.ga-service__title { font-family: var(--font-display); font-size: 32px; line-height: .95; letter-spacing: .01em; text-transform: uppercase; margin: 10px 0 10px; }
.ga-service__body p { font-size: 14px; line-height: 1.55; margin: 0 0 16px; color: #fff; opacity: .92; }
.ga-service__art { display: flex; align-items: flex-end; justify-content: flex-end; }
.ga-service__art img { max-height: 180px; max-width: 100%; }

/* ============ HOW IT WORKS ============ */
.ga-howitworks { background: var(--bg-darker); padding: 96px 32px; }
.ga-howitworks .ga-section__head { margin-left: auto; margin-right: auto; }
.ga-steps {
  list-style: none; padding: 0; margin: 0;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ga-step { padding: 24px; }
.ga-step__n {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 32px;
  margin-bottom: 18px;
}
.ga-step__t { font-family: var(--font-display); font-size: 28px; letter-spacing: .01em; text-transform: uppercase; margin: 0 0 8px; }
.ga-step__c { font-size: 15px; line-height: 1.55; margin: 0; color: #fff; opacity: .92; }

/* ============ STATS ============ */
.ga-stats { max-width: 1280px; margin: 0 auto; padding: 64px 32px; }
.ga-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ga-stat { text-align: center; padding: 16px; }
.ga-stat__num { font-family: var(--font-display); font-size: 64px; line-height: .95; letter-spacing: .01em; color: var(--orange); }
.ga-stat__lab { font-size: 13px; color: #fff; opacity: .9; margin-top: 4px; }

/* ============ COVER PLAN ============ */
.ga-cover { background: var(--bg-darker); padding: 96px 32px; }
.ga-cover__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ga-cover__copy h2 { font-family: var(--font-display); font-size: 64px; line-height: .92; letter-spacing: .01em; text-transform: uppercase; margin: 8px 0 20px; }
.ga-cover__copy p { font-size: 17px; line-height: 1.55; margin: 0 0 22px; max-width: 460px; }
.ga-cover__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.ga-cover__list li { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.check { width: 20px; height: 20px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex: none; }
.ga-cover__art img { width: 100%; max-width: 580px; display: block; margin: 0 auto; }

/* ============ FOOTER ============ */
.ga-footer { background: var(--bg-darker); border-top: 1px solid var(--border-soft); }
.ga-footer__inner { max-width: 1280px; margin: 0 auto; padding: 64px 32px 32px; display: grid; grid-template-columns: 1.3fr 2fr; gap: 56px; }
.ga-footer__brand img { height: 44px; }
.ga-footer__brand p { font-size: 14px; line-height: 1.55; color: #fff; opacity: .9; margin: 16px 0 20px; max-width: 320px; }
.ga-footer__contact strong { display: block; font-size: 20px; }
.ga-footer__contact span { font-size: 13px; color: var(--text-secondary); }
.ga-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ga-footer__cols h5 { font-family: var(--font-display); font-size: 18px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.ga-footer__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ga-footer__cols a { color: #fff; opacity: .85; text-decoration: none; font-size: 14px; }
.ga-footer__cols a:hover { color: var(--orange-light); opacity: 1; }
.ga-footer__bar { border-top: 1px solid var(--border-soft); padding: 18px 32px; display: flex; justify-content: space-between; font-size: 12px; color: var(--text-secondary); max-width: 1280px; margin: 0 auto; }
.ga-footer__bar a { color: var(--text-secondary); text-decoration: none; }
.ga-footer__bar a:hover { color: #fff; }

/* ============ FIELD ============ */
.field {
  width: 100%; background: #2A2E32; color: #fff;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 13px 14px; font-family: var(--font-body); font-size: 15px; outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field::placeholder { color: #8a929a; }
.field:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,81,0,0.18); }

/* ============ BOOKING MODAL ============ */
.ga-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px; animation: fadein var(--dur-base) var(--ease-out);
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.ga-modal__box {
  background: var(--bg-card); border-radius: 16px;
  width: 640px; max-width: 100%; max-height: 90vh; overflow: auto;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  padding: 32px;
  position: relative;
}
.ga-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--bg-elevated); color: #fff; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ga-modal__close:hover { background: var(--border); }

.ga-modal__steps { display: flex; align-items: center; gap: 0; margin-bottom: 22px; }
.ga-step-pip { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--text-secondary); white-space: nowrap; }
.ga-step-pip .n { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.ga-step-pip.done { color: #fff; }
.ga-step-pip.done .n { background: var(--orange); color: #fff; }
.ga-step-pip.active { color: #fff; }
.ga-step-pip.active .n { background: #fff; color: var(--orange); box-shadow: 0 0 0 4px rgba(252,81,0,0.25); }
.ga-step-bar { flex: 1; height: 2px; background: var(--bg-elevated); margin: 0 10px; }
.ga-step-bar.done { background: var(--orange); }

.ga-modal__body h3 { font-family: var(--font-display); font-size: 32px; letter-spacing: .01em; text-transform: uppercase; margin: 6px 0 6px; }
.ga-modal__body { min-height: 280px; }

.ga-label { display: block; font-size: 13px; font-weight: 700; margin: 18px 0 6px; }

.ga-applgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.ga-applcard {
  background: var(--bg-elevated); border: 2px solid transparent;
  border-radius: 10px; padding: 12px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; color: #fff; font-family: inherit; font-size: 13px; font-weight: 600;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.ga-applcard img { width: 80px; height: 80px; object-fit: contain; }
.ga-applcard:hover { background: #3F464C; }
.ga-applcard.selected { border-color: var(--orange); background: rgba(252,81,0,0.10); }

.ga-faultlist { display: grid; gap: 10px; margin-top: 14px; }
.ga-faultrow {
  background: var(--bg-elevated); border: 2px solid transparent;
  border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; color: #fff; font-family: inherit; font-size: 15px; text-align: left;
}
.ga-faultrow:hover { background: #3F464C; }
.ga-faultrow.selected { border-color: var(--orange); background: rgba(252,81,0,0.10); }
.ga-faultrow .bullet { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--border-strong); }
.ga-faultrow.selected .bullet { border-color: var(--orange); background: var(--orange); box-shadow: inset 0 0 0 2px var(--bg-card); }

.ga-confirm { text-align: center; }
.ga-confirm__mascot { width: 140px; margin: 0 auto 12px; display: block; }
.ga-confirm__summary {
  background: var(--bg-elevated); border-radius: 10px; padding: 18px;
  margin-top: 18px; display: grid; gap: 10px; text-align: left;
}
.ga-confirm__summary > div { display: flex; justify-content: space-between; font-size: 14px; }
.ga-confirm__summary span { color: var(--text-secondary); }

.ga-modal__foot { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
