/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #015D76;
  --primary-dark: #014a5e;
  --white: #FFFFFF;
  --ice: #EBF9FC;
  --dark: #1E1C1D;
  --accent-blue: #04ADD6;
  --accent-orange: #FF9500;
  --gray-100: #f5f7f8;
  --gray-200: #e2e6e8;
  --gray-400: #8a9499;
  --gray-600: #4a5459;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(1,93,118,0.06);
  --shadow-md: 0 4px 20px rgba(1,93,118,0.08);
  --shadow-lg: 0 12px 40px rgba(1,93,118,0.12);
  --shadow-xl: 0 20px 60px rgba(1,93,118,0.16);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', 'General Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar__nav a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width var(--transition);
  border-radius: 2px;
}

.navbar__nav a:hover {
  color: var(--primary);
}

.navbar__nav a:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 12px 26px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--outline:hover {
  background: var(--ice);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding: 12px 18px;
}
.btn--ghost:hover {
  background: var(--ice);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-sm);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding: 130px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,173,214,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,93,118,0.025) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero__title span {
  color: var(--primary);
  position: relative;
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img {
  width: 100%;
  max-width: 490px;
  height: auto;
  display: block;
}

.hero__mockup-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
  text-align: center;
}

.hero__mockup-label svg {
  display: block;
  margin: 0 auto 8px;
  opacity: 0.4;
}

/* Floating geometric decorations */
.hero__decor {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: fadeFloat 8s ease-in-out infinite;
}

.hero__decor--ring {
  width: 64px;
  height: 64px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.12;
  top: 8%;
  right: -10px;
  animation: fadeFloat 7s ease-in-out infinite;
}

.hero__decor--cross {
  top: 20%;
  left: -30px;
  width: 20px;
  height: 20px;
  animation: fadeFloat 9s ease-in-out infinite;
  animation-delay: -1s;
}

.hero__decor--cross::before,
.hero__decor--cross::after {
  content: '';
  position: absolute;
  background: var(--accent-blue);
  border-radius: 2px;
  opacity: 0.3;
}

.hero__decor--cross::before {
  width: 20px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hero__decor--cross::after {
  width: 3px;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.hero__decor--dots {
  bottom: 20%;
  left: -24px;
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 8px;
  animation: fadeFloat 8s ease-in-out infinite;
  animation-delay: -3s;
}

.hero__decor--dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
}

.hero__decor--line {
  top: 60%;
  right: -16px;
  width: 40px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 2px;
  opacity: 0.2;
  animation: fadeFloat 6s ease-in-out infinite;
  animation-delay: -2s;
}

.hero__decor--triangle {
  bottom: 5%;
  right: 20%;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid var(--primary);
  opacity: 0.07;
  animation: fadeFloat 10s ease-in-out infinite;
  animation-delay: -4s;
}

.hero__decor--square {
  top: 5%;
  left: 10%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-blue);
  border-radius: 3px;
  opacity: 0.15;
  transform: rotate(45deg);
  animation: fadeFloat 7.5s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes fadeFloat {
  0%, 100% { opacity: 0.12; transform: translateY(0); }
  50% { opacity: 0.2; transform: translateY(-12px); }
}

.hero__decor--cross { animation-name: fadeFloat; }
.hero__decor--ring { animation-name: fadeFloat; }

/* ===== SECTION UTILITY ===== */
.section {
  padding: 100px 0;
}

.section--ice {
  background: #F9F8F4;
}

.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.7);
}

/* ===== VALUE PROPS ===== */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: rgba(4,173,214,0.25);
  box-shadow: 0 8px 30px rgba(1,93,118,0.07);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}

.value-card:hover .value-card__icon {
  background: rgba(4,173,214,0.12);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: stroke var(--transition);
}

.value-card:hover .value-card__icon svg {
  stroke: var(--accent-blue);
}

.value-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card__desc {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(20% - 30px);
  right: calc(20% - 30px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-blue) 0,
    var(--accent-blue) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.4;
}

.step-card {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card__number {
  width: 64px;
  height: 64px;
  min-height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(1,93,118,0.25);
}

.step-card__visual {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-card__visual svg {
  width: 100%;
  height: 100%;
}

.step-card__visual-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

.step-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  margin-top: auto;
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
  flex-grow: 1;
}

/* ===== BUDGET TRACKER ===== */
.budget {
  position: relative;
}

.budget__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.budget__content {
  order: 1;
}

.budget__visual {
  order: 2;
}

.budget__list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.budget__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.975rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.budget__list-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.budget__list-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
}

.budget__note {
  margin-top: 28px;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--primary);
}

.budget__img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== DASHBOARD ===== */
.dashboard__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dashboard__content {
  order: 2;
}

.dashboard__visual {
  order: 1;
}

.dashboard__features {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dashboard__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.975rem;
  color: var(--gray-600);
}

.dashboard__feat-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: rgba(4,173,214,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.dashboard__feat-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-blue);
}

.dashboard__note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
}

.dashboard__img {
  width: 100%;
  max-width: 390px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== WHY US ===== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(4,173,214,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-blue);
}

.why-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.why-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,173,214,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
}

.cta__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer__col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__disclaimer {
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.5;
  width: 100%;
}

.footer__copy {
  font-size: 0.8rem;
  text-align: center;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__buttons {
    justify-content: center;
  }
  .hero__visual {
    order: -1;
  }
  .hero__mockup {
    max-width: 400px;
    margin: 0 auto;
  }
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .budget__inner,
  .dashboard__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .budget__content,
  .dashboard__content {
    order: 1;
  }
  .budget__visual,
  .dashboard__visual {
    order: 2;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .hero {
    padding: 120px 0 72px;
  }
  .navbar__nav {
    display: none;
  }
  .navbar__actions .btn--ghost,
  .navbar__actions .btn--primary {
    display: none;
  }
  .navbar__toggle {
    display: block;
  }
  .values__grid {
    grid-template-columns: 1fr;
  }
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps__grid::before {
    display: none;
  }
  .hero__decor {
    display: none;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .hero {
    padding: 110px 0 60px;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .section__header {
    margin-bottom: 40px;
  }
}

/* ===== LEGAL PAGES ===== */
.legal {
  padding: 140px 0 80px;
  background: var(--white);
  min-height: 100vh;
}

.legal__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.legal__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.legal__effective {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.legal__body {
  width: 100%;
}

.legal__body h2 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--dark);
}

.legal__body h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.legal__body h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--dark);
}

.legal__body p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal__body ul {
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__body ul li {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.legal__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0.5;
}

.legal__body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(1,93,118,0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.legal__body a:hover {
  text-decoration-color: var(--primary);
}

.legal__body strong {
  font-weight: 600;
  color: var(--dark);
}

/* Back link */
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 28px;
  transition: color var(--transition);
}

.legal__back:hover {
  color: var(--primary);
}

.legal__back svg {
  width: 16px;
  height: 16px;
}



/* ===== CONTACT PAGE ===== */
.contact {
  padding: 140px 0 80px;
  background: var(--white);
  min-height: 100vh;
}

.contact__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.contact__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.contact__subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Info cards */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  border-color: rgba(4,173,214,0.25);
  box-shadow: 0 8px 30px rgba(1,93,118,0.07);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.contact-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.contact-card__value {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

.contact-card__value a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Form section */
.contact__form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact__form-info {
  padding-top: 8px;
}

.contact__form-info-title {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.contact__form-info-desc {
  font-size: 0.975rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__form-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--gray-600);
}

.contact__form-info-list li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--accent-blue);
}

/* Form */
.form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form__row {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}

.form__label .required {
  color: #d44;
  margin-left: 2px;
}

.form__input,
.form__textarea {
  width: 100%;
  font-family: 'General Sans', sans-serif;
  font-size: 0.925rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-400);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(4,173,214,0.1);
}

.form__input.error,
.form__textarea.error {
  border-color: #d44;
  box-shadow: 0 0 0 3px rgba(221,68,68,0.08);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  font-size: 0.8rem;
  color: #d44;
  margin-top: 5px;
  display: none;
}

.form__error.visible {
  display: block;
}

.form__char-count {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: right;
  margin-top: 4px;
}

/* Honeypot — invisible to users */
.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
  tab-index: -1;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Status message */
.form__status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  text-align: center;
}

.form__status.success {
  display: block;
  background: rgba(4,173,214,0.08);
  color: var(--primary);
  border: 1px solid rgba(4,173,214,0.2);
}

.form__status.error {
  display: block;
  background: rgba(221,68,68,0.06);
  color: #b33;
  border: 1px solid rgba(221,68,68,0.15);
}

@media (max-width: 1024px) {
  .contact__form-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 110px 0 60px;
  }
  .contact__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form {
    padding: 28px 22px;
  }
  .legal {
    padding: 110px 0 60px;
  }
  .legal__body h2 {
    margin-top: 36px;
    padding-top: 20px;
  }
}