/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ea;
  --surface: #ffffff;
  --surface-soft: #f2ede4;
  --surface-strong: #e9dfcf;
  --surface-dark: #101b2d;
  --surface-dark-2: #18263d;
  --text: #202531;
  --text-soft: #626a77;
  --heading: #111a2a;
  --border: #ddd2c1;
  --accent: #b28a59;
  --accent-dark: #87663b;
  --accent-soft: #efe2d0;
  --shadow: 0 18px 45px rgba(16, 27, 45, 0.08);
  --shadow-strong: 0 24px 60px rgba(16, 27, 45, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1240px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(93%, var(--container));
  margin: 0 auto;
}

section {
  padding: 96px 0;
}

.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.15;
  color: var(--heading);
  margin-bottom: 14px;
}

.section-subtext {
  color: var(--text-soft);
  font-size: 1.06rem;
}

.center {
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 700;
  transition: var(--transition);
}

.text-link:hover {
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--heading);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #17243b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--heading);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

.section-action {
  margin-top: 36px;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 210, 193, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 480px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading);
}

.brand-tagline {
  font-size: 0.74rem;
  color: var(--text-soft);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--surface);
  color: var(--heading);
}

.site-nav .nav-cta {
  background: var(--heading);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: #17243b;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  margin: 5px auto;
  transition: var(--transition);
}

/* =========================
   HERO
========================= */
.hero-section {
  padding: 94px 0 74px;
  background:
    radial-gradient(circle at top right, rgba(178, 138, 89, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.38), rgba(246,242,234,0.95));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 58px;
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.02;
  color: var(--heading);
  margin-bottom: 12px;
}

.hero-content h2 {
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mini-point {
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  box-shadow: var(--shadow);
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(221, 210, 193, 0.9);
}

/* =========================
   COMMON GRID / CARDS
========================= */
.card-grid {
  display: grid;
  gap: 24px;
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card,
.process-card,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(221, 210, 193, 0.96);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.info-card h3,
.service-card h3,
.process-card h3,
.faq-item h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--heading);
  margin-bottom: 10px;
}

.info-card p,
.service-card p,
.process-card p,
.faq-item p {
  color: var(--text-soft);
  font-size: 0.99rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card.featured-service,
.info-card.featured-service {
  background: linear-gradient(145deg, #fff, #f6efe4);
  border-color: #d8c6a8;
}

.service-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-step {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.85rem;
}

/* =========================
   SPLIT SECTIONS
========================= */
.split-section {
  padding: 88px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
}

.split-grid.reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.split-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: var(--heading);
  margin-bottom: 18px;
}

.split-content p {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 1rem;
}

.split-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(221, 210, 193, 0.85);
}

/* =========================
   SPECIFIC SECTION TONES
========================= */
.trust-section {
  background: transparent;
}

.services-preview-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.36), rgba(241,237,228,0.72));
}

.why-choose-section {
  background: transparent;
}

.method-preview-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(233,223,207,0.62));
}

.credentials-preview-section {
  background: transparent;
}

.faq-preview-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(241,237,228,0.52));
}

.about-preview-section .split-image img,
.credentials-preview-section .split-image img {
  aspect-ratio: 4 / 4.2;
}

.mini-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}

.mini-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--heading);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* =========================
   CTA BANNER
========================= */
.cta-banner {
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2));
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-banner .section-kicker {
  color: #dcb780;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 250px;
  justify-content: flex-end;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--heading);
}

.cta-banner .btn-primary:hover {
  background: #f4efe8;
}

.cta-banner .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #10192a;
  color: #fff;
  margin-top: 54px;
  padding-top: 76px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 42px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-size: 1.08rem;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.9;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding: 18px 0 26px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

/* =========================
   INNER PAGE HERO
========================= */
.inner-hero {
  padding: 96px 0 50px;
}

.inner-hero .hero-box {
  background: linear-gradient(145deg, #fff, #f4eee4);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 58px 42px;
  box-shadow: var(--shadow-strong);
}

.inner-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.08;
  color: var(--heading);
  margin-bottom: 14px;
}

.inner-hero p {
  max-width: 860px;
  color: var(--text-soft);
  font-size: 1.07rem;
}

/* =========================
   CONTENT HELPERS
========================= */
.content-section p {
  color: var(--text-soft);
  margin-bottom: 14px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.feature-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--heading);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.image-card img {
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(221, 210, 193, 0.85);
}

.simple-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
}

.contact-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow-strong);
}

.contact-card h3,
.form-card h3 {
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: var(--heading);
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.contact-info-list li {
  color: var(--text-soft);
}

.contact-info-list strong {
  color: var(--heading);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  color: var(--heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(176, 138, 89, 0.08);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.whatsapp-form-note {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.whatsapp-form-note a {
  color: var(--accent-dark);
  font-weight: 700;
}

/* =========================
   FLOATING CONTACT DOCK
========================= */
.floating-contact-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(16, 27, 45, 0.2);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.floating-contact-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.floating-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  font-size: 0.9rem;
  font-weight: 800;
}

.floating-contact-label {
  font-size: 0.95rem;
  line-height: 1;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #1fa855, #128c43);
}

.floating-call {
  background: linear-gradient(135deg, #0f1b2d, #223654);
}

.floating-email {
  background: linear-gradient(135deg, #8a6a3f, #b28a59);
}

/* =========================
   PRIVACY PAGE SMALL POLISH
========================= */
.content-section .section-heading h2,
.split-section .section-heading h2 {
  max-width: 760px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
  .brand {
    max-width: 430px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .contact-grid,
  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner-actions {
    justify-content: flex-start;
    min-width: auto;
  }
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
    gap: 12px;
  }

  .brand {
    max-width: 100%;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: 76px;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    width: min(92%, var(--container));
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .site-nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .hero-section {
    padding-top: 72px;
  }

  .hero-mini-points {
    gap: 10px;
  }

  .faq-list,
  .mini-feature-list {
    grid-template-columns: 1fr;
  }

  .floating-contact-dock {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact-btn {
    min-width: 132px;
    padding: 11px 14px;
  }
}

@media (max-width: 640px) {
  .four-grid,
  .three-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .simple-cta,
  .quick-actions,
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner {
    padding: 30px 22px;
  }

  .inner-hero .hero-box,
  .contact-card,
  .form-card,
  .info-card,
  .service-card,
  .process-card,
  .faq-item {
    padding: 24px 18px;
  }

  .brand {
    max-width: 280px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .floating-contact-btn {
    min-width: auto;
    padding: 12px 14px;
  }

  .floating-contact-label {
    display: none;
  }
}