/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav__logo svg {
  width: 22px;
  height: 22px;
  color: #F5A623;
  flex-shrink: 0;
}

.nav__logo span {
  font-size: 1.375rem;
  font-weight: 900;
  color: #F5A623;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.938rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: #F5A623;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #F5A623;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: #e69500;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Mobile menu ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
}

.mobile-menu a:hover {
  color: #F5A623;
}

.mobile-menu .nav__cta {
  margin-top: 16px;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(170deg, #fffcf5 0%, #ffffff 50%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero__text {
  flex: 1;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c47f00;
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero h1 span {
  color: #F5A623;
}

.hero__sub {
  font-size: 1.188rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

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

.btn--primary {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn--secondary {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
}

.btn--secondary:hover {
  border-color: #F5A623;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.15);
}

.btn svg {
  width: 22px;
  height: 22px;
}

.hero__coming-soon {
  font-size: 0.813rem;
  color: #999;
}

.hero__visual {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__phone {
  width: 280px;
  height: 560px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  position: relative;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: #f5f2ec;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-ui-header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 34px 14px 8px;
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.phone-ui-header svg {
  flex-shrink: 0;
}

.phone-ui-map {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.phone-ui-map__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.phone-ui-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #F5A623;
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-ui-pin svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.phone-ui-pin--active {
  width: 30px;
  height: 30px;
  background: #1a1a1a;
  border-color: #F5A623;
  box-shadow: 0 0 0 5px rgba(245, 166, 35, 0.2), 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.phone-ui-pin--active svg {
  width: 15px;
  height: 15px;
}

.phone-ui-bottom {
  padding: 10px 14px 18px;
  background: #ffffff;
  flex-shrink: 0;
}

.phone-ui-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #F5A623;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 800;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.phone-ui-btn svg {
  flex-shrink: 0;
}

.hero__phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

/* ===== How It Works ===== */
.how {
  padding: 100px 0;
  background: #fafafa;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F5A623;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-desc {
  font-size: 1.125rem;
  color: #666;
  max-width: 520px;
  margin-bottom: 56px;
}

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

.step {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  color: #F5A623;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 14px;
  margin-bottom: 24px;
}

.step__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F5A623, #ffc75f);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step__icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.step h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.step p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* ===== Pricing ===== */
.pricing {
  padding: 100px 0;
  background: #ffffff;
}

.pricing__card {
  max-width: 560px;
  background: #fafafa;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid #f0f0f0;
}

.pricing__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.pricing__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.pricing__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing__item-label {
  font-size: 1rem;
  color: #555;
}

.pricing__item-label small {
  display: block;
  font-size: 0.813rem;
  color: #999;
  margin-top: 2px;
}

.pricing__item-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
}

.pricing__item--highlight .pricing__item-price {
  color: #F5A623;
}

.pricing__note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 12px;
  font-size: 0.938rem;
  font-weight: 600;
  color: #c47f00;
}

.pricing__note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== Stations / CTA ===== */
.stations {
  padding: 100px 0;
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

.stations .section-label {
  color: #F5A623;
}

.stations .section-title {
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stations__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 40px;
}

.stations__map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stations__stat {
  text-align: center;
}

.stations__stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F5A623;
}

.stations__stat-label {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.stations .btn--primary {
  background: #F5A623;
  color: #1a1a1a;
  margin-top: 40px;
}

.stations .btn--primary:hover {
  background: #e69500;
}

/* ===== Apply for Station ===== */
.apply {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.apply::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.apply::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.apply__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.apply__info {
  flex: 1;
  max-width: 440px;
}

.apply__desc {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.apply__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  color: #555;
}

.apply__benefit svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.apply__form-wrap {
  flex: 1;
  max-width: 480px;
  width: 100%;
}

.apply__form {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 36px;
}

.apply__field {
  margin-bottom: 18px;
}

.apply__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.apply__req {
  color: #F5A623;
}

.apply__field input,
.apply__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.938rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.apply__field input:focus,
.apply__field textarea:focus {
  outline: none;
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.apply__field input::placeholder,
.apply__field textarea::placeholder {
  color: #bbb;
}

.apply__field textarea {
  resize: vertical;
  min-height: 80px;
}

.apply__field input.error,
.apply__field textarea.error {
  border-color: #EF4444;
}

.apply__error {
  display: block;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 4px;
  min-height: 16px;
}

.btn--apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #F5A623;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.btn--apply:hover {
  background: #e69500;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.25);
}

.btn--apply:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn--apply svg {
  width: 18px;
  height: 18px;
}

.apply__success {
  text-align: center;
  padding: 48px 32px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
}

.apply__success h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 16px 0 8px;
  color: #1a1a1a;
}

.apply__success p {
  font-size: 1rem;
  color: #666;
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 32px;
  background: #111111;
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.footer__logo svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.footer__logo span {
  font-size: 1.125rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer__columns {
  display: flex;
  gap: 64px;
}

.footer__column h4 {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.footer__column a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__column a:hover {
  color: #F5A623;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.813rem;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.footer__socials a:hover {
  background: rgba(245, 166, 35, 0.2);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__coming-soon {
    text-align: center;
  }

  .hero__visual {
    flex: none;
  }

  .hero__phone {
    width: 220px;
    height: 440px;
    border-radius: 32px;
    padding: 10px;
  }

  .hero__phone-screen {
    border-radius: 24px;
  }

  .phone-ui-header {
    padding: 28px 10px 6px;
    font-size: 11px;
  }

  .phone-ui-pin {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .phone-ui-pin svg {
    width: 9px;
    height: 9px;
  }

  .phone-ui-pin--active {
    width: 24px;
    height: 24px;
  }

  .phone-ui-pin--active svg {
    width: 12px;
    height: 12px;
  }

  .phone-ui-bottom {
    padding: 8px 10px 14px;
  }

  .phone-ui-btn {
    font-size: 10px;
    padding: 8px;
    border-radius: 10px;
  }

  .hero__phone-notch {
    width: 100px;
    height: 24px;
    top: 10px;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .apply__inner {
    flex-direction: column;
    gap: 40px;
  }

  .apply__info {
    max-width: 100%;
    text-align: center;
  }

  .apply__benefits {
    align-items: center;
  }

  .apply__form-wrap {
    max-width: 100%;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero h1 {
    font-size: 2.125rem;
  }

  .hero__sub {
    font-size: 1.063rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.938rem;
  }

  .how,
  .pricing,
  .stations,
  .apply {
    padding: 72px 0;
  }

  .pricing__card {
    padding: 32px 24px;
  }

  .stations__map {
    gap: 32px;
  }

  .footer__columns {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hero__phone {
    width: 180px;
    height: 360px;
    border-radius: 28px;
    padding: 8px;
  }

  .hero__phone-screen {
    border-radius: 22px;
  }

  .phone-ui-header {
    padding: 24px 8px 4px;
    font-size: 10px;
  }

  .phone-ui-pin {
    width: 16px;
    height: 16px;
  }

  .phone-ui-pin svg {
    width: 8px;
    height: 8px;
  }

  .phone-ui-pin--active {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .phone-ui-pin--active svg {
    width: 10px;
    height: 10px;
  }

  .phone-ui-bottom {
    padding: 6px 8px 12px;
  }

  .phone-ui-btn {
    font-size: 9px;
    padding: 6px;
    border-radius: 8px;
  }

  .footer__columns {
    flex-direction: column;
    gap: 32px;
  }
}
