:root {
  --ink: #172024;
  --muted: #61706c;
  --paper: #fbfaf6;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --coral: #d95f46;
  --gold: #d9a441;
  --line: #dbe2dd;
  --shadow: 0 24px 70px rgba(23, 32, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(219, 226, 221, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(23, 32, 36, 0.08);
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: #33423e;
}

.nav a,
.header-action,
.package a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--teal);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-button {
  min-width: 38px;
  min-height: 34px;
  padding: 7px 9px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--white);
  background: var(--teal);
}

.header-action {
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: clamp(60px, 9vw, 110px) clamp(18px, 6vw, 84px);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.95) 0%, rgba(251, 250, 246, 0.84) 39%, rgba(251, 250, 246, 0.2) 75%),
    linear-gradient(180deg, rgba(23, 32, 36, 0) 70%, var(--paper) 100%);
}

.hero-content {
  position: relative;
  max-width: 690px;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 630px;
  color: #42504c;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 32, 36, 0.14);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 60px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 10px;
  width: min(390px, calc(100% - 36px));
}

.hero-panel span {
  padding: 12px 14px;
  color: var(--white);
  background: rgba(23, 32, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credibility div {
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.credibility strong,
.credibility span {
  display: block;
}

.credibility strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.credibility span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 84px);
}

.intro-grid,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.contact-copy p,
.package p,
.card p,
.timeline p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.card,
.package {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 900;
}

.included-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.included-services div {
  min-height: 142px;
  padding: 22px;
  background: #f7fbf8;
}

.included-services strong,
.included-services span {
  display: block;
}

.included-services strong {
  margin-bottom: 9px;
  font-size: 1rem;
}

.included-services span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.band {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 6vw, 84px);
  color: var(--white);
  background: #20312e;
}

.band .section-kicker {
  color: var(--gold);
}

.band h2 {
  max-width: 780px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.timeline div {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  padding-top: 22px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #20312e;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.timeline p {
  color: rgba(255, 255, 255, 0.75);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.package.featured {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.package.featured p,
.package.featured a {
  color: rgba(255, 255, 255, 0.86);
}

.price {
  margin-bottom: 18px;
  font-size: 1.8rem;
  font-weight: 900;
}

.package a {
  margin-top: auto;
  font-weight: 900;
  color: var(--teal);
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(42px, 7vw, 76px) clamp(18px, 6vw, 84px);
  background: #f2e9dc;
}

.cta-strip h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.contact {
  background: var(--white);
}

.contact-copy ul {
  padding-left: 20px;
  color: #33423e;
  line-height: 1.9;
}

.contact-profile {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-profile img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 8px;
}

.contact-profile strong,
.contact-profile span,
.contact-profile a {
  display: block;
}

.contact-profile strong {
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.contact-profile span {
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-profile a {
  width: fit-content;
  color: var(--teal);
  font-weight: 800;
  line-height: 1.7;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-profile a:hover {
  color: var(--teal-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd6d0;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.2);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer p {
  margin: 0;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 20;
  font-family: inherit;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.chat-launcher:hover {
  background: var(--teal-dark);
}

.chat-launcher-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.24);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: var(--white);
  background: var(--ink);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 310px;
  overflow-y: auto;
  padding: 16px;
  background: var(--paper);
}

.chat-message {
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  line-height: 1.45;
  font-size: 0.94rem;
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
  background: var(--paper);
}

.chat-quick-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--teal-dark);
  background: var(--white);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-width: 0;
}

.chat-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--teal);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96), rgba(251, 250, 246, 0.82)),
    url("assets/marketing-workspace.png") center / cover;
}

.admin-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.admin-panel {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-panel h1 {
  max-width: none;
  margin: 28px 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.admin-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.admin-brand {
  width: fit-content;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.admin-form .button {
  width: fit-content;
}

.admin-status {
  min-height: 26px;
  margin: 18px 0 0;
  font-weight: 700;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-logout {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 780px;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.86) 48%, rgba(251, 250, 246, 0.16) 100%),
      linear-gradient(180deg, rgba(23, 32, 36, 0) 78%, var(--paper) 100%);
  }

  .hero-content {
    padding-top: 18px;
  }

  .hero-panel {
    right: 18px;
    left: 18px;
  }

  .credibility,
  .intro-grid,
  .section-heading,
  .contact,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 136px;
    white-space: normal;
    line-height: 1.15;
  }

  .header-action {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .header-tools {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
  }

  .language-toggle {
    order: 2;
  }

  .lang-button {
    min-width: 34px;
    min-height: 30px;
    padding: 5px 7px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 860px;
    padding-top: 44px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel span {
    padding: 10px 12px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.9rem);
    line-height: 1.03;
    max-width: 11ch;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .credibility,
  .service-grid,
  .package-grid,
  .included-services {
    grid-template-columns: 1fr;
  }

  .card,
  .package {
    min-height: auto;
  }

  .contact-profile {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .contact-profile img {
    width: 76px;
    height: 76px;
  }

  .footer {
    flex-direction: column;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    width: calc(100vw - 24px);
  }

  .chat-launcher {
    min-height: 48px;
    padding: 11px 14px;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-form .button {
    width: 100%;
  }
}
