:root {
  --fint-orange: #d87416;
  --fint-orange-dark: #b95f10;
  --fint-ink: #171717;
  --fint-muted: #666666;
  --fint-soft: #fff6ee;
  --fint-line: #f0e4da;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--fint-ink);
  background: #ffffff;
}

a {
  color: inherit;
}

.plan-page {
  overflow: hidden;
}

.plan-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 116, 22, 0.12);
}

.plan-nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.plan-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--fint-orange);
}

.plan-logo img {
  width: 54px;
  height: auto;
  display: block;
}

.plan-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #303030;
  font-size: 14px;
  font-weight: 600;
}

.plan-nav-links a {
  text-decoration: none;
}

.plan-nav-links a:hover {
  color: var(--fint-orange);
}

.plan-hero {
  position: relative;
  min-height: 680px;
  padding: 86px 0 110px;
  background:
    radial-gradient(circle at 85% 18%, rgba(216, 116, 22, 0.13), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 66%, var(--fint-soft) 66%, var(--fint-soft) 100%);
}

.plan-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 62px;
  height: 190px;
  background: var(--fint-orange);
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  transform: rotate(-2deg);
  z-index: 0;
}

.plan-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 60px;
}

.plan-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--fint-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--fint-orange);
}

.plan-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--fint-orange);
}

.plan-hero-copy {
  max-width: 600px;
  margin: 26px 0 0;
  font-size: 20px;
  line-height: 1.65;
  color: #2a2a2a;
}

.plan-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.plan-button {
  min-height: 48px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 2px solid var(--fint-orange);
  background: var(--fint-orange);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.plan-button:hover {
  transform: translateY(-2px);
  background: var(--fint-orange-dark);
  border-color: var(--fint-orange-dark);
}

.plan-button.is-secondary {
  background: #ffffff;
  color: var(--fint-orange);
}

.plan-button.is-secondary:hover {
  background: var(--fint-orange);
  color: #ffffff;
}

.plan-visual {
  position: relative;
  min-height: 460px;
}

.plan-preview {
  width: min(520px, 100%);
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
  background: #ffffff;
  transform: rotate(1.5deg);
}

.plan-preview img {
  width: 100%;
  display: block;
}

.plan-preview-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.plan-float-card {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(310px, 68%);
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.13);
}

.plan-float-card strong {
  display: block;
  color: var(--fint-orange);
  font-size: 28px;
  line-height: 1;
}

.plan-float-card span {
  display: block;
  margin-top: 9px;
  color: #333333;
  font-size: 14px;
  line-height: 1.45;
}

.plan-main {
  background: #ffffff;
}

.plan-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.plan-section.compact {
  padding-top: 54px;
}

.plan-section h2 {
  margin: 0 0 18px;
  color: var(--fint-orange);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}

.plan-section-lead {
  max-width: 820px;
  margin: 0;
  color: #333333;
  font-size: 19px;
  line-height: 1.7;
}

.plan-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--fint-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.plan-card-number {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fint-soft);
  color: var(--fint-orange);
  font-weight: 900;
}

.plan-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.plan-card p {
  margin: 0;
  color: var(--fint-muted);
  line-height: 1.65;
}

.plan-band {
  background: var(--fint-soft);
}

.plan-columns {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: start;
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.plan-list li {
  position: relative;
  padding-left: 32px;
  color: #2c2c2c;
  font-size: 17px;
  line-height: 1.6;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fint-orange);
}

.plan-price {
  margin-top: 28px;
  padding: 28px;
  border-radius: 8px;
  background: #171717;
  color: #ffffff;
}

.plan-price.is-light {
  background: #ffffff;
  color: var(--fint-ink);
  border: 1px solid var(--fint-line);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.plan-price.is-light span {
  color: var(--fint-orange);
}

.plan-price.is-light strong {
  color: var(--fint-ink);
}

.plan-price span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-price strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
}

.plan-cta {
  position: relative;
  padding: 84px 0;
  background: var(--fint-orange);
  color: #ffffff;
}

.plan-cta::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: -95px;
  height: 150px;
  background: #ffffff;
  border-radius: 0 0 50% 50% / 0 0 45% 45%;
}

.plan-cta-inner {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.plan-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
}

.plan-cta p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 19px;
  line-height: 1.65;
}

.plan-cta .plan-actions {
  justify-content: center;
}

.plan-cta .plan-button {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--fint-orange);
}

.plan-cta .plan-button.is-secondary {
  background: transparent;
  color: #ffffff;
}

.plan-cta .plan-button:hover {
  background: #171717;
  border-color: #171717;
  color: #ffffff;
}

.plan-footer {
  padding: 34px 20px;
  background: #171717;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 920px) {
  .plan-nav {
    min-height: 68px;
  }

  .plan-nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .plan-hero {
    min-height: auto;
    padding: 62px 0 90px;
  }

  .plan-hero-inner,
  .plan-columns {
    grid-template-columns: 1fr;
  }

  .plan-visual {
    min-height: 380px;
  }

  .plan-preview {
    margin: 0 auto;
  }

  .plan-float-card {
    left: 20px;
  }

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

@media (max-width: 620px) {
  .plan-nav {
    width: min(100% - 26px, 1160px);
  }

  .plan-logo span {
    display: none;
  }

  .plan-nav-links {
    gap: 12px;
  }

  .plan-nav-links a:nth-child(2) {
    display: none;
  }

  .plan-hero-inner,
  .plan-section,
  .plan-cta-inner {
    width: min(100% - 30px, 1160px);
  }

  .plan-hero h1 {
    font-size: 42px;
  }

  .plan-hero-copy,
  .plan-section-lead,
  .plan-cta p {
    font-size: 17px;
  }

  .plan-actions {
    flex-direction: column;
  }

  .plan-button {
    width: 100%;
  }

  .plan-float-card {
    width: calc(100% - 40px);
    left: 20px;
    bottom: 0;
  }

  .plan-section {
    padding: 62px 0;
  }
}
