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

:root {
  --night: #FFFFFF;
  --navy: #F5F7F8;
  --navy-mid: #F0F2F4;
  --gold: #0095AA;
  --gold-light: #E8F4F6;
  --gold-dim: rgba(0, 149, 170, 0.1);
  --cream: #1A1A2E;
  --green: #2D6A4F;
  --green-dim: rgba(45, 106, 79, 0.1);
  --white-60: rgba(0, 149, 170, 0.7);
  --white-40: rgba(0, 149, 170, 0.5);
  --white-20: rgba(0, 149, 170, 0.2);
  --white-10: rgba(0, 149, 170, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--night);
  color: var(--cream);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--night);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 149, 170, 0.3), rgba(0, 149, 170, 0.15));
  border-radius: 4px;
  border: 2px solid var(--night);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 149, 170, 0.5), rgba(0, 149, 170, 0.3));
}

#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 149, 170, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  top: 0;
  left: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 1.1rem 3rem;
  background: linear-gradient(135deg, #0095AA 0%, #007A8C 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(0, 149, 170, 0.2);
}

nav.scrolled {
  padding: 0.7rem 3rem;
  background: linear-gradient(135deg, #007A8C 0%, #006070 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--night);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  background: white;
  color: #0095AA;
  border: none;
  padding: 9px 20px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 149, 170, 0.35);
  background: #E8F4F6;
}

.btn-nav:active {
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.07;
  color: var(--cream);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--night);
  border: none;
  padding: 14px 26px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 149, 170, 0.4);
  background: #007A8C;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--white-20);
  padding: 14px 26px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.store-badges {
  display: flex;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
}

.badge {
  background: var(--white-10);
  border: 0.5px solid var(--white-20);
  border-radius: 10px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--white-60);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.badge:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 149, 170, 0.12);
}

.phone-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateX(80px);
  animation: phoneSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes phoneSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 149, 170, 0.15);
  background: radial-gradient(circle, rgba(0, 149, 170, 0.02), transparent 60%);
}

.orbit-ring:nth-child(1) {
  width: 320px;
  height: 320px;
}

.orbit-ring:nth-child(2) {
  width: 420px;
  height: 420px;
}

.orbit-ring:nth-child(3) {
  width: 520px;
  height: 520px;
}

.phone-frame {
  width: 240px;
  height: 480px;
  background: var(--navy);
  border-radius: 40px;
  border: 1.5px solid rgba(0, 149, 170, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 149, 170, 0.15) inset, 0 0 60px rgba(0, 149, 170, 0.06);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: var(--night);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.phone-screen {
  padding: 0 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.app-header {
  background: linear-gradient(135deg, rgba(15, 34, 51, 0.95), rgba(15, 34, 51, 0.85));
  border-radius: 14px;
  padding: 11px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-title-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Fraunces', serif;
}

.app-date {
  font-size: 9px;
  color: var(--white-40);
  margin-top: 1px;
}

.notif-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}

.notif-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(45, 106, 79, 0.5);
  animation: notifPulse 2s infinite;
}

@keyframes notifPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0;
    transform: scale(1.8)
  }
}

.shield-zone {
  background: linear-gradient(135deg, var(--green-dim), rgba(45, 106, 79, 0.03));
  border: 0.5px solid rgba(45, 106, 79, 0.4);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.shield-label {
  font-size: 9px;
  color: #4CAF7D;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

.qr-card {
  background: var(--night);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.qr-hint {
  font-size: 8px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pupil-row {
  background: var(--navy);
  border-radius: 11px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pupil-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--night);
  flex-shrink: 0;
}

.pupil-name {
  font-size: 9px;
  font-weight: 700;
  color: var(--cream);
}

.pupil-grade {
  font-size: 8px;
  color: var(--white-40);
}

.status-pill {
  margin-left: auto;
  background: rgba(45, 106, 79, 0.2);
  border: 0.5px solid rgba(45, 106, 79, 0.5);
  border-radius: 8px;
  padding: 3px 7px;
  font-size: 7px;
  font-weight: 700;
  color: #4CAF7D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scan-btn-phone {
  background: var(--gold);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--night);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s;
}

.scan-btn-phone:hover {
  transform: scale(1.02);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid rgba(0, 149, 170, 0.15);
  border-bottom: 0.5px solid rgba(0, 149, 170, 0.15);
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 149, 170, 0.02));
}

.stat-item {
  padding: 2rem 3rem;
  text-align: center;
  border-right: 0.5px solid rgba(0, 149, 170, 0.12);
  transition: background 0.3s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(0, 149, 170, 0.04);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s;
}

.stat-item:hover .stat-num {
  transform: scale(1.05);
}

.stat-label {
  font-size: 12px;
  color: var(--white-40);
  margin-top: 6px;
}

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-pad {
  padding: 6rem 0;
}

.section-eye {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 15px;
  color: var(--white-60);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 1.75rem;
  border: 0.5px solid rgba(0, 149, 170, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.3s, box-shadow 0.35s;
  aspect-ratio: 4 / 3;
}

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.03));
  opacity: 0;
  transition: opacity 0.4s;
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 149, 170, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(0, 149, 170, 0.08);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-card:hover::after {
  opacity: 1;
}

.feat-card:not(.no-zoom):hover img {
  transform: scale(1.08);
  filter: brightness(1.03) contrast(1.03);
}

.feat-card[style*="padding:0"]::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 149, 170, 0.08));
}

.feat-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.3s, transform 0.3s;
}

.feat-card:hover .feat-icon {
  background: rgba(0, 149, 170, 0.25);
  transform: scale(1.1) rotate(-3deg);
}

.feat-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .6rem;
}

.feat-body {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.65;
}

.bg-alt {
  background: var(--gold-light);
  position: relative;
}

.bg-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 149, 170, 0.1), transparent);
}

.how-bg {
  background: var(--navy-mid);
  position: relative;
}

.how-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 149, 170, 0.08), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
}

.step {
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-num-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: default;
}

.step:hover .step-num-wrap {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(0, 149, 170, 0.4);
  background: var(--gold-dim);
  border-color: var(--gold);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .5rem;
}



.step-body {
  font-size: 12px;
  color: var(--white-40);
  line-height: 1.6;
}

.notif-demo {
  background: var(--navy);
  border: 0.5px solid rgba(0, 149, 170, 0.2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.video-wrapper {
  position: relative;
  display: block;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 149, 170, 0.08);
  border: 0.5px solid rgba(0, 149, 170, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2), 0 0 50px rgba(0, 149, 170, 0.12);
}

.video-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--night);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-wrapper:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 149, 170, 0.4);
  background: #007A8C;
}

.play-btn svg {
  margin-left: 3px;
}

.notif-phone-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.notif-mock {
  background: rgba(245, 240, 232, 0.05);
  border: 0.5px solid var(--white-20);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.notif-mock.show {
  transform: translateX(0);
  opacity: 1;
}

.notif-app-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}

.notif-body {
  font-size: 12px;
  color: var(--white-60);
  margin-top: 2px;
}

.notif-time {
  font-size: 10px;
  color: var(--white-40);
  margin-top: 1px;
}

.demo-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.demo-btn {
  background: rgba(0, 149, 170, 0.08);
  border: 0.5px solid rgba(0, 149, 170, 0.25);
  color: var(--gold);
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s;
}

.demo-btn:hover {
  background: rgba(0, 149, 170, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 149, 170, 0.15);
}

.demo-btn.active {
  background: var(--gold);
  color: var(--night);
  box-shadow: 0 4px 15px rgba(0, 149, 170, 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 2rem;
  border: 0.5px solid rgba(0, 149, 170, 0.15);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 64px;
  line-height: 1;
  font-style: italic;
  color: rgba(0, 149, 170, 0.08);
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 149, 170, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 149, 170, 0.06);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

.testi-text {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(0, 149, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}

.testi-role {
  font-size: 11px;
  color: var(--white-40);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--navy);
  border-radius: 14px;
  border: 0.5px solid rgba(0, 149, 170, 0.15);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 149, 170, 0.3);
  box-shadow: 0 4px 20px rgba(0, 149, 170, 0.06);
}

.faq-item.open {
  border-color: rgba(0, 149, 170, 0.5);
  box-shadow: 0 8px 30px rgba(0, 149, 170, 0.1);
}

.faq-q {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.2s;
  user-select: none;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-item.open .faq-q {
  color: var(--gold);
}

.faq-arrow {
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.35s ease;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.7;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--gold-dim) 0%, rgba(0, 149, 170, 0.03) 50%, rgba(45, 106, 79, 0.04) 100%);
  border-top: 0.5px solid rgba(0, 149, 170, 0.2);
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 149, 170, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.06) 0%, transparent 70%);
  top: 20%;
  right: -5%;
}

.cta-title {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-body {
  font-size: 15px;
  color: var(--white-60);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
}

.cta-note {
  font-size: 12px;
  color: var(--white-40);
  position: relative;
}

footer {
  border-top: 0.5px solid var(--white-10);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 12px;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 11px;
  color: var(--white-20);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.ripple-container {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.count-num {
  display: inline-block;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 36px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 0.5px solid rgba(0, 149, 170, 0.12);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 30px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


