:root {
  --text: #1a1a1a;
  --text-mid: #555;
  --text-light: #888;
  --bg: #fff;
  --bg-warm: #faf7f4;
  --bg-warmer: #f9f1ec;
  --border: #ede8e3;
  --border-warm: #e7d7cf;
  --accent: #c96b4a;
  --accent-soft: #9f6a57;
  --accent-dark: #8f422c;
  --blue: #1a3d52;
  --green: #4f9d69;
  --red: #b85b52;
  --shadow: 0 22px 48px rgba(56, 34, 21, 0.09);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

body,
button,
input,
select {
  font-family: 'Montserrat', Arial, sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p + p {
  margin-top: 16px;
}

strong {
  color: var(--text);
  font-weight: 700;
}

.container,
.hero-inner,
.sticky-nav-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.sticky-nav-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 56px;
  overflow-x: auto;
}

.sticky-nav a {
  color: var(--text-mid);
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.82;
}

.sticky-nav a:hover {
  color: var(--accent);
  opacity: 1;
  text-decoration: none;
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
  overflow: hidden;
  padding: 58px 0 70px;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, #f5ede4 0%, rgba(245, 237, 228, 0) 70%);
  border-radius: 50%;
  content: '';
  height: 600px;
  pointer-events: none;
  position: absolute;
  right: -160px;
  top: -170px;
  width: 600px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) 410px;
  position: relative;
  z-index: 1;
}

.hero-tag,
.section-label {
  align-items: center;
  color: var(--accent-soft);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-tag::before,
.section-label::before {
  background: var(--accent);
  content: '';
  display: block;
  height: 1px;
  width: 32px;
}

.hero-title,
.section-title {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 52px);
  max-width: 760px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 24px;
}

.hero-title em,
.section-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-kicker {
  color: var(--blue);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 18px;
  max-width: 720px;
}

.hero-desc {
  color: var(--text-mid);
  font-size: clamp(18px, 2.1vw, 22px);
  margin: 16px 0 30px;
  max-width: 720px;
}

.hero-right {
  position: relative;
}

.hero-right img,
.author-photo img {
  aspect-ratio: 1;
  border: 10px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
  width: 100%;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-warm);
  box-shadow: 0 18px 42px rgba(56, 34, 21, 0.12);
  display: grid;
  gap: 14px;
  margin: -42px auto 0;
  padding: 22px;
  position: relative;
  width: calc(100% - 34px);
}

.hero-card div {
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
}

.hero-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-card strong {
  font-size: 14px;
}

.hero-card span {
  color: var(--text-mid);
  font-size: 14px;
  text-align: right;
}

.btn,
.calc-btn {
  background: var(--accent);
  border: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  padding: 17px 28px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn:hover,
.calc-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 34px rgba(143, 66, 44, 0.22);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-large {
  font-size: 19px;
  padding: 20px 34px;
}

.price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.hero-price {
  margin: 0 0 24px;
}

.price-old {
  color: var(--text-light);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}

.price-new {
  color: var(--accent);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-timer-caption,
.timer-note,
.price-note,
.calc-hint,
.calc-disclaimer,
.small-link {
  color: var(--text-light);
  font-size: 14px;
}

.hero-timer-caption {
  margin-top: 26px;
}

@keyframes timer-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

.timer-wrap {
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(26, 61, 82, 0.28);
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0;
  overflow: hidden;
  padding: 4px;
}

.timer-cell {
  background: rgba(255,255,255,0.07);
  border: none;
  padding: 20px 12px;
  text-align: center;
}

.timer-cell__num {
  animation: timer-pulse 1s ease-in-out infinite;
  color: #fff;
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 18px rgba(201, 107, 74, 0.55);
}

.timer-cell__label {
  color: rgba(255,255,255,0.55);
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-top: 8px;
  text-transform: uppercase;
}

.timer-expired {
  color: var(--text-mid);
  font-size: 20px;
  font-weight: 700;
  grid-column: 1 / -1;
  text-align: center;
}

.section {
  padding: 82px 0;
}

.section-warm {
  background: var(--bg-warm);
}

.two-col {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 260px minmax(0, 1fr);
}

.author-photo {
  text-align: center;
}

.author-photo a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}

.callout {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-left: 5px solid var(--accent);
  box-shadow: 0 14px 32px rgba(56, 34, 21, 0.06);
  color: var(--text-mid);
  margin: 28px 0;
  padding: 22px 26px;
}

.callout-red {
  border-left-color: var(--red);
}

.social-proof-bar {
  background:
    linear-gradient(135deg, rgba(26, 61, 82, 0.96), rgba(20, 48, 66, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(201, 107, 74, 0.3), transparent 42%);
  color: #fff;
  padding: 42px 20px;
}

.social-proof-inner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(28px, 4vw, 42px);
  position: relative;
  text-align: center;
}

.social-proof-mark {
  color: #e8b5a2;
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 800;
  left: 24px;
  line-height: 0.8;
  opacity: 0.35;
  position: absolute;
  top: 18px;
}

.social-proof-inner p {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.social-proof-inner span {
  color: #e8b5a2;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.18em;
  margin-top: 22px;
  text-transform: uppercase;
}

.social-proof-inner span::before {
  background: #e8b5a2;
  content: '';
  display: block;
  height: 1px;
  margin-top: 11px;
  width: 34px;
}

.calc-section {
  background: var(--bg-warmer);
}

.calc-box,
.price-box,
.guarantee-box,
.author-box {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
}

.calc-box {
  margin: 20px auto 0;
  max-width: 760px;
}

.calc-box h3,
.author-box h3,
.guarantee-box h3,
.program-card h3,
.recommend-card h3,
.for-who-card h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.calc-desc {
  color: var(--text-mid);
  margin: 12px 0 26px;
}

.calc-field {
  margin-bottom: 20px;
}

.calc-field label {
  color: var(--text);
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.calc-field input,
.calc-field select {
  appearance: none;
  background: var(--bg-warm);
  border: 1px solid var(--border-warm);
  color: var(--text);
  font-size: 17px;
  margin-top: 10px;
  outline: none;
  padding: 14px 16px;
  width: 100%;
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 107, 74, 0.12);
}

.calc-btn {
  width: 100%;
}

.calc-result {
  background: var(--bg-warm);
  border: 1px solid var(--border-warm);
  display: none;
  margin-top: 28px;
  padding: 24px;
}

.calc-result-row {
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 10px 0;
}

.calc-result-row strong {
  color: var(--accent);
  white-space: nowrap;
}

.calc-result-total {
  border-top: 2px solid var(--border-warm);
  margin-top: 12px;
  padding-top: 10px;
}

.calc-comment {
  margin-bottom: 0;
}

.recommend-grid,
.program-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recommend-card,
.program-card,
.for-who-card,
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.recommend-card,
.program-card {
  padding: 26px;
}

.recommend-card:hover,
.program-card:hover,
.for-who-card:hover,
.faq-item:hover {
  border-color: #dec7ba;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.recommend-card span,
.program-card span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.recommend-card p,
.program-card p,
.author-box p,
.guarantee-box p {
  color: var(--text-mid);
  font-size: 16px;
  margin-top: 10px;
}

.program-card {
  border-top: 4px solid var(--blue);
}

.for-who-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.for-who-card {
  padding: 30px;
}

.for-who-card.positive {
  border-top: 5px solid var(--green);
}

.for-who-card.negative {
  border-top: 5px solid var(--red);
}

.for-who-card ul,
.check-list {
  list-style: none;
  margin-top: 18px;
}

.for-who-card li,
.check-list li {
  color: var(--text-mid);
  padding: 8px 0 8px 26px;
  position: relative;
}

.for-who-card li::before,
.check-list li::before {
  background: var(--accent);
  border-radius: 50%;
  content: '';
  height: 8px;
  left: 0;
  position: absolute;
  top: 19px;
  width: 8px;
}

.positive li::before,
.check-list li::before {
  background: var(--green);
}

.negative li::before {
  background: var(--red);
}

.author-box {
  align-items: flex-start;
  display: grid;
  gap: 34px;
  grid-template-columns: 160px minmax(0, 1fr);
}

.author-box img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  width: 160px;
}

.guarantee-box {
  border-left: 5px solid var(--green);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-q {
  align-items: center;
  background: #fff;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  width: 100%;
}

.faq-q span {
  color: var(--accent);
  font-size: 24px;
  transition: transform 0.25s;
}

.faq-item.open .faq-q span {
  transform: rotate(180deg);
}

.faq-a {
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 22px 22px;
}

.pricing-section {
  background: var(--bg-warmer);
  text-align: center;
}

.pricing-section .section-label,
.pricing-section .section-label::before {
  justify-content: center;
}

.pricing-support-wrap {
  margin-top: 40px;
  padding-bottom: 10px;
}

.support-callout {
  background: linear-gradient(135deg, var(--blue) 0%, #1f4d6a 100%);
  box-shadow: 0 24px 60px rgba(26, 61, 82, 0.22);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.support-callout__icon {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}

.support-callout__title {
  color: #fff;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}

.support-callout__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.support-callout__btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  display: inline-block;
  margin-top: 26px;
}

.support-callout__btn:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.price-box {
  margin: 30px auto 0;
  max-width: 620px;
  text-align: center;
}

.price-box .price-row {
  justify-content: center;
  margin: 10px 0 16px;
}

.price-box__title {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-box .btn {
  margin-top: 24px;
}

.packages-grid {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  text-align: left;
}

.package-card {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  box-shadow: 0 16px 36px rgba(56, 34, 21, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.package-card:hover {
  border-color: #dec7ba;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.package-card-featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(201, 107, 74, 0.14);
}

.package-card-dark {
  border-color: var(--blue);
}

.package-badge {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  left: 22px;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  position: absolute;
  text-transform: uppercase;
  top: -16px;
}

.package-card-dark .package-badge {
  background: var(--blue);
}

.package-head {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 30px 24px 24px;
}

.package-card-featured .package-head {
  background: #fff7f2;
}

.package-card-dark .package-head {
  background: #f0f4f8;
}

.package-head h3 {
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 8px;
}

.package-date,
.package-note {
  color: var(--text-mid);
  font-size: 14px;
  margin-top: 10px;
}

.package-price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.package-old {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.package-price {
  color: var(--accent);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.package-card-dark .package-price {
  color: var(--blue);
}

.package-features {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 24px;
}

.package-features li {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}

.package-features li::before {
  background: var(--accent);
  border-radius: 50%;
  content: '';
  height: 8px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 8px;
}

.package-card-dark .package-features li::before {
  background: var(--blue);
}

.package-features strong {
  color: var(--text);
}

.package-btn {
  display: block;
  margin: 0 24px 24px;
}

.package-btn-dark {
  background: var(--blue);
}

.package-btn-dark:hover {
  background: #102f42;
  box-shadow: 0 18px 34px rgba(26, 61, 82, 0.24);
}

.final-section {
  text-align: center;
}

.final-section p {
  color: var(--text-mid);
  margin-bottom: 28px;
}

.sticky-cta {
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border-warm);
  bottom: 0;
  box-shadow: 0 -14px 34px rgba(56, 34, 21, 0.09);
  left: 0;
  opacity: 0;
  padding: 12px 16px;
  pointer-events: none;
  position: fixed;
  right: 0;
  transition: opacity 0.25s ease;
  z-index: 99;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .btn {
  display: block;
  margin: 0 auto;
  max-width: 480px;
}

.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  padding: 48px 20px 96px;
}

.footer a {
  color: #e8b5a2;
}

.footer-inner {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.footer-details {
  margin-bottom: 24px;
  text-align: left;
}

.footer-details summary {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 13px;
  text-align: center;
}

.footer-details p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 12px;
}

.footer-top {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-logo span {
  color: #fff;
  font-weight: 700;
}

.footer-logo a {
  display: block;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer-social a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 24px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-legal,
.footer-disclaimer {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.footer-disclaimer {
  max-width: 560px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-inner,
  .two-col,
  .author-box {
    grid-template-columns: 1fr;
  }

  .hero-right {
    max-width: 420px;
  }

  .recommend-grid,
  .program-grid,
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .container,
  .hero-inner,
  .sticky-nav-inner {
    width: min(100% - 28px, 1100px);
  }

  .sticky-nav-inner {
    gap: 18px;
  }

  .sticky-nav a {
    font-size: 14px;
  }

  .hero,
  .section {
    padding: 44px 0;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .hero-kicker {
    font-size: 16px;
    margin-top: 12px;
  }

  .hero-desc {
    font-size: 16px;
    margin: 12px 0 20px;
  }

  .timer-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    margin: 16px 0;
    padding: 3px;
  }

  .timer-cell {
    padding: 12px 4px;
  }

  .timer-cell__num {
    font-size: clamp(20px, 6vw, 28px);
  }

  .timer-cell__label {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .recommend-grid,
  .program-grid,
  .packages-grid,
  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 18px;
    width: 100%;
  }

  .hero-price {
    margin-bottom: 18px;
  }

  .price-old {
    font-size: 18px;
  }

  .price-new {
    font-size: 36px;
  }

  .timer-cell {
    padding: 12px 10px;
  }

  .timer-cell__num {
    font-size: 28px;
  }

  .timer-cell__label {
    font-size: 11px;
    margin-top: 6px;
  }

  .hero-timer-caption {
    margin-top: 18px;
  }

  .calc-result-row,
  .hero-card div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-card span {
    text-align: left;
  }

  .btn,
  .btn-large {
    width: 100%;
    font-size: 16px;
    padding: 16px 18px;
  }

  .package-btn {
    width: auto;
  }

  .author-box img {
    width: 132px;
  }
}
