/* ============================================================
   HR Pont — main stylesheet
   Brand: navy / coral / sand / mustard on off-white #FAF7F2
   ============================================================ */

em {
  font-style: normal;
  color: var(--coral);
  font-weight: inherit;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(232, 225, 213, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 18px;
  font-size: 14px;
}
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 8vw, 96px) clamp(60px, 10vw, 120px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.32;
  will-change: transform;
}
.blob-coral {
  width: 480px; height: 480px;
  background: var(--coral);
  top: -160px; right: -120px;
  animation: drift-1 22s ease-in-out infinite alternate;
}
.blob-mustard {
  width: 360px; height: 360px;
  background: var(--mustard);
  bottom: -120px; left: -100px;
  opacity: 0.28;
  animation: drift-2 28s ease-in-out infinite alternate;
}
.blob-sand {
  width: 300px; height: 300px;
  background: var(--sand);
  top: 30%; left: 35%;
  opacity: 0.16;
  animation: drift-3 34s ease-in-out infinite alternate;
}
@keyframes drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-40px, 30px) scale(1.05); }
  100% { transform: translate(20px, -20px) scale(0.98); }
}
@keyframes drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-25px, 20px) scale(0.96); }
}
@keyframes drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, -25px) scale(0.92); }
}
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-title {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-trust {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-trust li {
  display: flex;
  flex-direction: column;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.hero-trust span {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-logo-frame {
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(31, 45, 76, 0.15);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-quote {
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  max-width: 380px;
  position: relative;
}
.hero-quote::before {
  content: "“";
  position: absolute;
  top: -16px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--coral);
  line-height: 1;
}
.hero-quote p {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.hero-quote cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding-block: 22px;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-coral { background: var(--coral); }
.dot-mustard { background: var(--mustard); }
.dot-sand { background: var(--sand-soft); }

/* ============ SECTION HELPERS ============ */
.section {
  padding-block: clamp(64px, 9vw, 120px);
}
.section-soft {
  background: var(--bg-deep);
}
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-dark .section-title,
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  margin-top: 16px;
  margin-bottom: 18px;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
}
.section-dark .section-lead { color: rgba(255, 255, 255, 0.78); }
.eyebrow-light { color: var(--mustard); }
.eyebrow-light::before { background: var(--mustard); }

/* ============ PACKS ============ */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pack {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pack::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.pack-1::before { background: linear-gradient(90deg, var(--coral), var(--mustard)); }
.pack-2::before { background: linear-gradient(90deg, var(--navy), var(--sand)); }
.pack-3::before { background: linear-gradient(90deg, var(--sand), var(--coral)); }
.pack:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pack-head { margin-bottom: 22px; }
.pack-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  background: rgba(233, 109, 91, 0.1);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.pack-tag-alt {
  color: var(--navy);
  background: rgba(31, 45, 76, 0.08);
}
.pack-head h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.pack-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.pack-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.pack-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.pack-list li:last-child { border-bottom: none; }
.pack-li-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}
.pack-li-head span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.pack-li-head b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
}
.pack-list li p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.pack-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 2px solid var(--line);
  min-height: 92px;
}
.pack-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 60px;
}
.pack-price small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.pack-price strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.pack-price-simple strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pack-save {
  font-size: 12px;
  color: var(--coral-deep);
  font-weight: 600;
}

/* ============ FOLYAMAT (process) ============ */
.section-process {
  background:
    radial-gradient(ellipse at top right, rgba(176, 117, 33, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(31, 45, 76, 0.05), transparent 55%),
    var(--bg);
}
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.process-line {
  position: absolute;
  top: 38px;
  left: calc(12.5% + 38px);
  right: calc(12.5% + 38px);
  height: 2px;
  background-image: linear-gradient(90deg, var(--coral-soft) 0 10px, transparent 10px 18px);
  background-size: 18px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  opacity: 0.55;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--step-delay, 0s);
}
.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.process-num {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}
.process-num-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--coral);
  animation: spin 28s linear infinite;
}
.process-num-value {
  position: relative;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  background: var(--bg);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--navy);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process-step:hover .process-num-value {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: scale(1.08);
  box-shadow: 0 8px 20px -8px rgba(176, 117, 33, 0.5);
}
.process-step:hover .process-num-ring {
  animation-duration: 6s;
  border-color: var(--coral-deep);
}
.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.process-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .process { grid-template-columns: 1fr; gap: 36px; }
  .process-line { display: none; }
  .process-step { max-width: 460px; margin: 0 auto; }
}

/* ============ HOTLINE ============ */
.hotline-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hotline-copy .section-title { margin-top: 16px; margin-bottom: 22px; }
.hotline-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.hotline-bullets li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}
.hotline-bullets li::before {
  content: "✓";
  color: var(--mustard);
  font-weight: 800;
  flex-shrink: 0;
}
.hotline-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.hotline-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.hotline-price-from {
  color: var(--mustard);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hotline-price strong {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hotline-price-unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.hotline-fineprint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}
.btn-block { width: 100%; justify-content: center; margin-bottom: 12px; }
.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.hotline-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin: 12px 0 0;
  text-align: center;
}

/* ============ TOOLS ============ */
.tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tool {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tool:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 45, 76, 0.18);
}
.tool-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 14%, transparent);
  color: var(--c);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.tool-icon svg { width: 28px; height: 28px; }
.tool h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.tool p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.tools-cta {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.tools-cta p {
  margin: 0;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.about-copy .section-title { margin-top: 16px; margin-bottom: 24px; }
.about-copy p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.65;
}
.about-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
}
.about-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.about-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--mustard));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.about-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  object-fit: contain;
  flex-shrink: 0;
}
.about-card-head strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.about-card-head span {
  font-size: 13px;
  color: var(--ink-mute);
}
.about-stats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.about-stats li {
  padding: 11px 0;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.about-stats li:last-child { border-bottom: none; }
.about-stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-right: 6px;
}

/* ============ CONTACT ============ */
.section-contact {
  background: linear-gradient(180deg, var(--bg) 0%, #FFFCF6 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact-copy .section-title { margin-top: 16px; margin-bottom: 20px; }
.contact-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(233, 109, 91, 0.12);
  color: var(--coral-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list small {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.contact-list strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.contact-list a strong { transition: color 0.2s var(--ease); }
.contact-list a:hover strong { color: var(--coral-deep); }

.contact-form {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label span {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(233, 109, 91, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 12px 0 0;
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-block: 64px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 10px;
  font-size: 14.5px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--coral-soft); }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal a { color: rgba(255, 255, 255, 0.7); margin: 0 4px; }
.footer-legal a:hover { color: var(--coral-soft); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-quote { display: none; }
  .packs { grid-template-columns: 1fr; }
  .tools { grid-template-columns: repeat(2, 1fr); }
  .hotline-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }
  .nav a::after { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .hero-trust { gap: 24px; }
  .hero-trust strong { font-size: 22px; }
  .tools { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .trust-grid { justify-content: flex-start; }
}
