@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap");
/* ============================================================
   AI START academy — AI Automation Agency Bootcamp landing
   Standalone stylesheet. Brand tokens mirror style.scss so the
   page stays consistent with the rest of the site.
   ============================================================ */
:root {
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Space Grotesk", sans-serif;
  --color-brand-night: #1b1f3b;
  --color-night-deep: #11131d;
  --color-night-soft: #23284a;
  --color-light-base: #f8f9fa;
  --color-surface: #eef1f6;
  --color-stroke: #d9dee8;
  --color-text: #11131d;
  --color-text-secondary: #6c757d;
  --color-text-muted: #9aa3b2;
  --color-teal: #56e9eb;
  --color-teal-hover: #00b8b5;
  --color-teal-active: #009da0;
  --color-neon-teal: #00f5e9;
  --color-violet: #7209b7;
  --color-deep-violet: #3a0ca3;
  --gradient-hero: linear-gradient(135deg, #00f5d4, #7209b7);
  --gradient-soft: linear-gradient(135deg, #3a0ca3, #00cbb2);
  --radius: 24px;
  --radius-sm: 14px;
  --maxw: 1200px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--color-text-secondary);
  background: var(--color-light-base);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-secondary);
  color: var(--color-text);
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout ---------- */
.lp-container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.lp-container--narrow {
  max-width: 820px;
}

/* ---------- buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.lp-btn--primary {
  background: var(--color-teal);
  color: var(--color-brand-night);
}
.lp-btn--primary:hover {
  background: var(--color-teal-hover);
  color: #fff;
  transform: translateY(-1px);
}
.lp-btn--secondary {
  border-color: var(--color-teal);
  color: var(--color-teal-active);
  background: transparent;
}
.lp-btn--secondary:hover {
  background: rgba(86, 233, 235, 0.08);
}
.lp-btn--ghost {
  color: var(--color-teal-active);
  padding: 10px 14px;
}
.lp-btn--ghost:hover {
  color: var(--color-teal-hover);
}
.lp-btn--ghost .lp-arrow {
  transition: transform 0.25s ease;
}
.lp-btn--ghost:hover .lp-arrow {
  transform: translateX(4px);
}

.lp-arrow path {
  fill: currentColor;
}

.lp-btn--secondary.lp-btn--onDark {
  color: var(--color-teal);
  border-color: rgba(86, 233, 235, 0.6);
}
.lp-btn--secondary.lp-btn--onDark:hover {
  background: rgba(86, 233, 235, 0.12);
  color: #fff;
  border-color: var(--color-teal);
}

/* ---------- tag chip ---------- */
.lp-tag {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border: 1px solid var(--color-teal-active);
  background: rgba(86, 233, 235, 0.06);
  border-radius: 100px;
  color: var(--color-text-secondary);
}

/* ---------- header ---------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-stroke);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-logo img {
  height: 36px;
  width: auto;
}
.lp-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lp-logo__name {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-brand-night);
}
.lp-logo__sub {
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--color-text-secondary);
}
.lp-logo--light .lp-logo__name {
  color: #fff;
}
.lp-logo--light .lp-logo__sub {
  color: var(--color-text-muted);
}

/* ---------- hero ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: #fff;
}
.lp-hero__glow {
  position: absolute;
  top: -200px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: var(--gradient-hero);
  filter: blur(120px);
  opacity: 0.22;
  border-radius: 50%;
  pointer-events: none;
}
.lp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.lp-hero__title {
  font-size: 56px;
  font-weight: 700;
  margin: 22px 0 20px;
  letter-spacing: -0.5px;
}
.lp-hero__title span {
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero__text {
  font-size: 19px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 24px;
}
.lp-hero__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.lp-hero__points li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--color-text);
}
.lp-hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(86, 233, 235, 0.15);
}
.lp-hero__luma {
  display: inline-flex;
  margin-bottom: 22px;
}
.lp-hero__proof {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ---------- opt-in card ---------- */
.lp-optin {
  position: relative;
  background: var(--color-brand-night);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: 0 30px 60px -30px rgba(27, 31, 59, 0.55);
}
.lp-optin__badge {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gradient-hero);
  color: var(--color-night-deep);
  margin-bottom: 16px;
}
.lp-optin__title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}
.lp-optin__sub {
  font-size: 15px;
  color: #c7ccdd;
  margin-bottom: 22px;
}
.lp-optin__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.lp-optin__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: #eaeef9;
}
.lp-optin__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient-hero);
}
.lp-optin__cta {
  width: 100%;
}
.lp-optin__foot {
  margin-top: 14px;
  font-size: 13px;
  color: #8e95ad;
  text-align: center;
}

/* ---------- forms ---------- */
.lp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-form__submit {
  margin-top: 4px;
}
.lp-form__note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.lp-form--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.lp-form--inline .lp-field {
  flex: 1 1 240px;
}
.lp-form--inline .lp-form__note {
  flex-basis: 100%;
}
.lp-form.is-success .lp-field, .lp-form.is-success .lp-form__submit, .lp-form.is-success > .lp-btn {
  display: none;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}
.lp-field input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-field input::placeholder {
  color: var(--color-text-muted);
}
.lp-field input:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(86, 233, 235, 0.18);
}
.lp-field input.is-invalid {
  border-color: #e5484d;
  box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.15);
}

/* opt-in card uses dark surface — lighten labels */
.lp-optin .lp-field__label {
  color: #aab0c6;
}

.lp-form__success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(0, 157, 160, 0.1);
  color: var(--color-text);
  border: 1px solid rgba(0, 157, 160, 0.3);
}
.is-success .lp-form__success {
  display: flex;
}
.lp-form__success strong {
  color: var(--color-teal-active);
}

.lp-optin .lp-form__success {
  color: #eaf7f7;
  background: rgba(0, 245, 233, 0.08);
  border-color: rgba(0, 245, 233, 0.25);
}

.lp-form--onDark .lp-form__success {
  color: #eaf7f7;
}

/* ---------- generic section ---------- */
.lp-section {
  padding: 84px 0;
}
.lp-section__title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 44px;
  max-width: 880px;
}
.lp-section__title span {
  color: var(--color-teal-active);
}
.lp-section__title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.lp-section__text {
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 0;
}

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

/* ---------- cards ---------- */
.lp-card {
  background: #fff;
  border: 1px solid rgba(217, 222, 232, 0.7);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -28px rgba(27, 31, 59, 0.35);
}
.lp-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.lp-card__title {
  font-size: 21px;
  line-height: 1.1;
  min-height: 2.2em;
  margin-bottom: 10px;
}
.lp-card__text {
  font-size: 15px;
}

/* ---------- outcomes ---------- */
.lp-outcomes .lp-grid {
  gap: 24px;
}
.lp-outcomes .lp-card {
  padding: 22px 34px 24px;
  text-align: center;
  border-color: rgba(217, 222, 232, 0.95);
  box-shadow: none;
}
.lp-outcomes .lp-card:hover {
  transform: none;
  box-shadow: none;
}
.lp-outcomes .lp-card__icon {
  display: none;
}
.lp-outcomes .lp-card__title {
  min-height: 0;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid rgba(86, 233, 235, 0.72);
  color: #6c737d;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}
.lp-outcomes .lp-card__text {
  color: #747b84;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

/* ---------- what you'll build ---------- */
.lp-build {
  background: var(--color-surface);
  border-radius: var(--radius);
}
.lp-build__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.lp-build__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-build__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(217, 222, 232, 0.7);
  border-radius: var(--radius-sm);
}
.lp-build__list li h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.lp-build__list li p {
  font-size: 15px;
}
.lp-build__num {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-teal-active);
  background: rgba(86, 233, 235, 0.12);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- formats ---------- */
.lp-format {
  background: #fff;
  border: 1px solid rgba(217, 222, 232, 0.8);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.lp-format__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.lp-format__title {
  font-size: 26px;
}
.lp-format__price {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-teal-active);
  white-space: nowrap;
}
.lp-format__for {
  font-size: 15px;
  margin-bottom: 20px;
}
.lp-format__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.lp-format__meta li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--color-text);
}
.lp-format__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal-active);
}
.lp-format__cta {
  margin-top: auto;
}

.lp-formats__note {
  margin-top: 26px;
  font-size: 15px;
  color: var(--color-text-secondary);
  text-align: center;
}
.lp-formats__note a {
  color: var(--color-teal-active);
  font-weight: 500;
}

/* ---------- people ---------- */
.lp-person {
  background: #fff;
  border: 1px solid rgba(217, 222, 232, 0.7);
  border-radius: var(--radius);
  padding: 28px;
}
.lp-person__name {
  font-size: 19px;
  margin-bottom: 4px;
}
.lp-person__role {
  font-size: 13px;
  color: var(--color-teal-active);
  font-weight: 500;
  margin-bottom: 12px;
}
.lp-person__bio {
  font-size: 14px;
}

/* ---------- lead magnet band ---------- */
.lp-magnet {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--color-brand-night);
  border-radius: var(--radius);
  padding: 52px;
}
.lp-magnet__title {
  color: #fff;
  font-size: 30px;
  margin: 16px 0 12px;
}
.lp-magnet__text {
  color: #c7ccdd;
  font-size: 16px;
}
.lp-magnet__text strong {
  color: #fff;
}
.lp-magnet__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.lp-magnet__action .lp-btn {
  font-size: 16px;
  padding: 16px 30px;
}
.lp-magnet__note {
  font-size: 13px;
  color: #8e95ad;
}

/* ---------- faq ---------- */
.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq__cat {
  list-style: none;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-teal-active);
  padding: 18px 4px 2px;
  margin-top: 6px;
}
.lp-faq__cat:first-child {
  margin-top: 0;
  padding-top: 0;
}
.lp-faq__item {
  background: #fff;
  border: 1px solid rgba(217, 222, 232, 0.8);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lp-faq__item.is-open .lp-faq__chev {
  transform: rotate(180deg);
}
.lp-faq__item.is-open .lp-faq__a {
  max-height: 320px;
  opacity: 1;
  padding-bottom: 22px;
}
.lp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}
.lp-faq__chev {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-text-secondary);
  border-bottom: 2px solid var(--color-text-secondary);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -4px;
}
.lp-faq__a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  transition: max-height 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
}
.lp-faq__a a {
  color: var(--color-teal-active);
}

/* ---------- final cta ---------- */
.lp-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-night-deep);
}
.lp-cta__glow {
  position: absolute;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 560px;
  background: var(--gradient-hero);
  filter: blur(140px);
  opacity: 0.28;
  pointer-events: none;
}
.lp-cta__inner {
  position: relative;
  text-align: center;
  padding: 90px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-cta__title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
.lp-cta__text {
  color: #c7ccdd;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 540px;
}
.lp-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- deliverables / included checklists ---------- */
.lp-deliver,
.lp-included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
}
.lp-deliver li,
.lp-included li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.45;
  padding: 4px 0;
}

.lp-included {
  grid-template-columns: repeat(2, 1fr);
}

.lp-deliver__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(86, 233, 235, 0.16);
  position: relative;
  margin-top: 1px;
}
.lp-deliver__check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--color-teal-active);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- guarantee / risk reversal ---------- */
.lp-guarantee {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid rgba(217, 222, 232, 0.8);
  border-radius: var(--radius);
  padding: 44px 48px;
}
.lp-guarantee__title {
  font-size: 30px;
  margin: 14px 0 12px;
}
.lp-guarantee__text {
  font-size: 16px;
  color: var(--color-text-secondary);
}
.lp-guarantee__text strong {
  color: var(--color-text);
}
.lp-guarantee__text a {
  color: var(--color-teal-active);
  font-weight: 500;
}
.lp-guarantee__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-guarantee__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

/* ---------- testimonials (video strip) ---------- */
.lp-vstrip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-stroke) transparent;
}

.lp-vcard {
  position: relative;
  flex: 0 0 248px;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-night-soft);
  scroll-snap-align: start;
  box-shadow: 0 18px 36px -26px rgba(27, 31, 59, 0.5);
}
.lp-vcard__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
.lp-vcard__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lp-vcard__play:hover .lp-vcard__thumb {
  transform: scale(1.05);
}
.lp-vcard__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(27, 31, 59, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.25s ease;
}
.lp-vcard__icon::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.lp-vcard__play:hover .lp-vcard__icon {
  background: var(--color-teal-active);
}
.lp-vcard__embed {
  position: absolute;
  inset: 0;
}
.lp-vcard__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lp-testimonials__hint {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ---------- location / map ---------- */
.lp-location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.lp-location__info .lp-section__title {
  margin-bottom: 20px;
}
.lp-location__info .lp-section__text {
  margin-bottom: 32px;
}

.lp-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.lp-location__block-title {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--color-text);
}
.lp-location__block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-location__block li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--color-text-secondary);
}
.lp-location__block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal-active);
}
.lp-location__block p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.lp-location__block p span {
  color: var(--color-text);
  font-weight: 500;
}

.lp-location__addr {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-text) !important;
  font-size: 16px !important;
}

.lp-location__maplink {
  margin-top: 6px;
  padding-left: 0;
}

.lp-location__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(217, 222, 232, 0.7);
}
.lp-location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
}

/* ---------- newsletter ---------- */
.lp-newsletter {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  background: var(--color-brand-night);
  border-radius: var(--radius);
  padding: 56px 48px;
  box-shadow: 0 30px 60px -34px rgba(27, 31, 59, 0.5);
}
.lp-newsletter::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 440px;
  background: var(--gradient-hero);
  filter: blur(140px);
  opacity: 0.25;
  pointer-events: none;
}
.lp-newsletter__copy {
  position: relative;
  max-width: 560px;
}
.lp-newsletter__copy .lp-tag {
  color: #c7ccdd;
  border-color: var(--color-teal-active);
  background: rgba(86, 233, 235, 0.08);
}
.lp-newsletter__title {
  position: relative;
  color: #fff;
  font-size: 30px;
  margin: 14px 0 12px;
}
.lp-newsletter__text {
  position: relative;
  color: #c7ccdd;
  font-size: 16px;
}
.lp-newsletter__embed {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.5);
}
.lp-newsletter__embed iframe {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 8px;
}

/* ---------- footer ---------- */
.lp-footer {
  background: var(--color-brand-night);
  color: #c7ccdd;
  padding: 48px 0 28px;
}
.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-footer__contact, .lp-footer__social {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
}
.lp-footer__contact a:hover {
  color: var(--color-teal);
}
.lp-footer__social {
  gap: 12px;
}
.lp-footer__bottom {
  padding-top: 20px;
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.lp-footer__legal {
  display: inline-flex;
  gap: 18px;
}
.lp-footer__legal a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.lp-footer__legal a:hover {
  color: var(--color-teal);
}

/* ---------- social icons ---------- */
.lp-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #c7ccdd;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.lp-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.lp-social:hover {
  color: var(--color-brand-night);
  background: var(--color-teal);
  border-color: var(--color-teal);
  transform: translateY(-2px);
}

/* ---------- reveal animation ----------
   Hidden state is gated under .lp-js (added by landing.js), so if
   JS never runs, nothing is hidden — content is always visible. */
.lp-js .lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-js .lp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lp-js .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-hero__title {
    font-size: 46px;
  }
  .lp-build__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-magnet {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px;
  }
  .lp-newsletter {
    padding: 36px;
  }
  .lp-location__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-deliver {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-guarantee {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px;
  }
  .lp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .lp-section {
    padding: 60px 0;
  }
  .lp-section__title {
    font-size: 30px;
    margin-bottom: 32px;
  }
  .lp-hero {
    padding: 56px 0 64px;
  }
  .lp-hero__title {
    font-size: 38px;
  }
  .lp-hero__text {
    font-size: 17px;
  }
  .lp-grid--2, .lp-grid--3 {
    grid-template-columns: 1fr;
  }
  .lp-deliver, .lp-included {
    grid-template-columns: 1fr;
  }
  .lp-location__grid {
    grid-template-columns: 1fr;
  }
  .lp-vcard {
    flex-basis: 210px;
  }
  .lp-cta__title {
    font-size: 30px;
  }
  .lp-header__cta {
    padding: 8px 10px;
  }
}
@media (max-width: 480px) {
  .lp-container {
    padding: 0 18px;
  }
  .lp-hero__title {
    font-size: 32px;
  }
  .lp-grid--4 {
    grid-template-columns: 1fr;
  }
  .lp-optin, .lp-format, .lp-build, .lp-magnet {
    padding: 26px;
  }
  .lp-form--inline {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-vcard {
    flex-basis: 76%;
  }
  .lp-logo__sub {
    display: none;
  }
}

/*# sourceMappingURL=landing.css.map */
