@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,700&display=swap");

:root {
  --ink: #0f1720;
  --slate: #1c2b3a;
  --muted: #5b6773;
  --sand: #e9edf2;
  --cloud: #f4f6f8;
  --teal: #0b1d33;
  --teal-dark: #081526;
  --sun: #1f6f8b;
  --line: #d7dde3;
  --shadow: 0 18px 40px rgba(11, 29, 51, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--cloud) 55%, var(--sand) 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(249, 247, 243, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
  color: var(--slate);
}

.nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: var(--sun);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--sun);
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 0.8rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(11, 29, 51, 0.92), rgba(31, 111, 139, 0.82));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 21, 38, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(8, 21, 38, 0.98), rgba(31, 111, 139, 0.9));
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--sun);
  color: var(--sun);
}

.btn.outline {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(11, 29, 51, 0.25);
  color: var(--slate);
  box-shadow: 0 10px 24px rgba(8, 21, 38, 0.12);
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(11, 29, 51, 0.35);
  transform: translateY(-2px);
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-card ul {
  padding-left: 1.2rem;
}

.note {
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  background: var(--sand);
  border-radius: 12px;
  color: var(--slate);
  font-weight: 600;
}

.trust {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: white;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.price-card.featured {
  border: 2px solid var(--teal);
  position: relative;
}

.pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #2b9bd1, #1f6f8b);
  color: #ffffff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(12, 36, 56, 0.25);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.values {
  padding: 4rem 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.split .section-card {
  height: 100%;
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}

.cta {
  padding: 3.5rem 0 5rem;
}

.cta-inner {
  background: var(--teal);
  color: white;
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-section {
  padding: 2.5rem 0;
}

.section-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.page-section {
  scroll-margin-top: 190px;
}

.page-section:target .section-card {
  box-shadow: 0 20px 44px rgba(11, 29, 51, 0.2);
  border-color: rgba(31, 111, 139, 0.5);
}

.sub-nav {
  position: sticky;
  top: 120px;
  z-index: 5;
  background: rgba(244, 246, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.sub-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.6rem 0;
  font-weight: 600;
  font-size: 0.85rem;
}

@media (min-width: 901px) {
  .sub-nav {
    display: none;
  }
}

.sub-nav a {
  padding: 0.25rem 0;
  border-radius: 0;
  border: none;
  color: var(--slate);
  background: none;
}

.sub-nav a:hover {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.testimonial blockquote {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: var(--slate);
}

.testimonial .muted {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.contact-form .btn.primary {
  font-size: 1.05rem;
}

.service-options {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.service-options legend {
  font-weight: 700;
  padding: 0 0.4rem;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

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

.contact-details {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.5rem;
  color: var(--slate);
}

.muted {
  color: var(--muted);
}

.cta .muted {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  background: rgba(249, 247, 243, 0.85);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.legal-page {
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.legal-page p {
  margin: 0.7rem 0;
  color: var(--slate);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

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

.legal-table th {
  background: var(--cloud);
  font-weight: 700;
}

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

.post-list {
  display: grid;
  gap: 1.5rem;
}

.post-card {
  background: white;
  padding: 1.8rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.post-card h2 {
  margin-top: 0.4rem;
}

.text-link {
  font-weight: 700;
  color: var(--sun);
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-inner {
    flex-direction: column;
  }

  .cta-inner {
    text-align: center;
  }

  .sub-nav {
    top: 130px;
  }

  .sub-nav-inner {
    gap: 0.6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.6rem 0;
  }
}
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  background: #fff;
}

.faq-item > summary {
  cursor: pointer;
  list-style: none;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  margin-top: 0.75rem;
}

.site-footer {
  padding: 60px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.footer-column h3 {
  margin: 0 0 15px 0;
}

.footer-links {
  display: block;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
