:root {
  --color-background: #0b131d;
  --color-surface: #111b29;
  --color-surface-alt: #152236;
  --color-surface-soft: rgba(17, 27, 41, 0.72);
  --color-accent: #ffb400;
  --color-accent-dark: #f49500;
  --color-text: #f4f7fb;
  --color-text-muted: #b8c4d7;
  --color-border: rgba(255, 255, 255, 0.08);
  --max-width: 1120px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 26px 54px -26px rgba(15, 24, 35, 0.72);
  --shadow-card: 0 22px 44px -28px rgba(0, 0, 0, 0.7);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-accent);
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: rgba(11, 19, 29, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 18px 0;
  transition: transform 0.35s ease, padding 0.35s ease;
  will-change: transform;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-logo picture {
  display: block;
}

.site-logo img {
  width: 118px;
  max-height: 68px;
  height: auto;
  transition: width 0.3s ease, max-height 0.3s ease;
}

.header__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.header__title {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.15;
}

.header__subtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.header__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.header__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.94rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-link:focus,
.contact-link:focus-visible {
  outline: none;
  border-color: rgba(255, 180, 0, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 180, 0, 0.25);
}

.contact-link:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
  }

  .header__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .header__logo-group {
    flex-direction: column;
  }

  .site-logo img {
    width: 96px;
    max-height: 58px;
  }

  .header__heading {
    align-items: center;
  }

  .header__cta {
    align-items: center;
    text-align: center;
  }

  .header__links {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .header__title {
    font-size: 1.36rem;
  }

  .header__subtitle {
    font-size: 0.92rem;
  }

  .site-logo img {
    width: 132px;
    max-height: 72px;
  }
}

.site-header--compact {
  padding-top: 6px;
  padding-bottom: 10px;
}

.site-header--compact .header__row {
  gap: 18px;
}

.site-header--compact .site-logo img {
  width: 98px;
  max-height: 60px;
}

.site-header--compact .header__title {
  font-size: 1.12rem;
}

.site-header--compact .header__subtitle {
  font-size: 0.82rem;
}

.site-header--compact .header__cta {
  gap: 8px;
}

.site-header--hidden {
  transform: translateY(-100%);
}

@media (hover: none) {
  .contact-link:focus,
  .contact-link:focus-visible {
    box-shadow: none;
    border-color: transparent;
  }
}


.hero {
  padding: 108px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 180, 0, 0.24), transparent 55%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 52%);
  opacity: 0.92;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}


.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1.07rem;
  color: var(--color-text-muted);
  margin: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #ffd166);
  color: #151515;
  box-shadow: 0 24px 42px -22px rgba(255, 180, 0, 0.85);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 54px -24px rgba(255, 180, 0, 0.95);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.metric {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
}

.metric__value {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
}

.metric__label {
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.hero__highlight {
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.price-ticker {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-ticker p {
  margin: 0;
  color: var(--color-text-muted);
}

.price-ticker__cards {
  display: grid;
  gap: 14px;
}

.ticker-card {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(15, 24, 35, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ticker-label {
  font-weight: 400;
  color: var(--color-text-muted);
}

.ticker-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
}

small {
  color: var(--color-text-muted);
}

.section {
  padding: 80px 0;
}

.section h2 {
  margin: 0 0 32px;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.section-process {
  background: linear-gradient(135deg, rgba(17, 27, 41, 0.9), rgba(11, 19, 29, 0.95));
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  padding-left: 78px;
}

.step__number {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step h3 {
  margin: 0 0 8px;
}

.section-pricing {
  background: var(--color-surface-alt);
}

.pricing-table {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-row:first-child {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.pricing-cell {
  font-size: 0.96rem;
  color: var(--color-text-muted);
}

.pricing-row:first-child .pricing-cell {
  color: var(--color-text);
}

.pricing-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
}

.section-design {
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.18), rgba(11, 19, 29, 0.92));
}

.design-grid {
  display: grid;
  gap: 20px;
}

.design-card {
  background: rgba(11, 19, 29, 0.72);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.design-card::after {
  content: '';
  position: absolute;
  inset: auto auto -30px -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.25), transparent 65%);
  pointer-events: none;
}

.design-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.section-locations {
  background: var(--color-surface);
}

.cities {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--color-text-muted);
}

.section-testimonials {
  background: linear-gradient(135deg, rgba(11, 19, 29, 0.95), rgba(17, 27, 41, 0.9));
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

.testimonial {
  margin: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: var(--color-text);
}

.testimonial figcaption {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.section-faq details {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}

.section-faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.section-faq summary::-webkit-details-marker {
  display: none;
}

.section-faq details + details {
  margin-top: 16px;
}

.section-faq details[open] {
  border-color: rgba(255, 180, 0, 0.4);
}

.section-guide {
  background: linear-gradient(135deg, rgba(8, 15, 24, 0.98), rgba(15, 24, 35, 0.9));
}

.guide-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--color-text);
}

.guide-intro {
  margin: 18px 0 32px;
  max-width: 820px;
  color: var(--color-text-muted);
}

.guide-articles {
  display: grid;
  gap: 36px;
}

.guide-article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.guide-article__stage {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.guide-article__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  color: var(--color-text);
}

.guide-article__subheading {
  margin: 24px 0 8px;
  font-size: 1.25rem;
  color: var(--color-accent);
}

.guide-article__subheading:first-of-type {
  margin-top: 12px;
}

.guide-article__subheading--cta {
  color: var(--color-text);
}

.guide-article p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.guide-article p + p {
  margin-top: 8px;
}

.guide-article strong {
  color: var(--color-text);
}

.guide-list {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--color-text-muted);
}

.guide-table-wrapper {
  margin: 24px 0 8px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(8, 15, 24, 0.88);
}

.guide-table th,
.guide-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  text-align: left;
  vertical-align: top;
}

.guide-table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  font-weight: 600;
}

.guide-table tbody tr:last-child th,
.guide-table tbody tr:last-child td {
  border-bottom: none;
}

.guide-table th[scope="row"] {
  color: var(--color-text);
  font-weight: 600;
}

.section-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.18), rgba(11, 19, 29, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-cta p {
  color: var(--color-text-muted);
  margin: 18px auto 36px;
  max-width: 660px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.footer {
  padding: 48px 0 72px;
  background: #080f18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
}

.footer__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.footer__brand {
  margin: 0 0 8px;
  color: var(--color-text);
  font-weight: 600;
}

.footer__logo {
  display: block;
  max-width: 150px;
  margin-top: 16px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__grid > div:first-child {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer__contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.footer__detail-link {
  color: var(--color-text);
  font-weight: 600;
}

.footer__detail-link:hover,
.footer__detail-link:focus,
.footer__detail-link:focus-visible {
  color: var(--color-accent);
}

.footer__partners {
  display: grid;
  gap: 16px;
}

.footer__heading {
  margin: 0;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.footer__description {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 320px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__links a {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.4;
}

.footer__links a:hover,
.footer__links a:focus {
  color: var(--color-accent);
}

.footer__guides {
  display: grid;
  gap: 12px;
}

.footer__guide-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer__guide-links a {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.4;
}

.footer__guide-links a:hover,
.footer__guide-links a:focus {
  color: var(--color-accent);
}

.chat-nudge {
  position: fixed;
  right: 26px;
  bottom: 156px;
  z-index: 150;
  border: none;
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-accent), #ffd166);
  color: #111722;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 24px 46px -24px rgba(255, 180, 0, 0.82);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.chat-nudge:hover,
.chat-nudge:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -25px rgba(255, 180, 0, 0.95);
}

.chat-nudge:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
}

.chat-nudge__emoji {
  font-size: 1.9rem;
  line-height: 1;
}

.chat-nudge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
}

.chat-nudge__headline {
  font-size: 0.96rem;
  font-weight: 700;
}

.chat-nudge__subline {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(17, 23, 34, 0.72);
}

.chat-nudge--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

#tawk-bubble-container img[src*="attention-grabbers"] {
  display: none !important;
}

@media (max-width: 639px) {
  .chat-nudge {
    right: 16px;
    left: 16px;
    bottom: 148px;
    justify-content: center;
    padding: 12px 18px;
  }

  .chat-nudge__text {
    align-items: center;
    text-align: center;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  padding: 14px 18px;
  display: flex;
  justify-content: center;
  box-shadow: 0 -14px 34px -18px rgba(0, 0, 0, 0.45);
  z-index: 130;
}

.sticky-cta__link {
  font-weight: 700;
  color: #181818;
  font-size: 1.05rem;
}

@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }


  .chat-nudge {
    bottom: 32px;
    right: 32px;
  }


  .hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero__highlight {
    margin-left: auto;
    max-width: 420px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step {
    padding-left: 26px;
  }

  .step__number {
    position: static;
    margin-bottom: 18px;
  }

  .pricing-row {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
  }

  .design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }



  .cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-actions {
    flex-direction: row;
  }

  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
  }

  .footer__grid > div:first-child {
    max-width: 280px;
  }
}

@media (min-width: 960px) {
  .hero__grid {
    gap: 60px;
  }

  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .design-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }



  .cities {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
