:root{
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 20px 50px rgba(2, 6, 23, 0.10);
  --shadow-soft: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 26px;
  --radius-sm: 14px;
  --accent: #B45309;
  --accent-2: #F59E0B;
  --accent-ink: #7C2D12;
  --dark: #0B1220;
  --container: 1420px;
  --t: 0.45s; /* micro interactions only */
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link{
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform var(--t) ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); outline: none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: box-shadow var(--t) ease, background var(--t) ease;
}
.site-header[data-elevate="true"]{
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 240px;
}
.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.16), rgba(15, 23, 42, 0.10));
  border: 1px solid rgba(180, 83, 9, 0.22);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform var(--t) ease;
}
.brand-mark:hover{ transform: translateY(-2px); }
.mark-dot{
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent));
  box-shadow: 0 8px 20px rgba(180, 83, 9, 0.24);
}
.brand-text{ display: flex; flex-direction: column; gap: 1px; }
.brand-name{
  font-weight: 760;
  letter-spacing: -0.02em;
}
.brand-sub{
  color: var(--muted);
  font-size: 13px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle{
  display: none;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 14px;
  padding: 10px 12px;
}
.nav-toggle-lines{
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(15, 23, 42, 0.84);
  border-radius: 999px;
  transition: transform var(--t) ease, opacity var(--t) ease;
}
.nav-toggle-lines::before{ top: 1px; }
.nav-toggle-lines::after{ bottom: 1px; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link{
  text-decoration: none;
  color: rgba(15, 23, 42, 0.88);
  font-weight: 610;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background var(--t) ease, transform var(--t) ease;
}
.nav-link:hover{
  background: rgba(180, 83, 9, 0.10);
  transform: translateY(-1px);
}
.nav-cta{
  background: rgba(180, 83, 9, 0.14);
  border: 1px solid rgba(180, 83, 9, 0.24);
}

main{ overflow-x: clip; }

.section{
  padding: 70px 0;
}
.section-about{ padding-top: 48px; }
.section-hero{
  padding: 34px 0 68px;
  position: relative;
}
.hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-svg{
  width: 100%;
  height: 100%;
  opacity: 1;
}
.hero-container{ position: relative; }

.h1{
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.04em;
  margin: 10px 0 14px;
  line-height: 1.05;
}
.h2{
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.03em;
  margin: 10px 0;
  line-height: 1.12;
}
.h3{
  font-size: 18px;
  margin: 10px 0 6px;
}
.lead{
  color: rgba(15, 23, 42, 0.82);
  font-size: 16.5px;
  margin: 10px 0 14px;
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(124, 45, 18, 0.92);
  font-weight: 780;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-grid{
  display: grid;
  gap: 26px;
}
.about-grid{
  grid-template-columns: 1.35fr 0.75fr;
  align-items: start;
}
.copy p{
  color: rgba(15, 23, 42, 0.84);
}
.about-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.aside-card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.aside-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.aside-title{
  font-weight: 780;
}
.aside-badge{
  font-size: 12px;
  font-weight: 760;
  color: rgba(124, 45, 18, 0.92);
  background: rgba(180, 83, 9, 0.10);
  border: 1px solid rgba(180, 83, 9, 0.18);
  padding: 8px 10px;
  border-radius: 999px;
}
.aside-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aside-item{
  display: grid;
  gap: 6px;
}
.aside-k{
  color: rgba(71, 85, 105, 0.95);
  font-weight: 650;
  font-size: 13px;
}
.aside-v{
  color: rgba(15, 23, 42, 0.86);
  font-size: 14px;
}
.aside-v a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 83, 9, 0.30);
}
.aside-v a:hover{ border-bottom-color: rgba(180, 83, 9, 0.6); }
.aside-callout{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.14);
}
.spark{
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.95), rgba(180, 83, 9, 0.95));
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.24);
  flex: 0 0 auto;
  margin-top: 2px;
}
.aside-callout-title{
  font-weight: 780;
}
.aside-callout-text{
  color: rgba(15, 23, 42, 0.82);
  margin-top: 4px;
  font-size: 14px;
}

.hero-container .hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}
.hero-kicker{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.kicker-pill{
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.10);
  font-weight: 770;
}
.kicker-sep{ color: rgba(71, 85, 105, 0.8); }
.kicker-text{
  color: rgba(15, 23, 42, 0.78);
  font-weight: 700;
}
.hero-lead{
  font-size: 17px;
  max-width: 62ch;
  color: rgba(15, 23, 42, 0.82);
  margin: 0 0 18px;
}

.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.btn{
  appearance: none;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  font-weight: 760;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--t) ease, background var(--t) ease, border-color var(--t) ease, box-shadow var(--t) ease;
  user-select: none;
}
.btn-wide{ min-width: 210px; }
.btn-block{ width: 100%; }
.btn-primary{
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.95), rgba(124, 45, 18, 0.95));
  color: #fff;
  box-shadow: 0 18px 38px rgba(180, 83, 9, 0.28);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(180, 83, 9, 0.32);
}
.btn-outline{
  background: rgba(255,255,255,0.70);
  border-color: rgba(180, 83, 9, 0.34);
  color: rgba(124, 45, 18, 0.98);
}
.btn-outline:hover{
  transform: translateY(-2px);
  border-color: rgba(180, 83, 9, 0.60);
  background: rgba(255,255,255,0.9);
}
.btn-ghost{
  background: transparent;
  border-color: rgba(15, 23, 42, 0.16);
  color: rgba(15, 23, 42, 0.92);
}
.btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(180, 83, 9, 0.42);
  background: rgba(180, 83, 9, 0.08);
}

.hero-metrics{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.metric{
  border-radius: 20px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 14px 14px;
}
.metric-num{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 20px;
}
.metric-label{
  color: rgba(71, 85, 105, 0.95);
  font-size: 13px;
  margin-top: 6px;
}

.hero-side{
  display: grid;
  gap: 14px;
  justify-items: end;
  align-content: start;
}
.hero-card{
  width: 100%;
  max-width: 430px;
  background: rgba(11, 18, 32, 0.96);
  color: rgba(255,255,255,0.94);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 158, 11, 0.18);
  padding: 18px;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.22);
  position: relative;
  overflow: hidden;
}
.hero-card::before{
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.55), rgba(180, 83, 9, 0.18));
  filter: blur(0px);
  opacity: 0.9;
}
.hero-card-top{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.hero-card-title{
  font-weight: 840;
}
.hero-card-chip{
  font-size: 12px;
  font-weight: 780;
  color: rgba(245, 158, 11, 0.95);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.18);
  padding: 8px 10px;
  border-radius: 999px;
}
.hero-checks{
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hero-checks li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}
.check-dot{
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 5px;
  background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.95), rgba(180, 83, 9, 0.95));
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.22);
  flex: 0 0 auto;
}
.hero-card-bottom{
  position: relative;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.hero-small{
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.link-strong{
  color: rgba(245, 158, 11, 0.98);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 158, 11, 0.40);
}
.link-strong:hover{ border-bottom-color: rgba(245, 158, 11, 0.75); }

.hero-stamp{
  width: 160px;
  height: 160px;
  border-radius: 44px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(15, 23, 42, 0.10);
  transform: rotate(6deg);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}
.stamp-inner{
  width: 130px;
  height: 130px;
  border-radius: 40px;
  border: 1px dashed rgba(180, 83, 9, 0.55);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}
.stamp-line1{
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(124, 45, 18, 0.96);
  font-size: 28px;
}
.stamp-line2{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 650;
}

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}
.section-head-tight{ margin-bottom: 18px; }
.section-note{
  color: rgba(71, 85, 105, 0.95);
  font-weight: 700;
}

/* Services */
.services-layout{
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 18px;
  align-items: start;
}
.price-stack{
  display: grid;
  gap: 12px;
  position: sticky;
  top: 92px;
}
.price-chip{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 16px 16px;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
}
.price-chip-alt{
  border-color: rgba(180, 83, 9, 0.20);
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.10), rgba(255,255,255,0.78));
}
.price-chip-warm{
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(255,255,255,0.75));
  border-color: rgba(245, 158, 11, 0.22);
}
.price-chip-title{
  font-weight: 760;
  color: rgba(71, 85, 105, 0.95);
  font-size: 13px;
}
.price-chip-value{
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.services-hint{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(15, 23, 42, 0.16);
  background: rgba(255,255,255,0.55);
  color: rgba(71, 85, 105, 0.98);
  font-weight: 650;
}

.services-right{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
}
.service-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform var(--t) ease, border-color var(--t) ease, background var(--t) ease;
}
.service-card:hover{
  transform: translateY(-3px);
  border-color: rgba(180, 83, 9, 0.24);
  background: rgba(255,255,255,0.92);
}
.service-card p{
  margin: 0;
  color: rgba(15, 23, 42, 0.84);
  font-size: 15px;
}
.service-icon{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: rgba(180, 83, 9, 0.10);
  border: 1px solid rgba(180, 83, 9, 0.18);
  display: grid;
  place-items: center;
}
.service-card-a{ grid-column: 1 / 2; grid-row: 1; }
.service-card-b{ grid-column: 2 / 3; grid-row: 1; }
.service-card-c{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 34px;
}
.service-badge{
  position: absolute;
  top: 14px;
  left: 18px;
  background: rgba(180, 83, 9, 0.12);
  border: 1px solid rgba(180, 83, 9, 0.22);
  color: rgba(124, 45, 18, 0.98);
  font-weight: 820;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* Process */
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step-card{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
  transition: transform var(--t) ease, border-color var(--t) ease;
}
.step-card:hover{
  transform: translateY(-3px);
  border-color: rgba(180, 83, 9, 0.22);
}
.step-num{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 920;
  letter-spacing: -0.03em;
  background: rgba(180, 83, 9, 0.12);
  border: 1px solid rgba(180, 83, 9, 0.22);
  color: rgba(124, 45, 18, 0.98);
}
.step-card p{
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.84);
  font-size: 15px;
}

/* Benefits */
.benefits-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}
.benefits-panel{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}
.benefits-title{
  font-weight: 860;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.benefits-list{
  display: grid;
  gap: 12px;
}
.benefit-row{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}
.benefit-icon{
  width: 14px;
  height: 14px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.40);
  border: 1px solid rgba(180, 83, 9, 0.35);
  margin-top: 6px;
}
.benefit-k{
  font-weight: 860;
}
.benefit-v{
  color: rgba(71, 85, 105, 0.96);
  margin-top: 4px;
  font-size: 14px;
}
.benefits-aside{
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.98), rgba(11, 18, 32, 0.92));
  border-radius: 26px;
  border: 1px solid rgba(245, 158, 11, 0.20);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.18);
  padding: 18px;
  color: rgba(255,255,255,0.92);
  display: grid;
  align-content: space-between;
}
.aside-quote{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: start;
}
.quote-mark{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.18);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.96);
  font-size: 26px;
}
.quote-text{
  font-weight: 720;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.quote-author{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.74);
  font-weight: 680;
}
.benefits-cta{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.fineprint{
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  font-weight: 650;
}

/* FAQ */
.faq-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}
.faq-copy{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  padding: 18px;
}
.faq-accordion{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  padding: 10px;
}
.faq-item{
  border-radius: 20px;
  overflow: hidden;
}
.faq-q{
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 820;
  color: rgba(15, 23, 42, 0.92);
  transition: background var(--t) ease;
}
.faq-q:hover{ background: rgba(180, 83, 9, 0.08); }
.faq-icon{
  width: 40px;
  height: 40px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.70);
  position: relative;
  flex: 0 0 auto;
}
.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background: rgba(124, 45, 18, 0.90);
  border-radius: 999px;
  transition: transform var(--t) ease, opacity var(--t) ease;
}
.faq-icon::after{
  width: 2px;
  height: 18px;
}
.faq-item[data-open="true"] .faq-icon::after{
  transform: rotate(90deg);
  opacity: 0.35;
}
.faq-a{
  padding: 0 14px 14px;
  color: rgba(71, 85, 105, 0.98);
  font-size: 14.5px;
}

/* Contact */
.contact-layout{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}
.contact-copy{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  padding: 18px;
}
.contact-quick{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15, 23, 42, 0.14);
  display: grid;
  gap: 10px;
}
.quick-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: start;
}
.quick-k{
  color: rgba(71, 85, 105, 0.98);
  font-weight: 720;
  font-size: 13px;
}
.quick-v a{
  color: rgba(15, 23, 42, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 83, 9, 0.30);
}
.quick-v a:hover{ border-bottom-color: rgba(180, 83, 9, 0.62); }

.contact-form{
  background: rgba(11, 18, 32, 0.98);
  border-radius: 26px;
  border: 1px solid rgba(245, 158, 11, 0.20);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.18);
  padding: 18px;
  color: rgba(255,255,255,0.92);
}
.form-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{
  display: grid;
  gap: 8px;
}
.field-span{ grid-column: 1 / -1; }
.field-label{
  font-size: 13px;
  font-weight: 720;
  color: rgba(255,255,255,0.78);
}
input, select, textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
  transition: border-color var(--t) ease, background var(--t) ease;
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,0.56); }
input:focus, select:focus, textarea:focus{
  border-color: rgba(245, 158, 11, 0.55);
  background: rgba(255,255,255,0.12);
}

.field-error{
  min-height: 16px;
  font-size: 12.5px;
  color: rgba(254, 202, 202, 0.95);
}

.form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.btn-outline{
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.20);
  background: transparent;
}
.btn-outline:hover{
  border-color: rgba(245, 158, 11, 0.50);
  background: rgba(245, 158, 11, 0.08);
}
.form-note{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.74);
  font-size: 13.5px;
}

.toast{
  margin-top: 12px;
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 158, 11, 0.26);
  background: rgba(245, 158, 11, 0.10);
  color: rgba(255,255,255,0.92);
  transition: opacity var(--t) ease, transform var(--t) ease;
}

.site-footer{
  padding: 32px 0 44px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.55);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-left{
  display: grid;
  gap: 6px;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 4px;
}
.footer-brand{
  font-weight: 900;
  letter-spacing: -0.02em;
}
.footer-meta{
  color: rgba(71, 85, 105, 0.98);
  font-weight: 650;
  font-size: 14px;
}
.footer-right{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-link{
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
  font-weight: 780;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.65);
  transition: transform var(--t) ease, border-color var(--t) ease, background var(--t) ease;
}
.footer-link:hover{
  transform: translateY(-2px);
  border-color: rgba(180, 83, 9, 0.30);
  background: rgba(255,255,255,0.88);
}
.footer-link-inline{
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
  font-weight: 780;
  border-bottom: 1px solid rgba(180, 83, 9, 0.40);
}
.footer-link-inline:hover{
  border-bottom-color: rgba(180, 83, 9, 0.75);
}

/* Map embed */
.map-wrap{
  margin-top: 16px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
  background: rgba(255,255,255,0.60);
}
.map-iframe{
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

/* Policy pages */
.policy-card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}
.policy-card p{
  color: rgba(15, 23, 42, 0.86);
  margin: 10px 0;
}
.policy-card ul{
  margin: 10px 0;
  padding-left: 20px;
}
.policy-card li{
  margin: 8px 0;
  color: rgba(15, 23, 42, 0.86);
}
.policy-card a{
  color: rgba(124, 45, 18, 0.98);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 83, 9, 0.30);
}
.policy-card a:hover{
  border-bottom-color: rgba(180, 83, 9, 0.70);
}

/* Photo blocks */
.photo-frame{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  background: rgba(255,255,255,0.55);
}
.photo-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform var(--t) ease;
}
.photo-frame:hover img{
  transform: scale(1.05);
}
.photo-ratio-2x1{ aspect-ratio: 2 / 1; }
.photo-ratio-1x1{ aspect-ratio: 1 / 1; }
.photo-ratio-4x3{ aspect-ratio: 4 / 3; }

.about-photos{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-photo{
  height: 148px;
}
.service-photo{
  height: 116px;
  margin-bottom: 12px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
}
.service-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-photos{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.benefits-photo{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.20);
  background: rgba(245, 158, 11, 0.06);
  height: 160px;
}
.benefits-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}
.contact-photo{
  height: 170px;
  margin-bottom: 14px;
}
.aside-photo{
  height: 132px;
  margin: -18px -18px 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.55);
}
.aside-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t) ease;
}
.aside-card:hover .aside-photo img{
  transform: scale(1.04);
}

/* Trust-page photo grids */
.trust-photo-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trust-photo-grid .photo-frame{
  background: rgba(255,255,255,0.52);
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-side{ justify-items: start; }
  .services-layout{ grid-template-columns: 1fr; }
  .price-stack{ position: relative; top: 0; }
  .services-right{ grid-template-columns: 1fr; }
  .service-card-c{ padding-top: 36px; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .benefits-grid{ grid-template-columns: 1fr; }
  .faq-grid{ grid-template-columns: 1fr; }
  .contact-layout{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .map-iframe{ height: 220px; }
  .footer-links{ justify-content: flex-start; }
  .about-photos{ grid-template-columns: 1fr; }
  .process-photos{ grid-template-columns: 1fr; }
  .trust-photo-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px){
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .nav-links{
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 22px;
    padding: 14px;
    flex-direction: column;
    gap: 6px;
    display: none;
  }
  .nav-links[data-open="true"]{ display: flex; }
  .nav-link{ width: 100%; text-align: center; }
  .process-grid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
}

/* Cookie banner */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 0 16px;
}
.cookie-banner-inner{
  width: 100%;
  max-width: 980px;
  border-radius: 26px;
  background: rgba(11, 18, 32, 0.96);
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 25px 70px rgba(2, 6, 23, 0.28);
  color: rgba(255,255,255,0.92);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookie-text{
  font-size: 14px;
  font-weight: 650;
  color: rgba(255,255,255,0.86);
  line-height: 1.35;
}
.cookie-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn{
  appearance: none;
  border-radius: 16px;
  padding: 10px 14px;
  font-weight: 820;
  font-size: 14px;
  cursor: pointer;
  transition: transform var(--t) ease, background var(--t) ease, border-color var(--t) ease;
}
.cookie-btn-accept{
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(180, 83, 9, 0.95));
  color: rgba(255,255,255,0.98);
}
.cookie-btn-accept:hover{ transform: translateY(-2px); }
.cookie-btn-reject{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}
.cookie-btn-reject:hover{
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.30);
  background: rgba(245, 158, 11, 0.10);
}

@media (max-width: 760px){
  .cookie-banner-inner{
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions{
    justify-content: flex-start;
  }
}

