:root {
  --bg: #f7f9fb;
  --bg-soft: #eef2f6;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.92);
  --text: #0f172a;
  --muted: #334155;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --border: #dbe3ea;
  --ok: #166534;
  --danger: #be123c;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: radial-gradient(circle at 0% 0%, #e8edf3, var(--bg) 50%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: rgba(238, 242, 246, 0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.brand-text {
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.nav a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
}

.nav a:hover {
  color: var(--accent-strong);
}

.nav .nav-cta {
  background: var(--accent);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.hero {
  padding-top: 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
}

h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
}

h3 {
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
}

.home-hero-title {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.home-offer-title {
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 68ch;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cta:hover {
  background: var(--accent-strong);
}

.hero-image,
.about-image,
.gallery-img {
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
}

.hero-image {
  width: 100%;
  min-height: 300px;
  background: #e2e8f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #e2e8f0;
}

.section-heading {
  margin-bottom: 20px;
  max-width: 760px;
}

.page-hero {
  max-width: 760px;
}

.page-title {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.grid {
  display: grid;
  gap: 18px;
}

.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card p + p {
  margin-top: 8px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.card li {
  margin: 0 0 8px;
}

.quick-links {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.quick-link {
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.quick-link h3 {
  margin-bottom: 8px;
}

.quick-link p {
  line-height: 1.5;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.offer-item h3 {
  margin-bottom: 8px;
}

.offer-item p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-list summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--accent-strong);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 10px;
}

.quick-link:hover {
  transform: translateY(-2px);
  border-color: #9bb8b4;
}

.rich-content p,
.rich-content ul,
.rich-content ol {
  color: var(--muted);
}

.rich-content p,
.rich-content ul,
.rich-content ol {
  margin: 0 0 12px;
  line-height: 1.65;
}

.rich-content ul,
.rich-content ol {
  padding-left: 20px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: #f8fafc;
  font-size: 0.95rem;
}

.contact-card p {
  margin: 0 0 8px;
}

.contact-card {
  max-width: 760px;
}

.contact-card a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-actions a {
  text-decoration: none;
}

.contact-card .cta {
  color: #ffffff;
}

footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.footer-inner a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.button-secondary:hover {
  background: #d6dee9;
}

.button-danger {
  background: #ffe4e6;
  color: #be123c;
}

.status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.status-ok {
  border-color: #86efac;
  color: var(--ok);
  background: #f0fdf4;
}

.status-error {
  border-color: #fecdd3;
  color: var(--danger);
  background: #fff1f2;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 66px 0 0 0;
    background: rgba(15, 23, 42, 0.35);
    z-index: 15;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .cta,
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .topbar-inner {
    position: relative;
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
  }

  .nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    width: auto;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 20;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
  }

  .nav .nav-cta {
    text-align: center;
    margin-top: 4px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
