@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2744;
  --indigo: #2d3f7a;
  --slate: #4a5680;
  --lavender: #8b96c8;
  --mist: #c8d0e8;
  --pearl: #f0f2f8;
  --white: #ffffff;
  --accent: #6b7fd4;
  --gold: #c4a35a;
  --text: #1e2640;
  --text-light: #5a6280;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 39, 68, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 39, 68, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "DM Serif Display", serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}

.container {
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 39, 68, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--indigo);
  transform: translateY(-2px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}
.text-center .section-label {
  justify-content: center;
}
.text-center .section-subtitle {
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  transition:
    transform 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
header.header-hidden {
  transform: translateY(-100%);
}
header.header-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding var(--transition);
}
header.header-scrolled .header-inner {
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 400;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--pearl);
  color: var(--navy);
}

.nav-cta {
  margin-left: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--mist);
  width: 220px;
  text-align: center;
  transition: color var(--transition);
}
.mobile-nav a:hover {
  color: var(--accent);
}

.header-bg-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 208, 232, 0.4);
  z-index: -1;
}

main {
  padding-top: 72px;
}

.hero {
  background: linear-gradient(135deg, #1a2744 0%, #2d3f7a 50%, #3a4f96 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60vw;
  height: 130%;
  background: radial-gradient(
    ellipse,
    rgba(107, 127, 212, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(26, 39, 68, 0.12));
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text {
  color: var(--white);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: italic;
  color: var(--lavender);
}
.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions .btn-primary {
  background: var(--white);
  color: var(--navy);
}
.hero-actions .btn-primary:hover {
  background: var(--pearl);
}
.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 340px;
  width: 100%;
  color: var(--white);
}
.hero-card-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.hero-stat-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 14px;
}
.hero-stat i {
  font-size: 1.1rem;
  color: var(--lavender);
  width: 20px;
  text-align: center;
}
.hero-stat-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.hero-stat-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.hero-float-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 16px rgba(196, 163, 90, 0.4);
}
.hero-float-badge span {
  display: block;
  font-size: 1.4rem;
  font-family: "DM Serif Display", serif;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.hero-scroll-hint .scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.trust-bar {
  background: var(--pearl);
  padding: 22px 0;
  border-bottom: 1px solid var(--mist);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 44px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--slate);
}
.trust-item i {
  color: var(--accent);
  font-size: 1rem;
}

.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--pearl);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--mist);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-number {
  font-family: "DM Serif Display", serif;
  font-size: 2.8rem;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--mist);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}
.benefit-card h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.benefit-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--mist);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: "DM Serif Display", serif;
  font-size: 4rem;
  color: var(--mist);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--slate);
}
.author-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
}
.author-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--indigo) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--navy);
}

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 100%);
  padding: 72px 0 56px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.page-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.content-section {
  padding: 64px 0;
}
.prose {
  max-width: 720px;
}
.prose h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 32px 0 12px;
}
.prose h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 24px 0 8px;
}
.prose p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.prose ul,
.prose ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.prose li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 5px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mist);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-card-body {
  padding: 28px 24px;
}
.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--pearl);
  color: var(--accent);
  margin-bottom: 12px;
}
.product-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.product-price {
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.product-price span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.product-feature i {
  color: var(--accent);
  width: 14px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
}
.about-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.8rem;
  font-weight: 600;
}
.about-photo-badge strong {
  display: block;
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--mist);
  text-align: center;
}
.value-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--slate);
  margin: 0 auto 12px;
  border: 3px solid var(--mist);
}
.team-card h3 {
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {
  color: var(--white);
}
.stat-num {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--lavender);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.contact-page {
  padding: 64px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--white);
}
.contact-info-panel h2 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-info-panel > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--lavender);
}
.contact-detail h4 {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-detail p {
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-map {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 180px;
  border: none;
  filter: grayscale(0.2);
}

.contact-form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--mist);
}
.contact-form-panel h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-panel > p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--mist);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--pearl);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group input.error,
.form-group textarea.error {
  border-color: #d94f4f;
}
.field-error {
  font-size: 0.75rem;
  color: #d94f4f;
  margin-top: 4px;
  display: none;
}
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.consent-group input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.consent-group label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
}
.consent-group label a {
  color: var(--accent);
  text-decoration: underline;
}
.form-submit-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-submit-note i {
  color: var(--accent);
}

.tips-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.tips-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--mist);
  transition: var(--transition);
}
.tips-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.tips-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.tips-card h3 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.tips-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--mist);
}
.checklist-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.checklist-item div h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.checklist-item div p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.accordion-item {
  border: 1.5px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
}
.accordion-trigger:hover {
  background: var(--pearl);
}
.accordion-trigger i {
  transition: transform var(--transition);
  font-size: 0.85rem;
  color: var(--accent);
}
.accordion-item.open .accordion-trigger i {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}
.accordion-item.open .accordion-body {
  display: block;
}

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.assessment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--mist);
  transition: var(--transition);
}
.assessment-card:hover {
  box-shadow: var(--shadow);
}
.assessment-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.assessment-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.assessment-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--pearl);
  padding: 5px 12px;
  border-radius: 50px;
}

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pearl);
  padding: 40px 0;
}
.thankyou-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--mist);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto 24px;
}
.thankyou-box h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.thankyou-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.thankyou-ref {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 18px;
}

.notfound-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.notfound-box {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}
.notfound-code {
  font-family: "DM Serif Display", serif;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--mist);
  line-height: 1;
  margin-bottom: 10px;
}
.notfound-box h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.notfound-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.policy-section {
  padding: 60px 0;
}
.policy-section .container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.policy-nav {
  position: sticky;
  top: 90px;
}
.policy-nav h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 10px;
}
.policy-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.policy-nav ul a {
  display: block;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 0.82rem;
  color: var(--text-light);
  transition: var(--transition);
}
.policy-nav ul a:hover,
.policy-nav ul a.active {
  background: var(--pearl);
  color: var(--navy);
}
.policy-content h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 36px 0 10px;
  padding-top: 8px;
}
.policy-content h2:first-child {
  margin-top: 0;
}
.policy-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-content ul,
.policy-content ol {
  padding-left: 18px;
  margin-bottom: 12px;
}
.policy-content li {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 5px;
}
.policy-content strong {
  color: var(--navy);
}
.policy-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding: 10px 14px;
  background: var(--pearl);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 0 22px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-brand-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--lavender);
}
.footer-brand-name {
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  color: var(--white);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-copy a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}
.footer-copy a:hover {
  color: var(--white);
}

.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  max-width: 560px;
  width: 92%;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-popup p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  flex: 1;
  min-width: 180px;
}
.cookie-popup a {
  color: var(--lavender);
  text-decoration: underline;
}
.cookie-popup-actions {
  display: flex;
  gap: 8px;
}
.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover {
  background: var(--indigo);
}
.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .assessment-grid {
    grid-template-columns: 1fr;
  }
  .policy-section .container {
    grid-template-columns: 1fr;
  }
  .policy-nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: 60px 0 50px;
  }
  .how-it-works-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .thankyou-box {
    padding: 36px 24px;
  }
  .contact-form-panel {
    padding: 28px 20px;
  }
  .contact-info-panel {
    padding: 28px 20px;
  }
}
@media (max-width: 320px) {
  .container {
    width: 96%;
  }
  .btn {
    padding: 9px 18px;
    font-size: 0.82rem;
  }
}
