/* Digiturk Burada referans paleti: mor/lacivert tonlar */
:root {
  --purple: #5d2e8e;
  --purple-dark: #5b2d90;
  --purple-darker: #4a2473;
  --purple-nav: #1e0938;
  --purple-deep: #2a0c3e;
  --purple-title: #1f1147;
  --purple-text: #64607c;
  --purple-muted: #6b6685;
  --purple-light: #f7f2ff;
  --purple-border: #ece8f8;
  --purple-badge: #7b1672;
  --white: #ffffff;
  --bg: #ffffff;
  --shadow-card: 0 18px 45px rgba(22, 12, 68, 0.08);
  --shadow-hover: 0 25px 55px rgba(22, 12, 68, 0.12);
  --radius: 12px;
  --radius-lg: 15px;
  --radius-xl: 26px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--purple-title);
  background: var(--bg);
  line-height: 1.6;
  padding-bottom: 72px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER (referans: #1e0938 navbar) ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--purple-nav);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 8px 0;
}

.logo-img {
  height: 56px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--purple-dark);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header-tel {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-header-tel i {
  margin-right: 6px;
}

/* Referans: .buttun-hb */
.buttun-hb {
  background-color: var(--purple) !important;
  color: #fff !important;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  border: 1px solid var(--purple-dark);
  line-height: 1.44;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background 0.3s ease;
  animation: btnGlow 1.5s infinite;
}

.buttun-hb:hover {
  background-color: var(--purple-darker) !important;
  color: #fff;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 3px rgba(91, 45, 144, 0.4); }
  50% { box-shadow: 0 0 12px rgba(91, 45, 144, 0.65); }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ========== BUTONLAR ========== */
.buton {
  display: inline-block;
  padding: 12px 20px;
  background-color: var(--purple);
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
}

.buton:hover {
  background-color: var(--purple-darker);
  color: #fff;
}

.buton-light {
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid var(--purple-border);
}

.buton-light:hover {
  background: #ece5ff;
  color: var(--purple-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: background 0.3s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-cta { background: var(--purple); color: #fff; }
.btn-cta:hover { background: var(--purple-darker); color: #fff; }
.btn-primary { background: var(--purple-dark); color: #fff; }
.btn-primary:hover { background: var(--purple-darker); color: #fff; }
.btn-ghost {
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid var(--purple-border);
}
.btn-ghost:hover { background: #ece5ff; }

/* ========== HERO / BANNER ========== */
.hero {
  background-image:
    linear-gradient(180deg, rgba(42, 12, 62, 0.93) 0%, rgba(30, 9, 56, 0.9) 50%, rgba(61, 21, 96, 0.88) 100%),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
  padding: 50px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(123, 22, 114, 0.35), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--purple-badge);
  color: #fff;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}

.hero-text h1 span { color: #d88cff; }

.hero-text > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-points li {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 14px;
}

.hero-points i {
  color: #d88cff;
  margin-right: 6px;
}

.hero-promo {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-promo img,
.hero-promo-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
  display: block;
}

.hero-promo h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-promo .promo-price {
  margin: 16px 0;
}

.hero-promo .promo-price strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.hero-promo .promo-price span {
  font-size: 13px;
  opacity: 0.9;
}

.hero-promo .cta-buy {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, var(--purple-deep), var(--purple-deep));
  border: 1px solid rgba(216, 140, 255, 0.45);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  margin-top: 8px;
}

/* ========== SECTION TITLES (ortasection-title) ========== */
.section { padding: 50px 0; }
.section-alt { background: #faf9fc; }

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 20px;
  font-size: 26px;
  font-weight: 700;
  color: var(--purple-title);
  line-height: 1.3;
}

.section-head h2::before,
.section-head h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 70px;
  height: 3px;
  border-radius: 50px;
  transform: translateY(-50%);
}

.section-head h2::before {
  right: 100%;
  margin-right: 15px;
  background: linear-gradient(90deg, transparent, var(--purple-title));
}

.section-head h2::after {
  left: 100%;
  margin-left: 15px;
  background: linear-gradient(90deg, var(--purple-title), transparent);
}

.section-head p,
.orth3 {
  color: var(--purple-muted);
  font-size: 16px;
  margin: 12px 0 0;
  font-weight: 400;
}

.center-action { text-align: center; margin-top: 32px; }
.empty-state { text-align: center; color: var(--purple-muted); padding: 40px 0; }

/* ========== PACKAGE CARDS (referans orta.css) ========== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 0 20px 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.package-card-visual {
  margin: 0 -20px 14px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--purple-border);
}

.package-card-visual img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  object-position: center;
  padding: 10px 12px;
  display: block;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--purple-badge);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  z-index: 2;
}

.package-card-header {
  margin: 0 -20px 14px;
}

.package-card-header h3 {
  display: block;
  margin: 0;
  padding: 15px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--purple-light);
  border-bottom: 1px solid #ece7f8;
  text-align: center;
  color: var(--purple-title);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.package-desc {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--purple-text);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--purple-text);
  margin-bottom: 8px;
}

.feature-list i {
  color: var(--purple);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.feature-list-lg li { font-size: 15px; }

.package-price {
  text-align: center;
  margin-bottom: 16px;
}

.package-price strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  color: var(--purple);
}

.package-price span {
  display: block;
  color: var(--purple);
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.package-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-actions .buton { width: 100%; }
.buton-block { width: 100%; font-size: 16px; padding: 14px; }

/* ========== WHY GRID ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-item {
  background: #fff;
  border: 1px solid var(--purple-border);
  border-top: 5px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(93, 46, 142, 0.12);
}

.why-icon {
  font-size: 45px;
  color: #6a1b9a;
  margin-bottom: 12px;
  display: block;
}

.why-item h3 {
  margin: 0 0 8px;
  color: #4a148c;
  font-weight: 700;
  font-size: 16px;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* ========== CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, var(--purple-nav), var(--purple-deep));
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 20px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  font-weight: 800;
}

.cta-inner p { margin: 0; opacity: 0.9; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(180deg, var(--purple-nav), var(--purple-deep));
  color: #fff;
  padding: 40px 0 48px;
}

.page-hero h1 {
  margin: 10px 0 8px;
  font-size: 2rem;
  font-weight: 800;
}

.page-hero p { margin: 0; color: rgba(255,255,255,0.85); }

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 12px; }

/* ========== DETAIL PAGE ========== */
.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.detail-main h1 {
  margin: 8px 0 12px;
  color: var(--purple-title);
  font-size: 2rem;
  font-weight: 800;
}

.detail-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--purple-border);
  background: #fff;
}

.detail-cover img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  padding: 16px;
  background: linear-gradient(180deg, #faf8ff, #fff);
}

.price-box-thumb {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
  padding: 6px;
}

.pill {
  display: inline-block;
  background: rgba(93, 46, 142, 0.12);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.lead { font-size: 1.1rem; color: var(--purple-text); }
.detail-desc { margin: 18px 0; line-height: 1.8; color: var(--purple-text); }
.detail-subtitle { color: var(--purple-title); margin: 24px 0 12px; font-size: 1.25rem; font-weight: 700; }

.advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.advantage {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--purple-light);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.advantage i { color: var(--purple); font-size: 1.3rem; }
.advantage span { font-weight: 600; color: var(--purple-title); }

.detail-aside { position: sticky; top: 90px; }

.price-box {
  background: #fff;
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.price-box-label { color: var(--purple-muted); font-size: 14px; }

.price { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 8px 0 18px; }
.price-amount { font-size: 2.2rem; font-weight: 900; color: var(--purple); }
.price-label { color: var(--purple); font-size: 14px; }
.price-box .btn { margin-bottom: 10px; }
.price-note { font-size: 12px; color: var(--purple-muted); margin: 10px 0 0; }

/* ========== FORMS ========== */
.form-wrap { max-width: 680px; margin: 0 auto; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: var(--purple-title); }
.req { color: var(--purple-badge); }

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--purple-title);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-group input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.4;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
  filter: invert(0.25) sepia(1) saturate(3) hue-rotate(240deg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(93, 46, 142, 0.15);
}

.is-invalid { border-color: #c62828 !important; }
.err { color: #c62828; font-size: 12px; margin-top: 4px; display: block; }

.check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  color: var(--purple-text);
}

.check-label input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--purple); }
.form-back { text-align: center; margin-top: 16px; }
.form-back a { color: var(--purple); font-weight: 600; }

.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 14px;
}

.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f3e8ff; color: var(--purple-dark); border: 1px solid #e9d5ff; }

/* ========== THANK YOU / 404 ========== */
.thankyou { text-align: center; max-width: 520px; margin: 40px auto; }

.thankyou-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 2.4rem;
}

.thankyou-icon.error { background: var(--purple-nav); }

.thankyou h1 { color: var(--purple-title); margin: 0 0 10px; font-weight: 800; }
.thankyou p { color: var(--purple-muted); }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

.muted { color: var(--purple-muted); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--purple-nav);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  position: relative;
}

.footer-wave {
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--purple-nav));
  margin-top: -1px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding: 40px 20px 28px;
}

.logo-img-footer { height: 48px; filter: brightness(0) invert(1); margin-bottom: 14px; }

.footer-desc { font-size: 14px; line-height: 1.7; opacity: 0.85; margin: 0; }

.footer-col h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: #d88cff; }
.footer-col i { color: #d88cff; margin-right: 8px; width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font-size: 13px;
  opacity: 0.75;
}

/* ========== SABİT ALT BAR: Hızlı Üye Ol + Hemen Ara ========== */
.floating-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border-top: 2px solid var(--purple-border);
  box-shadow: 0 -6px 28px rgba(30, 9, 56, 0.18);
}

.floating-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
  min-height: 58px;
}

.floating-cta-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.floating-cta-btn i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.floating-cta-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.floating-cta-signup {
  background: linear-gradient(135deg, var(--purple), #7b1672);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-cta-signup:hover {
  background: linear-gradient(135deg, var(--purple-darker), var(--purple));
}

.floating-cta-call {
  background: linear-gradient(135deg, var(--purple-nav), var(--purple-deep));
  animation: callPulse 2s ease-in-out infinite;
}

.floating-cta-call:hover {
  background: linear-gradient(135deg, #2d1048, var(--purple-nav));
  animation: none;
}

.floating-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.floating-cta-text strong {
  font-size: 15px;
  font-weight: 800;
}

.floating-cta-text small {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
  margin-top: 2px;
}

@keyframes callPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(216, 140, 255, 0); }
  50% { box-shadow: inset 0 0 0 2px rgba(216, 140, 255, 0.35); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; }

  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--purple-nav);
    flex-direction: column;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .main-nav.open { display: flex; }

  .header-inner { position: relative; flex-wrap: wrap; }
  .header-actions { display: none; }

  .buttun-hb { background-color: var(--purple-nav) !important; }

  .floating-cta-btn {
    flex-direction: column;
    gap: 4px;
    padding: 10px 8px;
    font-size: 13px;
    min-height: 56px;
  }

  .floating-cta-btn i { font-size: 1.1rem; }

  .floating-cta-text {
    align-items: center;
    text-align: center;
  }

  .floating-cta-text small { display: none; }

  .hero-text h1 { font-size: 1.85rem; }
  .package-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .advantages { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }

  .section-head h2::before,
  .section-head h2::after { width: 28px; height: 2px; }
  .section-head h2 { font-size: 20px; }
}

@media (min-width: 769px) {
  .hbsvr-tel { display: inline-flex; align-items: center; }
}

.address-fieldset {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem 1.25rem 0.25rem;
  margin: 0 0 1.25rem;
}

.address-fieldset legend {
  padding: 0 0.5rem;
  font-weight: 600;
}
