:root {
  --magenta: #e5007e;
  --magenta-dark: #b80065;
  --anthracite: #20242a;
  --ink: #1f2933;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f6f7f9;
  --soft-pink: #fff1f8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(31, 41, 51, .10);
  --radius: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

p { margin: 0 0 1rem; color: var(--muted); }

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.35rem, 5.6vw, 4.15rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; }

ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 20;
  padding: .75rem 1rem;
  background: var(--anthracite);
  color: var(--white);
  border-radius: 10px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(229, 231, 235, .8);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img { width: 178px; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #334155;
  font-size: .96rem;
  font-weight: 650;
}

.primary-nav a {
  padding: .72rem .9rem;
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--magenta);
  background: var(--soft-pink);
}

.primary-nav .nav-cta {
  margin-left: .35rem;
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 12px 28px rgba(229, 0, 126, .22);
}

.primary-nav .nav-cta:hover {
  color: var(--white);
  background: var(--magenta-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--anthracite);
}

.section { padding: 88px 0; }

.section-soft { background: var(--soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .8rem;
  color: var(--magenta);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-head p {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 58px;
  background:
    linear-gradient(120deg, #fff 0%, #fff 52%, rgba(255, 241, 248, .82) 52%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 760px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-copy p {
  max-width: 670px;
  margin-top: 1.25rem;
  font-size: 1.18rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1.2rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 14px 32px rgba(229, 0, 126, .22);
}

.button-primary:hover { background: var(--magenta-dark); }

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-light {
  color: var(--magenta);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.1)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.45) 0 2px, transparent 2px 62px),
    linear-gradient(145deg, #f7f9fb 0%, #dfe6ee 58%, #fff1f8 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 10% auto auto;
  width: 52%;
  aspect-ratio: 1;
  border: 18px solid rgba(229, 0, 126, .16);
  border-radius: 999px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 12%;
  height: 44%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.62)),
    repeating-linear-gradient(90deg, rgba(32,36,42,.11) 0 1px, transparent 1px 74px);
  border: 1px solid rgba(255,255,255,.78);
}

.visual-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 270px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 35px rgba(31, 41, 51, .12);
}

.visual-label strong { display: block; color: var(--ink); }
.visual-label span { color: var(--muted); font-size: .92rem; }

.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #344054;
  font-weight: 750;
  font-size: .95rem;
}

.icon {
  width: 22px;
  height: 22px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--magenta);
  background: var(--soft-pink);
  border-radius: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.value-card,
.process-step,
.contact-card,
.info-panel {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(31, 41, 51, .06);
}

.service-card,
.value-card,
.process-step {
  padding: 1.35rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease, box-shadow .18s ease;
}

.service-card.is-visible,
.value-card.is-visible,
.process-step.is-visible,
.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-card h3,
.value-card h3,
.process-step h3 { margin-top: 1rem; }

.service-card a {
  display: inline-flex;
  margin-top: .5rem;
  color: var(--magenta);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.image-panel {
  min-height: 430px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(229,0,126,.10), rgba(255,255,255,.1)),
    linear-gradient(145deg, #edf1f5, #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 24px;
  border: 1px solid rgba(32,36,42,.12);
  background: repeating-linear-gradient(90deg, rgba(32,36,42,.08) 0 1px, transparent 1px 54px);
}

.has-admin-image::before,
.has-admin-image::after {
  opacity: .18;
}

.check-list {
  display: grid;
  gap: .8rem;
  margin-top: 1.2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: #344054;
}

.check-list .icon {
  flex: 0 0 auto;
  color: var(--magenta);
  margin-top: .15rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--magenta);
  font-weight: 850;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.target-grid li {
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.gallery-item {
  min-height: 210px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(32,36,42,.72)),
    linear-gradient(145deg, #eef2f6, #ffffff 42%, #ffe2f1);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
  background-size: cover;
  background-position: center;
}

.gallery-item span {
  color: var(--white);
  font-weight: 800;
}

.cta-band {
  color: var(--white);
  background: var(--anthracite);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2,
.cta-band p { color: var(--white); }

.cta-band .eyebrow { color: #ff9bd2; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
}

.contact-card .icon { color: var(--magenta); }

.contact-card span {
  display: block;
  margin-top: .75rem;
  color: var(--muted);
  font-size: .9rem;
}

.contact-card strong {
  display: block;
  margin-top: .15rem;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { display: grid; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }

label {
  font-weight: 750;
  color: #344054;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: .85rem .95rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(229,0,126,.15);
  border-color: var(--magenta);
}

.checkbox-field {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  margin-top: .2rem;
}

.form-note,
.error {
  color: #b42318;
  font-size: .92rem;
}

.success {
  padding: 1rem;
  border-radius: 16px;
  color: #05603a;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 { margin-top: 2rem; font-size: 1.75rem; }
.legal-content h3 { margin-top: 1.4rem; }
.legal-content a { color: var(--magenta); font-weight: 750; }

.site-footer {
  padding: 64px 0 28px;
  color: #d0d5dd;
  background: var(--anthracite);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr .8fr;
  gap: 2rem;
}

.site-footer h2 {
  margin-bottom: .8rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: #d0d5dd;
  font-style: normal;
}

.site-footer a:hover { color: #ff9bd2; }
.footer-brand img { width: 170px; height: auto; margin-bottom: 1rem; filter: brightness(1.2); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }

.hp-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 360px; }
  .trust-grid,
  .services-grid,
  .process-grid,
  .target-grid,
  .gallery-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 42px; }
  .brand img { width: 154px; }
  .trust-grid,
  .services-grid,
  .process-grid,
  .target-grid,
  .gallery-grid,
  .contact-cards,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 310px; border-radius: 24px; }
  .visual-label { left: 14px; right: 14px; bottom: 14px; }
}
