/* ===== LIOFI — style.css (light, formal) ===== */
:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-alt: #f2f4fa;
  --ink: #14213d;
  --ink-soft: #5a6787;
  --line: #e4e8f2;
  --line-strong: #cdd5e6;
  --navy: #0f2149;
  --navy-2: #1c3364;
  --gold: #b08d2e;
  --gold-deep: #8a6d1f;
  --gold-soft: #f6efdb;
  --ok: #178a52;
  --err: #c0392b;
  --wa: #1faa53;
  --tg: #1e8fc7;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(20, 33, 61, .07);
  --shadow-md: 0 10px 30px rgba(20, 33, 61, .1);
  --shadow-lg: 0 18px 48px rgba(20, 33, 61, .14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.9;
  overflow-x: hidden;
}

img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold); }
.muted { color: var(--ink-soft); font-weight: 400; font-size: .85em; }

/* ===== Icons ===== */
.ico {
  width: 24px; height: 24px; fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; vertical-align: middle;
}
.ico.sm { width: 18px; height: 18px; }
.icon-chip {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #fdf8ea, var(--gold-soft));
  border: 1px solid #e9dcb4; color: var(--gold-deep);
}
.icon-chip.lg { width: 62px; height: 62px; }
.icon-chip.lg .ico { width: 28px; height: 28px; }
.icon-chip.wa { background: #e8f7ee; border-color: #c4e8d2; color: #157a3f; }
.icon-chip.tg { background: #e7f3fa; border-color: #c2e0f0; color: #176f9b; }
.icon-chip.ph { background: #eef1f9; border-color: #d4dbee; color: var(--navy); }
.icon-chip.ig { background: #fbeef3; border-color: #f0cddc; color: #b0316b; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 28px; border-radius: 10px; border: 1.5px solid transparent; cursor: pointer;
  font-family: inherit; font-size: .98rem; font-weight: 600; text-decoration: none;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 4px 14px rgba(15, 33, 73, .22);
}
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 8px 22px rgba(15, 33, 73, .3); }
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #188f45; }
.btn-tg { background: var(--tg); color: #fff; }
.btn-tg:hover { background: #1779a8; }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 10px 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-logo { width: 54px; height: 54px; object-fit: contain; }
.logo-fallback {
  width: 54px; height: 54px; border-radius: 12px; align-items: center; justify-content: center;
  background: var(--navy); border: 2px solid var(--gold); color: var(--gold);
  font-size: 26px; font-weight: 800;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.4; }
.brand-text strong { font-size: 1.12rem; font-weight: 700; }
.brand-text small { color: var(--ink-soft); font-size: .6rem; letter-spacing: 2.5px; }
.main-nav { display: flex; gap: 4px; margin-inline-start: auto; }
.main-nav a {
  color: var(--ink-soft); text-decoration: none; font-size: .92rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; transition: color .18s, background .18s;
}
.main-nav a:hover { color: var(--navy); background: var(--surface-alt); }
.nav-toggle { display: none; background: none; border: none; color: var(--navy); font-size: 1.6rem; cursor: pointer; }

/* ===== Hero ===== */
.hero {
  position: relative; padding: 84px 0 76px;
  background:
    radial-gradient(700px 420px at 18% 8%, rgba(176, 141, 46, .09), transparent 65%),
    radial-gradient(800px 520px at 88% 90%, rgba(15, 33, 73, .07), transparent 65%),
    linear-gradient(180deg, #fdfdfe, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 999px; font-size: .84rem; font-weight: 500;
  background: var(--gold-soft); border: 1px solid #e9dcb4; color: var(--gold-deep);
  margin-bottom: 24px;
}
.hero h1 { font-size: 2.7rem; font-weight: 800; line-height: 1.45; margin-bottom: 18px; color: var(--navy); }
.gold-underline {
  color: var(--gold-deep);
  background: linear-gradient(transparent 68%, rgba(176, 141, 46, .25) 68%);
}
.hero-sub { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; flex-wrap: wrap; }
.hero-stats div {
  display: flex; flex-direction: column; padding: 0 22px;
  border-inline-start: 3px solid var(--gold); margin-bottom: 12px;
}
.hero-stats div:first-child { padding-inline-start: 0; }
.hero-stats strong { color: var(--navy); font-size: 1.08rem; font-weight: 700; }
.hero-stats span { color: var(--ink-soft); font-size: .8rem; }
.hero-visual { display: flex; justify-content: center; }
.hero-logo-ring {
  padding: 34px; border-radius: 50%;
  background: radial-gradient(circle, #ffffff 55%, rgba(246, 239, 219, .6));
  box-shadow: 0 24px 70px rgba(20, 33, 61, .13), inset 0 0 0 1px var(--line);
}
.hero-logo { width: 320px; max-width: 100%; display: block; }
.hero-logo-fallback {
  width: 280px; height: 280px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 56px; font-weight: 800;
  background: var(--navy); color: var(--gold); letter-spacing: 4px;
}

/* ===== Trust bar ===== */
.trustbar { background: var(--surface); border-bottom: 1px solid var(--line); padding: 34px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; }
.trust-item .icon-chip { margin-bottom: 8px; }
.trust-item strong { font-size: .95rem; font-weight: 700; color: var(--navy); }
.trust-item small { color: var(--ink-soft); font-size: .78rem; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-kicker {
  display: block; text-align: center; color: var(--gold-deep); font-size: .85rem; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 10px;
}
.section-kicker::after {
  content: ""; display: block; width: 46px; height: 3px; border-radius: 2px;
  background: var(--gold); margin: 10px auto 0;
}
.section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: var(--navy); }
.section-title-sm { text-align: center; font-size: 1.45rem; font-weight: 800; margin: 76px 0 8px; color: var(--navy); }
.section-sub { text-align: center; color: var(--ink-soft); margin-bottom: 48px; font-size: 1.02rem; max-width: 720px; margin-inline: auto; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.service-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--navy); }
.service-card p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.service-link { color: var(--gold-deep); font-weight: 700; font-size: .9rem; }
.service-link::after { content: " ←"; }

/* ===== Packages ===== */
.platform-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 46px; }
.platform-row span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 20px; font-size: .87rem; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.platform-row .ico { color: var(--gold-deep); }
.packages-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.pkg-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 18px 22px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pkg-card.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 12px 34px rgba(176, 141, 46, .16);
}
.pkg-badge {
  position: absolute; top: -13px; right: 50%; transform: translateX(50%);
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: #fff;
  font-size: .74rem; font-weight: 700; padding: 4px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(138, 109, 31, .3);
}
.pkg-num {
  width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; margin-bottom: 12px;
  background: var(--navy); color: #fff;
}
.pkg-card.popular .pkg-num { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); }
.pkg-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pkg-tagline { color: var(--ink-soft); font-size: .8rem; margin-bottom: 14px; min-height: 42px; }
.pkg-price { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.pkg-price strong { font-size: 1.34rem; color: var(--navy); display: block; font-weight: 800; }
.pkg-price strong em { font-style: normal; font-size: .78rem; font-weight: 600; color: var(--gold-deep); }
.pkg-price span { color: var(--ink-soft); font-size: .78rem; }
.pkg-features { list-style: none; flex: 1; margin-bottom: 18px; }
.pkg-features li {
  font-size: .8rem; color: var(--ink-soft); padding: 5px 0; border-bottom: 1px dashed var(--line);
  display: flex; gap: 8px; align-items: flex-start;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before {
  content: "✓"; color: var(--ok); font-weight: 800; font-size: .78rem; margin-top: 1px;
}
.pkg-fit {
  font-size: .75rem; color: var(--gold-deep); background: var(--gold-soft);
  border: 1px solid #eee2bd; border-radius: 10px; padding: 8px 10px; margin-bottom: 14px;
}
.pkg-cta { margin-top: auto; }
.note { text-align: center; color: var(--ink-soft); font-size: .88rem; margin-top: 32px; }

/* ===== Calculator ===== */
.calc-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.calc-main {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm);
}
.section-alt .calc-main { background: var(--bg); }
.calc-step { margin-bottom: 36px; }
.calc-step:last-child { margin-bottom: 0; }
.calc-step h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 1.02rem; color: var(--navy); }
.step-num {
  width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-size: .88rem; font-weight: 700;
}
.type-tabs { display: flex; gap: 12px; flex-wrap: wrap; }
.type-tab {
  flex: 1; min-width: 230px; padding: 14px 18px; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--surface); color: var(--ink-soft); border: 1.5px solid var(--line-strong);
  font-family: inherit; font-size: .95rem; font-weight: 600; transition: all .18s;
}
.type-tab:hover { border-color: var(--navy); color: var(--navy); }
.type-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.base-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: 10px; }
.base-option { position: relative; display: block; cursor: pointer; }
.base-option input { position: absolute; opacity: 0; }
.base-option .bo-box {
  display: block; border: 1.5px solid var(--line-strong); border-radius: 10px; padding: 14px;
  background: var(--surface); transition: all .18s; height: 100%;
}
.base-option:hover .bo-box { border-color: var(--navy); }
.base-option input:checked + .bo-box { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 0 0 1px var(--gold); }
.bo-box strong { display: block; font-size: .93rem; margin-bottom: 4px; color: var(--navy); }
.bo-box span { color: var(--gold-deep); font-size: .87rem; font-weight: 700; }
.bo-box small { display: block; color: var(--ink-soft); font-size: .74rem; margin-top: 4px; }
.addon-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)); gap: 10px; }
.addon-option { position: relative; display: block; cursor: pointer; }
.addon-option input { position: absolute; opacity: 0; }
.addon-option .ao-box {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  border: 1.5px solid var(--line-strong); border-radius: 10px; padding: 12px 14px;
  background: var(--surface); transition: all .18s; height: 100%;
}
.addon-option:hover .ao-box { border-color: var(--navy); }
.addon-option input:checked + .ao-box { border-color: var(--ok); background: #f0faf4; box-shadow: 0 0 0 1px var(--ok); }
.ao-box .ao-name { font-size: .86rem; font-weight: 600; color: var(--ink); }
.ao-box .ao-price { color: var(--gold-deep); font-size: .8rem; font-weight: 700; white-space: nowrap; }
.addon-option input:checked + .ao-box .ao-name::before { content: "✓ "; color: var(--ok); font-weight: 800; }

/* Order form */
.order-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field textarea {
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: 10px;
  padding: 12px 14px; color: var(--ink); font-family: inherit; font-size: .95rem; transition: border-color .18s, box-shadow .18s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-soft); opacity: 1; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15, 33, 73, .1);
}
.form-field input.invalid { border-color: var(--err); }
.form-status { text-align: center; font-size: .92rem; min-height: 1.4em; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }

/* Summary */
.calc-summary {
  position: sticky; top: 92px;
  background: var(--navy); color: #eef2ff;
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-md);
}
.calc-summary h4 { margin-bottom: 18px; font-size: 1.05rem; color: #fff; }
.calc-summary h4::after {
  content: ""; display: block; width: 40px; height: 3px; border-radius: 2px;
  background: var(--gold); margin-top: 8px;
}
.summary-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; min-height: 40px; }
.summary-line { display: flex; justify-content: space-between; gap: 10px; font-size: .84rem; color: #b9c4e2; }
.summary-line b { color: #fff; font-weight: 600; }
.summary-line span { white-space: nowrap; color: #e6c65c; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .18); padding-top: 14px; margin-bottom: 12px;
}
.summary-total span { font-size: .9rem; }
.summary-total strong { color: #e6c65c; font-size: 1.22rem; font-weight: 800; }
.summary-note { font-size: .76rem; color: #b9c4e2; margin-bottom: 18px; }
.summary-contact { border-top: 1px dashed rgba(255, 255, 255, .2); padding-top: 14px; }
.summary-contact > span { font-size: .82rem; color: #b9c4e2; display: block; margin-bottom: 10px; }
.mini-contact { display: flex; gap: 10px; }
.mini-contact .btn { flex: 1; }

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.why-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.why-card .icon-chip { margin-bottom: 12px; }
.why-card strong { display: block; margin-bottom: 6px; font-size: .95rem; color: var(--navy); }
.why-card p { color: var(--ink-soft); font-size: .8rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 20px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .icon-chip { margin-bottom: 10px; }
.contact-card.wa:hover { border-color: var(--wa); }
.contact-card.tg:hover { border-color: var(--tg); }
.contact-card.ph:hover { border-color: var(--navy); }
.contact-card.ig:hover { border-color: #b0316b; }
.contact-card strong { color: var(--navy); font-size: 1.02rem; }
.contact-card small { color: var(--ink-soft); }
.contact-action { margin-top: 8px; font-size: .82rem; color: var(--gold-deep); font-weight: 700; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #cfd8ee; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding: 56px 20px 34px; }
.footer-logo { width: 64px; margin-bottom: 10px; }
.footer-brand strong { color: #fff; font-size: 1.1rem; }
.footer-brand .gold { color: #e6c65c; }
.footer-brand p { color: #a9b6da; font-size: .87rem; margin-top: 10px; max-width: 400px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-links h5, .footer-contact h5 { color: #e6c65c; margin-bottom: 8px; font-size: .95rem; font-weight: 700; }
.footer-links a, .footer-contact a {
  color: #a9b6da; text-decoration: none; font-size: .88rem; transition: color .18s;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 16px 20px; color: #8fa0cb; font-size: .8rem;
}

/* ===== Floating buttons ===== */
.float-contact { position: fixed; bottom: 22px; left: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 90; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; box-shadow: 0 8px 24px rgba(20, 33, 61, .28); transition: transform .18s;
}
.float-btn .ico { width: 26px; height: 26px; }
.float-btn:hover { transform: scale(1.08); }
.float-btn.wa { background: var(--wa); }
.float-btn.tg { background: var(--tg); }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(20, 33, 61, .5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 200; padding: 20px;
}
.modal {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 30px; max-width: 440px; width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal h4 { margin-bottom: 12px; font-size: 1.12rem; color: var(--navy); }
.modal p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-close {
  position: absolute; top: 14px; left: 14px; background: none; border: none;
  color: var(--ink-soft); font-size: 1.05rem; cursor: pointer;
}
.modal-close:hover { color: var(--ink); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
  /* collapse the nav to the hamburger early enough that brand + CTA + toggle always fit */
  .main-nav {
    display: none; position: absolute; top: 100%; right: 0; left: 0;
    background: var(--surface); flex-direction: column; padding: 18px 20px; gap: 4px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { margin-inline-start: auto; }
}
@media (max-width: 768px) {
  .header-cta { display: none; }
  .nav-toggle { margin-inline-start: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 52px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stats div:first-child { padding-inline-start: 22px; }
  .hero-visual { order: -1; }
  .hero-logo { width: 210px; }
  .hero-logo-ring { padding: 24px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .calc-main { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .packages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.55rem; }
}
