:root {
  --ink: #343f52;
  --muted: #60697b;
  --soft: #f1f5fd;
  --pink: #f26e6e;
  --pink-soft: #f8e7ec;
  --yellow: #fef3e4;
  --green: #e1f6f0;
  --blue: #e9eaf8;
  --purple: #605dba;
  --white: #ffffff;
  --border: rgba(8, 60, 130, 0.07);
  --shadow: 0 18px 50px rgba(30, 34, 40, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.18;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.primary-nav a {
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--pink);
}

.header-contact {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: var(--purple);
  box-shadow: 0 12px 26px rgba(96, 93, 186, 0.22);
}

.button-yellow {
  background: #f2c86d;
  color: #5d4736;
  box-shadow: 0 12px 26px rgba(242, 200, 109, 0.26);
}

.hero {
  position: relative;
  padding: 32px 0 52px;
}

.hero-content,
.section,
.page-hero-inner,
.footer-inner,
.results-inner,
.contact-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 32px;
  min-height: 540px;
}

.hero-copy p {
  color: var(--pink);
  font-size: 22px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8% 12%;
  z-index: -1;
  border-radius: 50%;
  background: #fff3f3;
}

.hero-visual img {
  width: min(520px, 100%);
  margin-left: auto;
}

.doodle {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.doodle-1 {
  top: 112px;
  left: 6%;
  width: 42px;
}

.doodle-2 {
  right: 9%;
  bottom: 60px;
  width: 60px;
}

.doodle-3 {
  top: 68px;
  left: 10%;
  width: 42px;
}

.doodle-4 {
  right: 8%;
  top: 78px;
  width: 54px;
}

.doodle-5 {
  left: 7%;
  top: 64px;
  width: 54px;
}

.doodle-6 {
  right: 10%;
  bottom: 62px;
  width: 50px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.centered {
  text-align: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.help-section {
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mini-service,
.service-card,
.process-card,
.contact-form-panel {
  display: block;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-service,
.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-service:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(30, 34, 40, 0.11);
}

.mini-service {
  padding: 36px 22px;
  text-align: center;
}

.mini-service-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.mini-service-icon svg,
.service-icon svg {
  width: 30px;
  height: 30px;
}

.mini-service-pink .mini-service-icon,
.service-card-pink .service-icon {
  color: var(--pink);
  background: var(--pink-soft);
}

.mini-service-blue .mini-service-icon,
.service-card-blue .service-icon {
  color: var(--purple);
  background: var(--blue);
}

.mini-service-yellow .mini-service-icon,
.service-card-yellow .service-icon {
  color: #c9872b;
  background: var(--yellow);
}

.mini-service-green .mini-service-icon,
.service-card-green .service-icon {
  color: #3c9f87;
  background: var(--green);
}

.process-section {
  background: #fff;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.process-image {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  border-radius: 8px;
  background: #fff8f1;
}

.process-image img {
  max-height: 560px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.process-card {
  padding: 34px;
}

.process-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 38px;
  font-weight: 800;
}

.process-card p {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--purple);
  font-weight: 800;
}

.cta-form-section {
  padding-bottom: 112px;
  background: var(--soft);
}

.cta-form-section .section-heading h2 span {
  color: var(--pink);
}

.form-panel {
  width: min(820px, 100%);
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form-soft {
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-control {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  padding: 15px 20px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: rgba(96, 93, 186, 0.45);
  box-shadow: 0 0 0 4px rgba(96, 93, 186, 0.08);
}

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

.form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 26px, calc(100% - 16px) 26px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-center {
  text-align: center;
}

.form-notice {
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.form-notice-success {
  color: #22755e;
  background: #e1f6f0;
}

.form-notice-error {
  color: #9a3d3d;
  background: #f8e7ec;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.page-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.78)), url("../img/bg_01.jpg");
  background-position: center;
  background-size: cover;
}

.page-hero-inner {
  max-width: 860px;
  text-align: center;
}

.page-hero p {
  color: var(--muted);
  font-size: 21px;
}

.services-intro {
  padding-top: 110px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 42px;
}

.intro-grid h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.help-line {
  color: var(--pink);
  font-weight: 800;
  text-align: center;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 34px 28px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.results-band {
  padding: 100px 0;
  background-image: linear-gradient(rgba(52, 63, 82, 0.72), rgba(52, 63, 82, 0.74)), url("../img/home33-bg23.jpg");
  background-position: center;
  background-size: cover;
  color: rgba(255, 255, 255, 0.82);
}

.results-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.results-inner h2,
.results-inner h3 {
  color: var(--white);
}

.value-list {
  display: grid;
  gap: 22px;
}

.value-list article {
  padding-left: 28px;
  border-left: 3px solid #f1bbbb;
}

.value-list p {
  margin-bottom: 0;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.contact-hero-image {
  background-image: url("../img/contact_021.jpg");
  background-position: center;
  background-size: cover;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(40px, calc((100vw - var(--container)) / 2)) 70px 70px;
  background: var(--soft);
}

.contact-hero-copy h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.contact-section {
  padding-top: 104px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 60px;
  align-items: start;
}

.contact-grid h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.contact-details {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.contact-details article {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-details h3 {
  margin-bottom: 6px;
}

.contact-details p {
  margin-bottom: 0;
}

.contact-details a {
  color: var(--purple);
  font-weight: 800;
}

.contact-form-panel {
  padding: 42px;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 6px;
}

.terms-check a {
  color: var(--purple);
  font-weight: 800;
}

.form-hint {
  margin-bottom: 0;
  color: #aab0bc;
  font-size: 14px;
}

.map-section {
  position: relative;
  width: 100%;
  height: 460px;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-lollipop-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 54px;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 10px 12px rgba(52, 63, 82, 0.28));
}

.pin-candy {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 3px solid #ff6d6d;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffe36a 0 12%, #ff873f 13% 24%, #ff6470 25% 37%, #ffe05d 38% 51%, #ff8d3d 52% 66%, #ff6570 67% 100%);
}

.pin-candy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  z-index: -1;
  width: 16px;
  height: 16px;
  background: #ff6d6d;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 0 0 4px 0;
}

.map-open-link {
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 800;
}

.seo-hero {
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 88px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.78)),
    url("../img/bg_01.jpg");
  background-position: center;
  background-size: cover;
}

.seo-hero-inner,
.seo-content-inner,
.seo-cta {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.seo-hero-inner {
  max-width: 930px;
  text-align: center;
}

.seo-hero-inner p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 0 auto 26px;
  font-size: 21px;
}

.brasov-hero {
  background:
    linear-gradient(120deg, rgba(255, 247, 247, 0.92), rgba(241, 245, 253, 0.88)),
    url("../img/bg_01.jpg");
  background-position: center;
  background-size: cover;
}

.seo-section {
  padding-top: 104px;
}

.seo-two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.service-icon-large {
  width: 78px;
  height: 78px;
}

.service-icon-large svg {
  width: 36px;
  height: 36px;
}

.seo-benefits {
  display: grid;
  gap: 18px;
}

.seo-benefits article,
.faq-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.seo-benefits h3,
.faq-card h3 {
  margin-bottom: 8px;
}

.seo-benefits p,
.faq-card p {
  margin-bottom: 0;
}

.seo-content-band {
  padding: 96px 0;
  background: var(--soft);
}

.seo-content-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

.seo-content-inner article {
  padding: 36px;
  border-radius: 8px;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.seo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 96px;
  padding: 42px;
  border-radius: 8px;
  background: #343f52;
  color: rgba(255, 255, 255, 0.78);
}

.seo-cta h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.seo-cta p {
  margin-bottom: 0;
}

.seo-cta a:not(.button) {
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  padding: 88px 0 74px;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 0.82fr 1fr;
  gap: 42px;
}

.footer-logo img {
  width: 152px;
}

.footer-contact,
.footer-links {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 8px;
}

.footer-contact a,
.footer-links a {
  color: var(--muted);
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--purple);
}

.site-footer h4 {
  margin-bottom: 18px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .header-contact {
    display: none;
  }

  .hero-content,
  .process-layout,
  .intro-grid,
  .results-inner,
  .contact-grid,
  .contact-hero,
  .seo-two-column,
  .seo-content-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 0;
    text-align: center;
  }

  .hero-visual img {
    margin: 0 auto;
  }

  .home-service-grid,
  .service-card-grid,
  .footer-inner,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero-image {
    min-height: 360px;
  }

  .contact-hero-copy {
    padding: 58px 30px;
  }

  .seo-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .hero-content,
  .section,
  .page-hero-inner,
  .footer-inner,
  .results-inner,
  .contact-grid {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding: 18px 0 32px;
  }

  .hero-content {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-visual img {
    width: min(285px, 88vw);
  }

  .section {
    padding: 72px 0;
  }

  .home-service-grid,
  .service-card-grid,
  .process-grid,
  .form-grid,
  .footer-inner,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-image {
    min-height: auto;
    padding: 36px 20px;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }

  .page-hero {
    min-height: 420px;
  }

  .map-section {
    height: 360px;
  }

  .map-lollipop-pin {
    transform: translate(-50%, -100%) scale(0.88);
  }

  .map-open-link {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }

  .seo-hero {
    min-height: 440px;
    padding: 62px 0;
  }

  .seo-hero-inner,
  .seo-content-inner,
  .seo-cta {
    width: min(100% - 28px, var(--container));
  }

  .seo-benefits article,
  .faq-card,
  .seo-content-inner article,
  .seo-cta {
    padding: 26px 20px;
  }

  .doodle {
    opacity: 0.45;
  }
}
