/* ===== VARIABLES ===== */
:root {
  --primary: #e02020;
  --primary-dark: #c41a1a;
  --primary-light: rgba(224,32,32,0.1);
  --foreground: #1d2026;
  --background: #ffffff;
  --muted: #f2f3f5;
  --muted-fg: #6b7280;
  --card: #fafafa;
  --border: #dcdfe4;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: var(--background);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn-xl { height: 64px; padding: 0 40px; font-size: 17px; }
.btn-full { width: 100%; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-outline-white {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; box-shadow: var(--shadow-md); }
.btn-white:hover { background: rgba(255,255,255,0.92); }
.btn-secondary-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border-radius: var(--radius);
  background: rgba(0,0,0,0.05); font-weight: 700; font-size: 15px;
}
.btn-primary-sm { background: var(--primary); color: #fff; padding: 10px 20px; border-radius: var(--radius); font-weight: 600; font-size: 14px; }
.btn-outline-sm { background: transparent; border: 1.5px solid var(--border); padding: 10px 20px; border-radius: var(--radius); font-weight: 600; font-size: 14px; }

/* ===== ICONS ===== */
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }
.text-primary { color: var(--primary); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img { height: 36px; object-fit: contain; }
.desktop-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(29,32,38,0.75);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.header-actions { display: none; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
.phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--primary); }
.phone-link .icon { color: var(--primary); }
.mobile-toggle { display: flex; align-items: center; padding: 8px; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-nav { background: var(--white); border-top: 1px solid var(--border); }
.mobile-nav .container { padding-top: 16px; padding-bottom: 16px; display: flex; flex-direction: column; gap: 0; }
.mobile-nav-link {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(29,32,38,0.08);
  transition: color var(--transition);
}
.mobile-nav-link.active { color: var(--primary); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; }
.hidden { display: none !important; }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(29,32,38,0.8);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,32,38,1) 0%, transparent 50%);
}
@media (min-width: 768px) {
  .hero-overlay { background: rgba(29,32,38,0.72); }
  .hero-section { padding-top: 0; }
}
.hero-content {
  position: relative; z-index: 1;
  padding: 80px 0 60px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(224,32,32,0.2);
  border: 1px solid rgba(224,32,32,0.3);
  color: #fff;
  font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  position: relative; width: 8px; height: 8px;
}
.hero-badge-dot-ring {
  position: absolute; inset: 0;
  border-radius: 50%; background: var(--primary);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.hero-badge-dot-inner {
  position: relative; width: 8px; height: 8px;
  border-radius: 50%; background: var(--primary);
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== BENEFITS BAR ===== */
.benefits-bar {
  background: var(--primary);
  padding: 24px 0;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-item {
  display: flex; align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: #fff;
}
@media (min-width: 768px) {
  .benefit-item { border-right: 1px solid rgba(255,255,255,0.2); }
  .benefit-item:last-child { border-right: none; }
}
.benefit-item .icon { opacity: 0.85; width: 32px; height: 32px; flex-shrink: 0; }
.benefit-text { font-size: 14px; font-weight: 700; line-height: 1.3; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-muted { background: var(--muted); }
.section-white { background: var(--white); }
.section-dark { background: var(--foreground); color: #fff; }
.section-primary { background: var(--primary); color: #fff; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--muted-fg); line-height: 1.7; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(224,32,32,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card-body { padding: 24px; }

/* ===== OFFERS GRID ===== */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .offers-grid { grid-template-columns: repeat(4, 1fr); } }

.offer-card {
  display: block;
  height: 100%;
  background: var(--card);
  border: 1px solid rgba(220,223,228,0.6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}
.offer-card:hover {
  border-color: rgba(224,32,32,0.4);
  box-shadow: var(--shadow-lg);
}
.offer-card-inner {
  padding: 24px;
  display: flex; flex-direction: column;
  height: 100%;
  position: relative; z-index: 1;
}
.offer-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.offer-card:hover .offer-icon-wrap {
  background: var(--primary); color: #fff;
}
.offer-icon-wrap .icon { width: 24px; height: 24px; }
.offer-card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; transition: color var(--transition); }
.offer-card:hover .offer-card-title { color: var(--primary); }
.offer-card-desc { font-size: 14px; color: var(--muted-fg); flex: 1; line-height: 1.6; }
.offer-card-cta {
  display: flex; align-items: center; gap: 4px;
  margin-top: 24px;
  font-size: 14px; font-weight: 600;
  color: var(--primary);
  transition: transform var(--transition);
}
.offer-card:hover .offer-card-cta { transform: translateX(6px); }
.offer-card-cta .icon { width: 16px; height: 16px; }

/* ===== OFFERS PAGE GRID ===== */
.offers-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .offers-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offers-page-grid { grid-template-columns: repeat(3, 1fr); } }
.offer-page-card {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.offer-page-card:hover { box-shadow: var(--shadow-xl); border-color: rgba(224,32,32,0.3); }
.offer-page-card-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.offer-page-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: var(--muted);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.offer-page-card:hover .offer-page-icon-wrap { background: var(--primary); color: #fff; }
.offer-page-icon-wrap .icon { width: 32px; height: 32px; }
.offer-page-card-title { font-size: 1.5rem; margin-bottom: 16px; }
.offer-page-card-desc { font-size: 15px; color: var(--muted-fg); flex: 1; margin-bottom: 32px; line-height: 1.7; }
.btn-offer { width: 100%; margin-top: auto; }

/* ===== WHY US SECTION ===== */
.why-us-grid {
  display: flex; flex-direction: column; gap: 64px; align-items: center;
}
@media (min-width: 1024px) { .why-us-grid { flex-direction: row; } }
.why-us-img-wrap {
  position: relative; flex-shrink: 0;
}
@media (min-width: 1024px) { .why-us-img-wrap { width: 50%; } }
.why-us-img-bg {
  position: absolute;
  inset: -16px;
  background: var(--primary-light);
  border-radius: 24px;
  transform: rotate(-3deg);
  z-index: 0;
}
.why-us-img-wrap img {
  position: relative; z-index: 1;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.why-us-content {}
@media (min-width: 1024px) { .why-us-content { width: 50%; } }
.why-us-title { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 24px; }
.why-us-title span { color: var(--primary); }
.why-us-desc { font-size: 1.1rem; color: var(--muted-fg); margin-bottom: 32px; line-height: 1.7; }
.why-us-list { display: flex; flex-direction: column; gap: 24px; }
.why-us-item { display: flex; gap: 16px; }
.why-us-check { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.why-us-item-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.why-us-item-desc { font-size: 14px; color: var(--muted-fg); line-height: 1.6; }

/* ===== HOW TO ORDER ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
  }
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  background: var(--foreground);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem; font-weight: 900; color: #fff;
  box-shadow: 0 0 30px rgba(224,32,32,0.3);
}
.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-toggle {
  width: 100%; text-align: left;
  padding: 20px 24px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  background: none; border: none; font-family: inherit;
  color: var(--foreground);
  transition: color var(--transition);
}
.faq-toggle:hover { color: var(--primary); }
.faq-toggle.open { color: var(--primary); }
.faq-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--primary);
}
.faq-toggle.open .faq-arrow { transform: rotate(180deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-body.open { padding-bottom: 20px; }
.faq-body p { font-size: 15px; color: var(--muted-fg); line-height: 1.7; }

/* ===== MINI CALC PROMO ===== */
.mini-calc-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}
.mini-calc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.mini-calc-icon-wrap {
  padding: 12px; border-radius: var(--radius-lg);
  background: var(--primary-light); color: var(--primary);
}
.mini-calc-icon-wrap .icon { width: 24px; height: 24px; }
.mini-calc-title { font-size: 1.5rem; font-weight: 700; }
.mini-calc-desc { font-size: 15px; color: var(--muted-fg); margin-bottom: 32px; line-height: 1.7; }
.mini-calc-hint {
  background: var(--muted); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  text-align: center; margin-bottom: 32px;
}
.mini-calc-hint p:first-child { font-weight: 600; margin-bottom: 4px; }
.mini-calc-hint p:last-child { font-size: 14px; color: var(--muted-fg); }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 24px; color: #fff; }
.cta-desc {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: rgba(255,255,255,0.9);
  max-width: 640px; margin: 0 auto 40px;
  font-weight: 300; line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 120px 0 64px;
}
.page-hero-dark { background: var(--foreground); color: #fff; }
.page-hero-light { background: var(--muted); }
.page-hero-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 24px; }
.page-hero-desc { font-size: 1.25rem; line-height: 1.7; }
.page-hero-dark .page-hero-desc { color: rgba(255,255,255,0.7); }
.page-hero-light .page-hero-desc { color: var(--muted-fg); }

.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 64px; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { font-size: 16px; color: var(--muted-fg); line-height: 1.8; }
.about-img-wrap { position: relative; }
.about-img-shadow {
  position: absolute; inset: 0;
  background: var(--primary-light);
  transform: translate(16px, 16px);
  border-radius: var(--radius-xl); z-index: 0;
}
.about-img-wrap img { position: relative; z-index: 1; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); width: 100%; }

.values-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: background var(--transition);
}
.value-card:hover { background: rgba(255,255,255,0.1); }
.value-icon { color: var(--primary); width: 48px; height: 48px; margin: 0 auto 24px; }
.value-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.value-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.partners-section { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 1024px) { .partners-section { grid-template-columns: 1fr 1fr; } }
.partners-list { display: flex; flex-direction: column; gap: 16px; }
.partner-item { display: flex; align-items: center; gap: 12px; }
.partner-check { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; }
.partner-name { font-weight: 500; }

.reg-box {
  background: var(--muted); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
}
.reg-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.reg-list { display: flex; flex-direction: column; gap: 16px; }
.reg-item {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(220,223,228,0.6);
  font-size: 15px;
}
.reg-item:last-child { border-bottom: none; padding-bottom: 0; }
.reg-label { font-weight: 600; }
.reg-value { font-family: 'Courier New', monospace; color: var(--muted-fg); }

/* ===== OFFER DETAIL ===== */
.offer-detail-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) { .offer-detail-grid { grid-template-columns: 2fr 1fr; } }
.offer-content { display: flex; flex-direction: column; gap: 20px; }
.offer-content p { font-size: 16px; color: var(--muted-fg); line-height: 1.8; }
.offer-subheading { font-size: 1.1rem; font-weight: 700; color: var(--foreground); margin-top: 8px; }
.offer-list { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--foreground);
  padding: 4px 0;
}
.offer-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--primary);
  flex-shrink: 0; margin-top: 7px;
}
.offer-sidebar-box {
  background: var(--muted); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  position: sticky; top: 120px;
}
.offer-sidebar-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.offer-sidebar-desc { color: var(--muted-fg); margin-bottom: 32px; line-height: 1.7; }
.offer-sidebar-actions { display: flex; flex-direction: column; gap: 12px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-fg); margin-bottom: 32px; }
.breadcrumb:hover { color: var(--primary); }
.breadcrumb .icon { width: 16px; height: 16px; }
.offer-header { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.offer-header-icon {
  width: 80px; height: 80px; border-radius: var(--radius-xl);
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
.offer-header-icon .icon { width: 40px; height: 40px; }

/* ===== CALCULATOR ===== */
.calc-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: start;
}
@media (min-width: 1024px) { .calc-grid { grid-template-columns: 7fr 5fr; } }
.calc-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-md);
}
.calc-section-title {
  font-size: 1.2rem; font-weight: 700;
  padding-bottom: 20px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.radio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 40px;
}
.radio-label {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 16px;
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  cursor: pointer; transition: all var(--transition);
  font-weight: 700; font-size: 14px; text-align: center;
  background: #fff;
}
.radio-label:hover { border-color: var(--primary); background: var(--primary-light); }
.radio-input { display: none; }
.radio-input:checked + .radio-label {
  border-color: var(--primary); background: var(--primary-light);
  color: var(--primary);
}
.radio-shape { background: rgba(0,0,0,0.12); border-radius: 4px; }
.radio-shape-plate { width: 64px; height: 20px; }
.radio-shape-footing { width: 64px; height: 48px; display: flex; align-items: flex-end; justify-content: center; background: none; }
.radio-shape-footing-inner { width: 40px; height: 28px; background: rgba(0,0,0,0.2); border-radius: 2px; }
.radio-shape-pillar { width: 24px; height: 52px; }

.inputs-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .inputs-grid { grid-template-columns: repeat(2, 1fr); } }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group.full { grid-column: 1 / -1; }
.input-label { font-size: 14px; font-weight: 500; }
.input-field {
  height: 48px; padding: 0 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 16px; font-family: inherit;
  color: var(--foreground);
  transition: border-color var(--transition);
  background: #fff;
}
.input-field:focus { outline: none; border-color: var(--primary); }

.results-panel {
  background: var(--foreground); color: #fff;
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-xl);
  position: sticky; top: 120px;
}
.results-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.result-main {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.result-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.result-value { font-size: 2.5rem; font-weight: 900; }
.result-unit { font-size: 1.25rem; font-weight: 300; color: rgba(255,255,255,0.5); }
.result-breakdown { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.result-breakdown-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 12px; }
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.result-row:last-child { border-bottom: none; }
.result-row.highlight { color: var(--primary); font-weight: 700; }
.result-row.highlight .result-row-val { font-size: 1.25rem; color: var(--primary); }
.result-row-label { color: rgba(255,255,255,0.85); }
.result-row-label span { color: rgba(255,255,255,0.45); font-size: 12px; }
.result-row-val { font-weight: 700; font-size: 1rem; }
.result-empty { text-align: center; padding: 48px 0; color: rgba(255,255,255,0.45); }
.result-empty .icon { width: 64px; height: 64px; opacity: 0.2; margin: 0 auto 16px; }
.result-notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(224,32,32,0.2); border-radius: var(--radius);
  padding: 16px; font-size: 13px; margin-top: 20px; color: rgba(255,255,255,0.85);
}
.result-notice .icon { color: var(--primary); flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }

.send-form-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  box-shadow: var(--shadow-md); margin-top: 20px;
}
.send-form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.send-form-desc { font-size: 13px; color: var(--muted-fg); margin-bottom: 16px; }
.send-form { display: flex; flex-direction: column; gap: 12px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 4fr 8fr; } }
.contact-info-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon .icon { width: 20px; height: 20px; }
.contact-info-label { font-size: 13px; color: var(--muted-fg); font-weight: 500; margin-bottom: 4px; }
.contact-info-value { font-size: 1.1rem; font-weight: 700; }
.contact-info-value a { transition: color var(--transition); }
.contact-info-value a:hover { color: var(--primary); }
.contact-reg-box {
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted-fg);
}
.contact-reg-box strong { display: block; font-size: 14px; color: var(--foreground); margin-bottom: 8px; }
.contact-reg-box p { margin-bottom: 2px; }

.contact-form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 40px;
  box-shadow: var(--shadow-xl);
}
.contact-form-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 32px; }
.form-grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 15px; font-weight: 500; }
.form-control {
  height: 48px; padding: 0 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--foreground);
  background: #fff; transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); }
.form-control.textarea {
  height: auto; padding: 12px 14px;
  min-height: 160px; resize: vertical;
}
.form-select {
  height: 48px; padding: 0 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--foreground);
  background: #fff; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  transition: border-color var(--transition);
}
.form-select:focus { outline: none; border-color: var(--primary); }
.form-error { font-size: 13px; color: #dc2626; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.consent-box {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); background: var(--muted);
}
.consent-checkbox { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.consent-text { font-size: 13px; color: var(--muted-fg); line-height: 1.6; }
.consent-text a { color: var(--primary); text-decoration: underline; }
.form-error-msg {
  display: none; align-items: flex-start; gap: 12px;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-lg); padding: 16px;
  color: #dc2626; font-size: 14px; margin-bottom: 24px;
}
.form-error-msg.show { display: flex; }
.form-success {
  display: none; text-align: center; padding: 64px 16px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.form-success-icon .icon { width: 48px; height: 48px; }
.form-success-title { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.form-success-desc { font-size: 1.1rem; color: var(--muted-fg); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

/* ===== PRIVACY ===== */
.prose { max-width: 860px; }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin: 40px 0 16px; }
.prose p { font-size: 16px; color: var(--muted-fg); line-height: 1.8; margin-bottom: 16px; }
.prose ul { list-style: disc; padding-left: 28px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.prose ul li { font-size: 16px; color: var(--muted-fg); line-height: 1.7; }
.prose strong { color: var(--foreground); font-weight: 700; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1.5fr 1.5fr 2fr; } }
.footer-logo-img { height: 36px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-heading {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.footer-heading-bar { width: 32px; height: 3px; background: var(--primary); flex-shrink: 0; }
.footer-list { display: flex; flex-direction: column; gap: 16px; }
.footer-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.footer-list .icon { color: var(--primary); flex-shrink: 0; }
.footer-link { transition: color var(--transition); }
.footer-link:hover { color: var(--primary); }
.footer-certificate-item { align-items: flex-start !important; gap: 0 !important; }
.footer-certificate-logo { width: 240px; max-width: 100%; height: auto; display: block; margin-top: 30px; }
.footer-phone { font-weight: 700; color: #fff !important; }
.footer-reg-list { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-reg-list strong { color: #fff; }
.footer-shortcuts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap-x: 16px; gap-y: 8px;
  font-size: 14px;
}
.footer-shortcut-privacy { grid-column: 1 / -1; padding-top: 8px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-privacy-link { font-size: 12px; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.4); text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 16px; right: 16px;
  z-index: 9999; display: none;
}
.cookie-banner.show { display: block; }
@media (min-width: 640px) { .cookie-banner { left: 50%; right: auto; transform: translateX(-50%); width: 560px; } }
.cookie-inner {
  background: #fff; border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  border: 1px solid var(--border);
}
.cookie-text strong { display: block; font-size: 1.1rem; margin-bottom: 8px; }
.cookie-text p { font-size: 14px; color: var(--muted-fg); line-height: 1.6; margin-bottom: 16px; }
.cookie-link { color: var(--primary); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== 404 ===== */
.not-found {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.not-found-num { font-size: 8rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 16px; }
.not-found-title { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.not-found-desc { font-size: 1.1rem; color: var(--muted-fg); margin-bottom: 40px; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--muted-fg); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-faq-grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 1024px) { .gap-faq-grid { grid-template-columns: 1fr 1fr; } }


/* ===== WORDPRESS / BLOG ===== */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
.logo-text,
.footer-logo-text {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--foreground);
}
.logo-text::before,
.footer-logo-text::before {
  content: '';
  width: 12px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary);
  margin-right: 10px;
}
.footer-logo-text { color: #fff; margin-bottom: 20px; }
.footer-logo-text::before { background: var(--primary); }
.custom-logo-link img { max-height: 54px; width: auto; }
.site-footer .custom-logo-link img { filter: brightness(0) invert(1); max-height: 48px; width: auto; margin-bottom: 20px; }
.wp-content :where(p, ul, ol, blockquote) { margin-bottom: 1.2em; }
.wp-content ul { list-style: disc; padding-left: 1.25rem; }
.wp-content ol { list-style: decimal; padding-left: 1.25rem; }
.wp-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.wp-content h2, .wp-content h3, .wp-content h4 { margin-top: 1.8em; margin-bottom: 0.65em; }
.knowledge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .knowledge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1120px) { .knowledge-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(224,32,32,0.35); }
.post-card-image { aspect-ratio: 16 / 10; background: var(--muted); overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 28px; }
.post-card-meta { font-size: 13px; color: var(--muted-fg); margin-bottom: 10px; }
.post-card-title { font-size: 1.25rem; margin-bottom: 12px; }
.post-card-title a:hover { color: var(--primary); }
.post-card-excerpt { color: var(--muted-fg); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.post-card-link { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.blog-pagination { margin-top: 48px; display: flex; justify-content: center; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; border: 1px solid var(--border); border-radius: var(--radius); margin: 0 4px; font-weight: 700; }
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.article-wrap { max-width: 860px; margin: 0 auto; }
.article-meta { color: var(--muted-fg); margin-top: 18px; }
.article-featured { border-radius: var(--radius-xl); overflow: hidden; margin: 0 auto 40px; max-width: 980px; box-shadow: var(--shadow-md); }
.article-featured img { width: 100%; height: auto; }
.article-content { font-size: 1.08rem; line-height: 1.82; }
.article-content img { border-radius: var(--radius-lg); margin: 28px 0; }
.article-content blockquote { border-left: 4px solid var(--primary); padding-left: 20px; color: var(--muted-fg); font-style: italic; }
.back-to-blog { margin-top: 48px; }
.empty-posts {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  color: var(--muted-fg);
}
.screen-reader-text { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

/* ===== HOME OFFER CARDS - layout from reference screenshot ===== */
.home-offers-section {
  background: #fbfbfc;
}
.home-offers-section .section-header {
  margin-bottom: 48px;
}
.home-offers-section .offers-grid {
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 700px) {
  .home-offers-section .offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .home-offers-section .offers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.home-offers-section .offer-card {
  min-height: 278px;
  background: #ffffff;
  border: 1px solid #e6e8ec;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(16,24,40,0.06), 0 1px 2px rgba(16,24,40,0.04);
}
.home-offers-section .offer-card:hover {
  border-color: #dfe3e8;
  box-shadow: 0 8px 24px rgba(16,24,40,0.08);
  transform: translateY(-2px);
}
.home-offers-section .offer-card-inner {
  min-height: 278px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.home-offers-section .offer-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: rgba(224,32,32,0.11);
  color: var(--primary);
  margin-bottom: 28px;
}
.home-offers-section .offer-card:hover .offer-icon-wrap {
  background: rgba(224,32,32,0.11);
  color: var(--primary);
}
.home-offers-section .offer-icon-wrap .icon {
  width: 22px;
  height: 22px;
}
.home-offers-section .offer-card-watermark {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 96px;
  height: 96px;
  color: #eef0f2;
  stroke-width: 1.7;
  pointer-events: none;
  z-index: -1;
}
.home-offers-section .offer-card-title {
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 800;
  color: #1d2026;
  margin-bottom: 14px;
}
.home-offers-section .offer-card:hover .offer-card-title {
  color: #1d2026;
}
.home-offers-section .offer-card-desc {
  font-size: 16px;
  line-height: 1.45;
  color: #667085;
  max-width: 280px;
  margin-bottom: 28px;
}
.home-offers-section .offer-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}
.home-offers-section .offer-card-cta .icon {
  width: 18px;
  height: 18px;
}

/* ===== MOBILE FIXES: menu visibility + prevent homepage horizontal scroll ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main {
  width: 100%;
  overflow-x: hidden;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo-img {
  width: auto;
  max-width: min(260px, 64vw);
}

.mobile-toggle {
  flex: 0 0 auto;
  color: var(--foreground);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1001;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  box-shadow: 0 18px 38px rgba(16,24,40,0.12);
}

.gap-faq-grid,
.faq-item,
.faq-toggle,
.faq-body,
.mini-calc-box {
  min-width: 0;
  max-width: 100%;
}

.faq-toggle,
.faq-body p,
.mini-calc-title,
.mini-calc-desc,
.mini-calc-hint p {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .logo-link {
    flex: 1 1 auto;
  }

  .logo-img {
    height: 36px;
    max-width: min(220px, 62vw);
  }

  .mobile-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: var(--radius);
  }

  .mobile-toggle .icon-menu,
  .mobile-toggle .icon-close {
    width: 28px;
    height: 28px;
  }

  .mobile-nav .container {
    padding: 12px 20px 18px;
  }

  .why-us-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-xl);
  }

  .why-us-img-bg {
    inset: 0;
  }

  .faq-toggle {
    align-items: flex-start;
    gap: 12px;
    padding: 18px 18px;
    line-height: 1.35;
    white-space: normal;
  }

  .faq-arrow {
    margin-top: 2px;
  }

  .faq-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mini-calc-box {
    padding: 24px 18px;
  }

  .mini-calc-header {
    align-items: flex-start;
  }

  .mini-calc-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .mini-calc-box .btn,
  .hero-actions .btn,
  .cta-actions .btn {
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 56px;
    padding: 14px 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}
