/* Sovoda Solutions — marketing site */

:root {
  --accent: #D4967D;
  --accent-hover: #c68568;
  --accent-soft: rgba(212, 150, 125, 0.12);
  --text: #000000;
  --text-muted: #444444;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --border: #e0e0e0;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 72px;
  --font-heading: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body: "PT Serif", Georgia, "Times New Roman", serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--text);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand img {
  height: 44px;
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.nav-menu a {
  font-family: var(--font-heading);
  color: var(--text);
  text-decoration: none;
  font-size: 0.98rem;
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-hover);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 88vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(212, 150, 125, 0.35) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  max-width: 760px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: 1rem;
  width: min(100% - 2rem, 760px);
}

.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero .eyebrow {
  color: #f3d2c4;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  background: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  width: 100%;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-intro {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.lead {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.page-hero {
  padding: clamp(2.8rem, 6vw, 4.2rem) 0 2.2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 18ch;
}

/* Promise bullets */
.promise-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.5rem;
}

.promise-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  background: #fff;
}

.promise-item strong {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.promise-item p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* About */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.about-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin-bottom: 1rem;
}

.about-card a {
  color: var(--text);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.about-close,
.pitch {
  margin-top: 1.5rem;
  padding: 1.4rem 1.6rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
}

/* Pricing cards */
.pricing,
.alt {
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(212, 150, 125, 0.22);
  background: linear-gradient(180deg, #fff 0%, #fff8f5 100%);
}

.price-card.consult {
  border: 2px dashed var(--accent);
  background: #fff8f5;
}

.badge,
.hint {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.badge {
  position: static;
  background: var(--accent-soft);
  color: var(--accent-hover);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}

.price-tier {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.price-card h3 {
  margin-bottom: 0.5rem;
  min-height: 0;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0;
  line-height: 1;
}

.price-amount .currency {
  font-size: 1.15rem;
  vertical-align: super;
  margin-right: 0.1rem;
}

.price-amount .period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-note {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0.45rem 0 0;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  flex: 1;
  margin-bottom: 0.5rem;
}

.price-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn {
  margin-top: auto;
}

/* Package detail blocks */
.pkg-block {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border);
}

.pkg-block:last-of-type {
  border-bottom: 0;
}

.pkg-kicker {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.4rem;
}

.pkg-price {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
}

.pkg-price span {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  background: var(--bg);
}

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

.testimonial {
  margin: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 0.6rem;
  left: 1.1rem;
  opacity: 0.55;
}

.testimonial p {
  font-size: 1.1rem;
  margin: 1.2rem 0 1rem;
  position: relative;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-heading);
  color: var(--text-muted);
}

/* Contact + forms */
.contact {
  background: var(--bg-alt);
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.contact-details strong {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent);
}

.chat-cue {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.form {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.form-row label {
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form-help {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}

.req {
  color: var(--accent);
}

.optional {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.checks {
  display: grid;
  gap: 0.5rem;
}

.checks label {
  font-family: var(--font-body);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0;
}

.checks input {
  margin-top: 0.35rem;
}

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

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--text-muted);
}

.form-status.ok {
  color: #1f6b3a;
}

.form-status.err {
  color: #8a1f1f;
}

.banner {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  margin-bottom: 2rem;
}

.banner p:last-child {
  margin-bottom: 0;
}

.matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.matrix th,
.matrix td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.matrix th {
  font-family: var(--font-heading);
  font-weight: 400;
  background: var(--bg-alt);
}

.matrix tr:last-child td {
  border-bottom: 0;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  background: #fff;
}

.faq details + details {
  margin-top: 0.65rem;
}

.faq summary {
  font-family: var(--font-heading);
  cursor: pointer;
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.25rem 0;
  background: var(--bg);
}

.footer-inner {
  display: grid;
  gap: 0.65rem;
  text-align: center;
  justify-items: center;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-inline: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
}

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

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-meta a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

/* Lead magnet (Home checklist carrot) */
.lead-magnet {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.lead-magnet-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.lead-magnet-copy h2 {
  margin-bottom: 0.5rem;
  max-width: 22ch;
}

.lead-magnet-copy p {
  color: var(--text-muted);
  margin: 0;
}

.lead-magnet-form {
  display: grid;
  gap: 0.75rem;
  position: relative;
}

.lead-magnet-form .form-row-inline {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1.4fr;
}

.lead-magnet-form label {
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.lead-magnet-form input[type="text"],
.lead-magnet-form input[type="email"] {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
}

.lead-magnet-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.lead-magnet-form .btn {
  width: 100%;
}

.lead-magnet-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Footer social */
.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0.35rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
  outline: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 800px) {
  .lead-magnet-card {
    grid-template-columns: 1fr;
  }

  .lead-magnet-form .form-row-inline {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.1rem;
    gap: 0.15rem;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
  }

  .nav-menu a:hover {
    background: var(--bg-alt);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.35rem;
  }

  .about-grid,
  .two-col,
  .testimonial-grid,
  .promise-list,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-left: 1rem;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

.hero-chat-note {
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}

.chat-cta {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.chat-cta h2 {
  margin-bottom: 0.5rem;
}

.chat-cta p {
  color: var(--text-muted);
}

.chat-cta .btn {
  margin-top: 0.35rem;
}

.form-page .form {
  max-width: 40rem;
  margin-inline: auto;
}

#assistant-cue.is-highlight {
  box-shadow: 0 0 0 3px var(--accent);
}
