/* =========================================================
   LATGO LANDING PAGE — V1
   Brand colors:
   Navy  #06184A
   Green #B0FC8F
   White #FFFFFF
   ========================================================= */

:root {
  --navy: #06184A;
  --navy-2: #0B245F;
  --navy-3: #102E73;
  --green: #B0FC8F;
  --green-strong: #98F56E;
  --white: #FFFFFF;

  --text: #10204A;
  --muted: #61708D;
  --soft: #F4F8F6;
  --soft-green: #F2FFEC;
  --line: rgba(6, 24, 74, 0.10);

  --shadow-sm: 0 10px 30px rgba(6, 24, 74, 0.08);
  --shadow-md: 0 25px 70px rgba(6, 24, 74, 0.14);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;

  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow-dark {
  color: var(--navy-3);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.35rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.35rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 10px 25px rgba(176, 252, 143, 0.16);
}

.btn-primary:hover {
  background: var(--green-strong);
  box-shadow: 0 14px 30px rgba(176, 252, 143, 0.22);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.btn-full {
  width: 100%;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-lat {
  color: var(--white);
}

.brand-go {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links > a:not(.btn) {
  transition: color 180ms ease;
}

.nav-links > a:not(.btn):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  border-radius: 5px;
  background: var(--white);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  overflow: hidden;
  padding: 150px 0 95px;
  background:
    radial-gradient(circle at 80% 15%, rgba(176, 252, 143, 0.08), transparent 25%),
    linear-gradient(135deg, #06184A 0%, #081F5B 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  color: var(--white);
}

.hero-copy h1 .latgo-title {
  display: inline-block;
  white-space: nowrap;
}

.hero-copy h1 .latgo-lat {
  color: #FFFFFF !important;
}

.hero-copy h1 .latgo-go {
  color: #B0FC8F !important;
}

.hero-subtitle {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
}

.blob,
.cta-blob {
  position: absolute;
  border-radius: 38% 62% 52% 48% / 52% 38% 62% 48%;
  background: linear-gradient(135deg, rgba(176, 252, 143, 0.8), rgba(176, 252, 143, 0.12));
  filter: blur(0.2px);
}

.blob-a {
  top: 60px;
  right: -45px;
  width: 180px;
  height: 180px;
  transform: rotate(24deg);
}

.blob-b {
  bottom: -110px;
  left: -60px;
  width: 250px;
  height: 250px;
  opacity: 0.52;
}

.blob-c {
  top: 150px;
  left: 53%;
  width: 85px;
  height: 85px;
  opacity: 0.42;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.phone-shadow {
  position: absolute;
  right: 14%;
  bottom: 26px;
  width: 320px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(22px);
}

.phone {
  position: absolute;
  z-index: 4;
  top: 10px;
  right: 10%;
  width: 310px;
  height: 620px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 48px;
  background: #071136;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.34),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  transform: rotate(3deg);
}

.phone-top {
  position: absolute;
  z-index: 5;
  top: 21px;
  left: 50%;
  width: 104px;
  height: 24px;
  border-radius: 20px;
  background: #030A22;
  transform: translateX(-50%);
}

.phone-top span {
  position: absolute;
  top: 8px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1E315F;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 64px 20px 22px;
  border-radius: 37px;
  background:
    radial-gradient(circle at 83% 5%, rgba(176, 252, 143, 0.24), transparent 22%),
    linear-gradient(180deg, #102B70 0%, #07194F 100%);
}

.mobile-brand {
  margin-bottom: 32px;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.app-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.app-search-card {
  padding: 20px;
}

.app-label {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.route-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-field small {
  display: block;
  color: #8992A8;
  font-size: 0.7rem;
}

.route-field strong {
  color: var(--navy);
  font-size: 0.94rem;
}

.route-icon {
  color: var(--green-strong);
  font-size: 0.76rem;
}

.route-icon-end {
  color: var(--navy);
}

.route-line {
  width: 1px;
  height: 18px;
  margin: 4px 0 4px 5px;
  background: #CFD5E2;
}

.app-button {
  width: 100%;
  margin-top: 20px;
  padding: 13px 14px;
  border: 0;
  border-radius: 11px;
  color: var(--navy);
  background: var(--green);
  font-weight: 700;
}

.mini-trip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.mini-trip small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.mini-trip strong {
  font-size: 0.81rem;
}

.mini-trip > span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: var(--white);
  background: rgba(10, 33, 88, 0.82);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.floating-card > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: var(--green);
  font-weight: 700;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
}

.floating-card strong {
  font-size: 0.78rem;
}

.floating-card-a {
  top: 112px;
  left: 0;
}

.floating-card-b {
  right: -5px;
  bottom: 72px;
}

/* =========================================================
   SECTOR CARDS
   ========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 18px;
  color: var(--navy);
  background: var(--green);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   SOLUTION
   ========================================================= */

.solution-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 85px;
}

.solution-copy h2 {
  max-width: 630px;
}

.solution-points {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.solution-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.solution-point > span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.solution-point h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.solution-point p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution-visual {
  position: relative;
}

.solution-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -55px;
  right: -45px;
  width: 220px;
  height: 220px;
  border-radius: 46% 54% 65% 35% / 43% 35% 65% 57%;
  background: linear-gradient(135deg, var(--green), rgba(176, 252, 143, 0.06));
  opacity: 0.55;
}

.dashboard {
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 30px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.dashboard-brand {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.dashboard-status {
  padding: 7px 10px;
  border-radius: 100px;
  color: var(--navy);
  background: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
}

.dashboard-title {
  margin-bottom: 18px;
}

.dashboard-title small,
.dashboard-title strong {
  display: block;
}

.dashboard-title small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.dashboard-title strong {
  font-size: 1.3rem;
}

.trip-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.trip-logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--navy);
  background: var(--green);
  font-size: 0.73rem;
  font-weight: 700;
}

.trip-info strong,
.trip-info span {
  display: block;
}

.trip-info strong {
  font-size: 0.9rem;
}

.trip-info span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.trip-price {
  color: var(--green);
}

.dashboard-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-footer span,
.dashboard-footer strong {
  display: block;
}

.dashboard-footer span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.dashboard-footer strong {
  font-size: 0.9rem;
}

.dashboard-footer > div:last-child {
  text-align: right;
}

.dashboard-arrow {
  color: var(--green);
}

/* =========================================================
   AUDIENCE
   ========================================================= */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.audience-card {
  min-height: 520px;
  padding: 48px;
  border-radius: var(--radius-lg);
}

.audience-passenger {
  border: 1px solid var(--line);
  background: var(--soft-green);
}

.audience-carrier {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(176, 252, 143, 0.13), transparent 25%),
    var(--navy);
}

.audience-card h3 {
  max-width: 470px;
  margin: 18px 0 26px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.audience-carrier h3 {
  color: var(--white);
}

.card-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 100px;
  color: var(--navy);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card-label-light {
  color: var(--navy);
}

.audience-intro {
  max-width: 520px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.67);
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

.check-list-light li {
  color: rgba(255, 255, 255, 0.77);
}

.check-list-light li::before {
  color: var(--green);
}

/* =========================================================
   STEPS
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.step {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.step-number {
  display: block;
  margin-bottom: 35px;
  color: rgba(6, 24, 74, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  color: var(--navy);
  background: var(--green);
  font-size: 1.25rem;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.step-arrow {
  color: var(--navy);
  font-size: 1.8rem;
  opacity: 0.3;
}

/* =========================================================
   CTA / FORM
   ========================================================= */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--navy);
}

.cta-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.cta-copy {
  padding-top: 32px;
}

.cta-copy h2 {
  max-width: 570px;
  color: var(--white);
}

.cta-copy > p {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.email-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
}

.cta-blob-a {
  top: -100px;
  right: -80px;
  width: 270px;
  height: 270px;
  opacity: 0.3;
}

.cta-blob-b {
  bottom: -110px;
  left: -70px;
  width: 290px;
  height: 290px;
  opacity: 0.18;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.field-group {
  margin-bottom: 18px;
}

.field-group label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.87rem;
  font-weight: 500;
}

.field-group label span {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  outline: none;
  color: var(--navy);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-group input,
.field-group select {
  height: 52px;
  padding: 0 15px;
}

.field-group textarea {
  min-height: 110px;
  padding: 13px 15px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(176, 252, 143, 0.16);
}

.form-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--green);
  font-size: 0.85rem;
  text-align: center;
}


/* =========================================================
   PRIVACY CHECKBOX + LEGAL PAGE
   ========================================================= */

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.privacy-check a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-header {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(176, 252, 143, 0.08), transparent 25%),
    linear-gradient(135deg, #06184A 0%, #081F5B 100%);
}

.legal-header .brand {
  margin-bottom: 34px;
}

.legal-header h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.legal-header p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.legal-content {
  padding: 80px 0 100px;
  background: var(--white);
}

.legal-shell {
  width: min(100%, 860px);
  margin-inline: auto;
}

.legal-card {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-card section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card a {
  color: var(--navy-3);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft-green);
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-back {
  display: inline-flex;
  margin-top: 30px;
}

@media (max-width: 720px) {
  .legal-header {
    padding: 110px 0 55px;
  }

  .legal-content {
    padding: 55px 0 70px;
  }

  .legal-card {
    padding: 26px 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 68px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  background: #041137;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 55px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 340px;
  margin-bottom: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.83rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links > a:not(.btn) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone {
    right: 50%;
    transform: translateX(50%) rotate(2deg);
  }

  .phone-shadow {
    right: 50%;
    transform: translateX(50%);
  }

  .floating-card-a {
    left: 8%;
  }

  .floating-card-b {
    right: 8%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 18px;
  }

  .feature-card .icon-box {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .feature-card h3 {
    margin-top: 4px;
  }

  .solution-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .solution-visual {
    max-width: 700px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 74px;
  }

  .brand {
    font-size: 1.75rem;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

  .nav-links {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    display: flex;
    width: min(84vw, 340px);
    height: 100vh;
    padding: 105px 28px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    color: var(--white);
    background: #041137;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > a:not(.btn) {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links .btn {
    margin-top: 14px;
  }

  .hero {
    padding: 122px 0 66px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 525px;
  }

  .phone {
    width: 260px;
    height: 520px;
    border-radius: 40px;
  }

  .phone-screen {
    padding: 57px 16px 18px;
    border-radius: 31px;
  }

  .phone-top {
    top: 18px;
    width: 88px;
    height: 21px;
  }

  .mobile-brand {
    margin-bottom: 23px;
  }

  .app-search-card {
    padding: 16px;
  }

  .floating-card {
    display: none;
  }

  .phone-shadow {
    width: 255px;
  }

  .feature-card {
    display: block;
    padding: 28px;
  }

  .feature-card .icon-box {
    margin-bottom: 24px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .solution-grid {
    gap: 42px;
  }

  .dashboard {
    padding: 18px;
    border-radius: 22px;
  }

  .trip-row {
    grid-template-columns: 42px 1fr;
  }

  .trip-price {
    grid-column: 2;
  }

  .audience-card {
    padding: 32px 25px;
    border-radius: 26px;
  }

  .steps {
    gap: 15px;
  }

  .step {
    padding: 28px;
  }

  .cta-section {
    padding: 76px 0;
  }

  .cta-copy {
    padding-top: 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

/* Small phones */
@media (max-width: 410px) {
  .phone {
    width: 235px;
    height: 480px;
  }

  .hero-visual {
    min-height: 485px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   PRIVACY PAGE REFINEMENTS V2
   ========================================================= */

.legal-topbar {
  background: #041137;
  padding: 16px 0;
}

.legal-topbar-inner {
  display: flex;
  align-items: center;
}

.legal-topbar .brand {
  margin: 0;
}

.legal-topbar .brand-lat {
  color: var(--white);
}

.legal-topbar .brand-go {
  color: var(--green);
}

.legal-header {
  padding: 46px 0 22px;
  background: var(--white);
}

.legal-header h1 {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.legal-header p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-content {
  padding: 28px 0 90px;
}

.legal-card {
  padding: 38px;
  border-radius: 24px;
}

.legal-card h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.legal-card p,
.legal-card li {
  font-size: 1rem;
  line-height: 1.72;
}

.legal-card ul {
  margin-top: 10px;
  margin-bottom: 0;
}

.legal-meta {
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .legal-topbar {
    padding: 14px 0;
  }

  .legal-header {
    padding: 34px 0 14px;
  }

  .legal-header h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .legal-header p {
    font-size: 0.98rem;
  }

  .legal-content {
    padding: 18px 0 60px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .legal-card h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .legal-card p,
  .legal-card li {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}
