/**
 * Front page styles
 *
 * @package flavor-developer
 */

/* ═══ Hero ═══ */
.hero { padding: 140px 0 0; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 20px 8px 10px; font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 28px;
}
.hero__tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 2s ease infinite; }
.hero__title {
  font-family: 'Space Grotesk', sans-serif; font-size: 56px; font-weight: 800;
  line-height: 1.05; letter-spacing: -.04em; margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lime), #A8C53A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__sub { font-size: 18px; line-height: 1.65; color: var(--text-2); max-width: 480px; margin-bottom: 36px; }
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual { position: relative; }

/* ═══ Terminal ═══ */
.term {
  background: #0D0D0D; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 1px 3px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.06);
  animation: scaleIn .8s cubic-bezier(.22,1,.36,1) both;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  position: relative;
}
.term__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.term__dots { display: flex; gap: 6px; }
.term__dots span { width: 10px; height: 10px; border-radius: 50%; }
.term__dots span:nth-child(1) { background: #FF5F57; }
.term__dots span:nth-child(2) { background: #FFBD2E; }
.term__dots span:nth-child(3) { background: #28CA42; }
.term__title { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .02em; }
.term__body {
  padding: 20px; min-height: 280px;
  display: flex; flex-direction: column; gap: 0;
  font-size: 13px; line-height: 1.9;
}
.term__line { opacity: 0; animation: fadeUp .3s ease forwards; }
.term__line--cmd { color: rgba(255,255,255,.9); }
.term__line--out { color: rgba(255,255,255,.45); }
.term__line--ok { color: #28CA42; }
.term__line--warn { color: #FFBD2E; }
.term__line--accent { color: var(--lime); font-weight: 600; }
.term__line--stat { color: rgba(255,255,255,.7); }
.term__prompt { color: var(--lime); font-weight: 700; user-select: none; }
.term__spinner { display: inline-block; animation: spin .6s linear infinite; }
.term__cursor {
  position: absolute; bottom: 20px; left: 20px;
  width: 8px; height: 16px; background: var(--lime);
  animation: blink 1s step-end infinite;
  border-radius: 1px;
}

/* ═══ Stats Bar ═══ */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden; margin: 48px 0;
}
.stat { padding: 28px 32px; border-right: 1px solid var(--border); transition: background .2s; }
.stat:last-child { border-right: none; }
.stat:hover { background: var(--surface); }
.stat__value {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800;
  letter-spacing: -.04em; line-height: 1; margin-bottom: 6px;
}
.stat__value .green { color: #3A8F5C; }
.stat__label { font-size: 14px; color: var(--text-2); }

/* ═══ Services (Directions grid) ═══ */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px; cursor: pointer; transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.svc::before { content: ''; position: absolute; inset: 0; opacity: 0; background: radial-gradient(circle at 80% 20%, rgba(210,227,78,.12), transparent 60%); transition: opacity .35s; }
.svc:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.07); border-color: rgba(210,227,78,.4); }
.svc:hover::before { opacity: 1; }
.svc--active { background: var(--lime-bg); border-color: var(--lime); }
.svc--active::before { opacity: 1; }
.svc__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; position: relative; z-index: 1; }
.svc__num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--text-3); font-weight: 600; }
.svc__icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.svc:hover .svc__icon, .svc--active .svc__icon { background: var(--lime); border-color: var(--lime); }
.svc__body { position: relative; z-index: 1; }
.svc__title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.svc__desc { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.svc__footer {
  display: flex; justify-content: space-between; align-items: center; margin-top: 28px;
  padding-top: 18px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-2); position: relative; z-index: 1;
}
.svc--active .svc__footer { border-top-color: rgba(210,227,78,.5); }
.svc__arrow {
  width: 32px; height: 32px; border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center; transition: all .3s; font-size: 16px;
}
.svc:hover .svc__arrow { background: var(--dark); color: var(--white); }
.svc__groups { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; position: relative; z-index: 1; }
.svc__group-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 6px; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.svc__tag {
  font-size: 12px; font-weight: 500; color: var(--text-2);
  background: var(--surface); padding: 4px 10px; border-radius: 6px;
  transition: all .2s; cursor: default; white-space: nowrap;
}
.svc:hover .svc__tag { background: var(--surface-2); }
.svc--active .svc__tag { background: rgba(210,227,78,.18); color: var(--dark); }
.svc__page-link { font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; transition: color .2s; }
.svc:hover .svc__page-link { color: var(--lime-hover); }
.svc__count { font-size: 11px; font-weight: 600; color: var(--text-3); background: var(--surface-2); padding: 3px 10px; border-radius: 100px; }

/* ═══ Process Tabs + Accordion ═══ */
.proc-tabs { display: flex; gap: 6px; margin-bottom: 32px; flex-wrap: wrap; }
.proc-tab {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  padding: 10px 22px; border-radius: 100px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-2); cursor: pointer;
  transition: all .25s cubic-bezier(.22,1,.36,1); white-space: nowrap;
}
.proc-tab:hover { border-color: var(--text-3); color: var(--text); }
.proc-tab--active { background: var(--lime); border-color: var(--lime); color: var(--dark); }
.proc-tab__count { font-size: 11px; font-weight: 700; opacity: .55; margin-left: 4px; }
.proc-panel { display: none; }
.proc-panel--active { display: block; }
.proc-steps { display: flex; flex-direction: column; gap: 0; }
.proc-step { border-bottom: 1px solid var(--border); transition: background .2s; }
.proc-step:first-child { border-top: 1px solid var(--border); }
.proc-step__head {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 4px; cursor: pointer; transition: all .2s; user-select: none;
}
.proc-step__head:hover { padding-left: 12px; }
.proc-step__num {
  font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 800;
  color: var(--surface-2); min-width: 48px; transition: color .3s; line-height: 1;
}
.proc-step--open .proc-step__num { color: var(--lime); }
.proc-step__title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; flex: 1; }
.proc-step__toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-3); flex-shrink: 0;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.proc-step--open .proc-step__toggle {
  background: var(--lime); border-color: var(--lime);
  color: var(--dark); transform: rotate(45deg);
}
.proc-step__body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .4s cubic-bezier(.22,1,.36,1);
  padding: 0 4px 0 68px;
}
.proc-step--open .proc-step__body { max-height: 300px; padding: 0 4px 24px 68px; }
.proc-step__desc { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.proc-step__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.proc-step__tag {
  font-size: 12px; font-weight: 500; color: var(--text-2);
  background: var(--surface); padding: 4px 10px; border-radius: 6px;
}

/* ═══ Social Proof (dark) ═══ */
.proof { background: var(--dark); border-radius: 0; position: relative; }
.proof::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(210,227,78,.06) 0%, transparent 70%);
  pointer-events: none;
}
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.proof__card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 28px 24px; transition: all .3s;
}
.proof__card:hover { background: rgba(255,255,255,.08); border-color: rgba(210,227,78,.2); }
.proof__result {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800;
  color: var(--lime); letter-spacing: -.04em; line-height: 1; margin-bottom: 10px;
}
.proof__desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 12px; }
.proof__niche { font-size: 12px; color: rgba(255,255,255,.3); font-weight: 500; }
.proof__testimonial {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg); padding: 36px 40px;
}
.proof__quote {
  font-size: 18px; color: rgba(255,255,255,.8); line-height: 1.7;
  font-style: italic; margin-bottom: 24px; max-width: 680px;
}
.proof__author { display: flex; align-items: center; gap: 14px; }
.proof__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(210,227,78,.15); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.proof__name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); }
.proof__role { font-size: 13px; color: rgba(255,255,255,.35); }

/* ═══ Compare ═══ */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.compare__col {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
  transition: all .3s; position: relative;
}
.compare__col--me { border-color: var(--lime); background: var(--lime-bg); }
.compare__col--me::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(210,227,78,.12), transparent 70%);
  pointer-events: none;
}
.compare__label {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--text-3);
}
.compare__col--me .compare__label { color: var(--dark); }
.compare__title {
  font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 800;
  letter-spacing: -.03em; line-height: 1.2;
}
.compare__items { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.compare__item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--text-2); }
.compare__item-icon { flex-shrink: 0; margin-top: 2px; font-size: 15px; }
.compare__col--me .compare__item { color: var(--text); font-weight: 500; }

/* ═══ Principles ═══ */
.principles { display: flex; flex-direction: column; gap: 0; }
.principle {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  align-items: start; transition: all .2s;
}
.principle:first-child { border-top: 1px solid var(--border); }
.principle:hover { padding-left: 8px; }
.principle__num {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800;
  color: var(--surface-2); line-height: 1; transition: color .3s;
}
.principle:hover .principle__num { color: var(--lime); }
.principle__title {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -.01em;
}
.principle__desc { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ═══ FAQ ═══ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; gap: 16px;
  user-select: none; transition: all .2s;
}
.faq-q:hover { padding-left: 8px; }
.faq-q__text {
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: -.01em;
}
.faq-q__toggle {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-3);
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.faq-item--open .faq-q__toggle {
  background: var(--lime); border-color: var(--lime);
  color: var(--dark); transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .4s cubic-bezier(.22,1,.36,1);
  padding: 0;
}
.faq-item--open .faq-a { max-height: 400px; padding: 0 0 28px 0; }
.faq-a__text { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ═══ About (new) ═══ */
.about-new { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.about-new__photo { margin-bottom: 20px; }
.about-new__photo-placeholder {
  width: 240px; height: 280px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface-2), var(--border));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 800;
  color: var(--text-3);
}
.about-new__stats-row { display: flex; gap: 12px; }
.about-new__stat {
  flex: 1; background: var(--white); border-radius: 14px; padding: 14px 16px;
  border: 1px solid var(--border); text-align: center;
}
.about-new__stat strong {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 24px;
  font-weight: 800; letter-spacing: -.03em;
}
.about-new__stat span { font-size: 12px; color: var(--text-2); }
.about-new__story { margin-bottom: 24px; }
.about-new__story p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.about-new__roles { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.about-new__role {
  font-size: 13px; font-weight: 600; color: var(--text-2);
  background: var(--surface); padding: 6px 16px; border-radius: 100px;
  cursor: pointer; transition: all .25s;
}
.about-new__role:hover { background: var(--surface-2); color: var(--text); }
.about-new__role--active { background: var(--lime); color: var(--dark); }
.about-new__tl-panel { display: none; }
.about-new__tl-panel--active { display: block; }
.about-new__timeline {
  border-left: 2px solid var(--border); padding-left: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.about-new__tl-item { display: flex; gap: 16px; align-items: baseline; position: relative; }
.about-new__tl-item::before {
  content: ''; position: absolute; left: -29px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-2); border: 2px solid var(--border);
}
.about-new__tl-item:last-child::before { background: var(--lime); border-color: var(--lime); }
.about-new__tl-year {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 800;
  color: var(--text-3); min-width: 44px;
}
.about-new__tl-text { font-size: 14px; color: var(--text-2); line-height: 1.5; }

/* ═══ Pricing ═══ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; border: 1.5px solid var(--border);
  display: flex; flex-direction: column; position: relative;
}
.price-card--popular { border-color: var(--lime); background: var(--lime-bg); }
.price-card--popular::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(210,227,78,.1), transparent 60%);
  pointer-events: none;
}
.price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--dark); font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.price-card__label { font-size: 14px; font-weight: 600; color: var(--text-2); margin-bottom: 12px; }
.price-card__price {
  font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 800;
  letter-spacing: -.03em; margin-bottom: 12px;
}
.price-card__price span { font-size: 16px; font-weight: 500; color: var(--text-2); }
.price-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; }
.price-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.price-card__f {
  font-size: 14px; color: var(--text); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.price-card__f::before { content: '\2713'; position: absolute; left: 0; color: var(--lime); font-weight: 700; font-size: 13px; }
.pricing__note { font-size: 14px; color: var(--text-3); text-align: center; margin-top: 24px; }

/* ═══ Responsive: Tablet landscape ═══ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__title { font-size: 44px; }
  .services { gap: 12px; }
  .svc { padding: 28px 24px; min-height: auto; }
  .compare { gap: 12px; }
  .about-new { grid-template-columns: 240px 1fr; gap: 36px; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { gap: 12px; }
}

/* ═══ Responsive: Tablet portrait ═══ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 110px 0 0; }
  .hero__title { font-size: 38px; }
  .hero__sub { font-size: 16px; }
  .hero__visual { max-width: 480px; }
  .hero__buttons { flex-wrap: wrap; }

  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 20px 22px; }
  .stat__value { font-size: 28px; }

  .services { grid-template-columns: 1fr; gap: 12px; }
  .svc { min-height: auto; padding: 26px 22px; }
  .svc__title { font-size: 20px; }
  .svc__groups { gap: 10px; }
  .svc__group-label { font-size: 10px; }

  .proc-tabs { gap: 4px; }
  .proc-tab { font-size: 13px; padding: 8px 16px; }
  .proc-step__body { padding-left: 48px; }
  .proc-step--open .proc-step__body { padding-left: 48px; }
  .proc-step__num { font-size: 26px; min-width: 36px; }

  .compare { grid-template-columns: 1fr; gap: 12px; }
  .compare__col { padding: 24px 22px; }
  .principle { grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; }
  .principle__num { font-size: 28px; }

  .about-new { grid-template-columns: 1fr; gap: 32px; }
  .about-new__left { display: flex; gap: 24px; align-items: flex-start; }
  .about-new__photo { margin-bottom: 0; }
  .about-new__photo-placeholder { width: 160px; height: 180px; font-size: 36px; }
  .about-new__stats-row { flex-direction: column; flex: 1; }

  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .proof__testimonial { padding: 28px 24px; }
  .proof__quote { font-size: 16px; }
  .pricing { grid-template-columns: 1fr; gap: 12px; }
  .price-card { padding: 28px 24px; }
}

/* ═══ Responsive: Mobile ═══ */
@media (max-width: 640px) {
  .hero { padding: 100px 0 0; }
  .hero__title { font-size: 30px; }
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .hero__tag { font-size: 12px; padding: 6px 14px 6px 8px; }
  .hero__buttons { flex-direction: column; gap: 10px; }
  .hero__buttons .btn { width: 100%; justify-content: center; }

  .stats-bar { grid-template-columns: 1fr; margin: 32px 0; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .stat:last-child { border-bottom: none; }
  .stat__value { font-size: 30px; }

  .services { grid-template-columns: 1fr; }
  .svc { min-height: auto; padding: 24px 20px; }
  .svc__top { margin-bottom: 20px; }
  .svc__footer { margin-top: 20px; padding-top: 14px; }

  .proc-tabs { flex-wrap: wrap; gap: 4px; }
  .proc-tab { font-size: 12px; padding: 7px 14px; }
  .proc-step__head { gap: 12px; padding: 18px 0; }
  .proc-step__num { font-size: 22px; min-width: 30px; }
  .proc-step__title { font-size: 16px; }
  .proc-step__body { padding-left: 42px; }
  .proc-step--open .proc-step__body { padding-left: 42px; padding-bottom: 18px; }
  .proc-step__toggle { width: 30px; height: 30px; font-size: 15px; }

  .compare__title { font-size: 20px; }
  .principle { grid-template-columns: 36px 1fr; gap: 12px; padding: 20px 0; }
  .principle__num { font-size: 24px; }
  .principle__title { font-size: 17px; }
  .faq-q__text { font-size: 16px; }

  .about-new__left { flex-direction: column; align-items: center; }
  .about-new__photo-placeholder { width: 120px; height: 140px; font-size: 28px; }
  .about-new__stats-row { flex-direction: row; }
  .about-new__tl-year { font-size: 14px; min-width: 36px; }

  .proof__grid { grid-template-columns: 1fr; }
  .proof__result { font-size: 28px; }
  .proof__testimonial { padding: 24px 20px; }
  .proof__quote { font-size: 15px; }

  .price-card { padding: 24px 20px; }
  .price-card__price { font-size: 28px; }
  .price-card__badge { font-size: 11px; }

  .term__body { min-height: 220px; padding: 16px; font-size: 12px; }
  .term__bar { padding: 10px 14px; }
  .term__cursor { bottom: 16px; left: 16px; }
}

/* ═══ Responsive: Small mobile ═══ */
@media (max-width: 380px) {
  .hero__title { font-size: 26px; }
  .stat__value { font-size: 26px; }
}
