@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f1b2d;
  --navy-mid: #162438;
  --teal: #4ecdc4;
  --teal-dark: #38b2aa;
  --gold: #f7c948;
  --cream: #faf8f5;
  --cream-dark: #f0ece6;
  --text: #1a2535;
  --text-muted: #5a6a7e;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(15, 27, 45, 0.1);
  --shadow-lg: 0 12px 48px rgba(15, 27, 45, 0.18);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #e8b832;
  border-color: #e8b832;
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

section {
  padding: 70px 0;
}

.highlight {
  color: var(--teal);
}

.tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(78, 205, 196, 0.12);
  color: var(--teal-dark);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 14px 0 20px;
}

.divider.center {
  margin: 14px auto 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ========== HEADER ========== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s,
    box-shadow 0.3s;
  background: rgba(15, 27, 45, 0.97);
}

.site-header.scrolled {
  background: rgba(15, 27, 45, 0.97);
  box-shadow: 0 2px 24px rgba(15, 27, 45, 0.22);
  backdrop-filter: blur(10px);
}

 

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.header-top-bar {
  background: var(--teal);
  padding: 6px 0;
}

.header-top-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-top-bar a,
.header-top-bar span {
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-top-bar a:hover {
  color: var(--navy-mid);
}

.header-main {
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(78, 205, 196, 0.15);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 8px;
  gap: 5px;
  transition: var(--transition);
  padding: 0;
}

.menu-toggle:hover {
  background: rgba(78, 205, 196, 0.2);
}

.menu-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(78, 205, 196, 0.15);
  padding: 14px 0 18px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.07);
  border-left-color: var(--teal);
}

.mobile-nav .nav-cta-mobile {
  display: block;
  margin: 12px 20px 0;
  text-align: center;
}

/* ========== HERO ========== */

.hero {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a2f4a 55%,
    #0f2340 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 65% 40%,
    rgba(78, 205, 196, 0.08) 0%,
    transparent 70%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(78, 205, 196, 0.12);
  border: 1px solid rgba(78, 205, 196, 0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-title .accent {
  color: var(--teal);
  display: block;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  display: block;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: radial-gradient(
    ellipse at center,
    rgba(78, 205, 196, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}

.hero-float-card.card-1 {
  bottom: -16px;
  left: -20px;
}

.hero-float-card.card-2 {
  top: -16px;
  right: -20px;
}

.hero-float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-float-card .fc-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.hero-float-card .fc-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ========== FEATURES ========== */

.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(78, 205, 196, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(78, 205, 196, 0.15),
    rgba(78, 205, 196, 0.05)
  );
  border: 1px solid rgba(78, 205, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== HOW IT WORKS ========== */

.how-it-works {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--teal);
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.step-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== PRODUCTS ========== */

.products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(78, 205, 196, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 28px 22px;
  text-align: center;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(78, 205, 196, 0.15);
  border: 2px solid rgba(78, 205, 196, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.6rem;
  color: var(--teal);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.product-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.product-perks {
  margin-bottom: 18px;
}

.product-perks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text);
  padding: 4px 0;
}

.product-perks li i {
  color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(78, 205, 196, 0.12);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.product-price sup {
  font-size: 0.7em;
  vertical-align: super;
}

/* ========== WHY US ========== */

.why-us {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(78, 205, 196, 0.06) 0%,
    transparent 70%
  );
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-sub {
  color: rgba(255, 255, 255, 0.62);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(78, 205, 196, 0.12);
  border: 1px solid rgba(78, 205, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.why-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(78, 205, 196, 0.15);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: var(--transition);
}

.why-stat-box:hover {
  background: rgba(78, 205, 196, 0.1);
}

.why-stat-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.why-stat-box span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  line-height: 1.4;
}

/* ========== TESTIMONIALS ========== */

.testimonials {
  background: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(78, 205, 196, 0.3);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(78, 205, 196, 0.1);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.author-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ========== CTA BANNER ========== */

.cta-banner {
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner .section-title {
  color: var(--navy);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: 0.9rem;
  color: rgba(15, 27, 45, 0.72);
}

/* ========== PAGE HERO (subpages) ========== */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(78, 205, 196, 0.07) 0%,
    transparent 70%
  );
}

.page-hero .container {
  position: relative;
}

.page-hero .section-title {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.page-hero .section-sub {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--teal);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb i {
  font-size: 0.6rem;
}

/* ========== CONTENT BLOCKS ========== */

.content-section {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.content-text .section-label {
  margin-bottom: 8px;
}

.content-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.6;
}

.info-list li i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ========== TIPS GRID ========== */

.tips-section {
  background: var(--cream);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.tip-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tip-card h3 i {
  color: var(--teal);
}

.tip-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== FAQ ========== */

.faq-section {
  background: var(--white);
}

.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid rgba(78, 205, 196, 0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 12px;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(78, 205, 196, 0.05);
}

.faq-question i {
  color: var(--teal);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== ABOUT SECTIONS ========== */

.team-section {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-card .val-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(78, 205, 196, 0.15),
    rgba(78, 205, 196, 0.05)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
  margin: 0 auto 14px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== CONTACT ========== */

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.contact-info-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 34px 28px;
  height: 100%;
}

.contact-info-panel .panel-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-panel .panel-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 26px;
}

.contact-detail {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.cd-icon {
  width: 38px;
  height: 38px;
  background: rgba(78, 205, 196, 0.12);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.cd-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.cd-text span,
.cd-text a {
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
}

.cd-text a:hover {
  color: var(--teal);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(78, 205, 196, 0.2);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 0.85rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}

.form-check label a {
  color: var(--teal);
  text-decoration: underline;
}

.map-section {
  background: var(--white);
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ========== POLICY PAGES ========== */

.policy-content {
  background: var(--white);
  padding: 60px 0 80px;
}

.policy-body {
  max-width: 780px;
  margin: 0 auto;
}

.policy-body h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p,
.policy-body li {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.policy-body ul {
  padding-left: 18px;
}

.policy-body ul li {
  list-style: disc;
}

.policy-body a {
  color: var(--teal);
  text-decoration: underline;
}

/* ========== 404 & THANK YOU ========== */

.fullpage-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
  text-align: center;
}

.fullpage-inner {
  max-width: 500px;
  padding: 40px 20px;
}

.fullpage-icon {
  font-size: 3.5rem;
  color: var(--teal);
  margin-bottom: 20px;
}

.fullpage-inner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.fullpage-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.thankyou-details {
  background: rgba(78, 205, 196, 0.08);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}

.thankyou-details p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.thankyou-details p:last-child {
  margin-bottom: 0;
}

.thankyou-details strong {
  color: var(--teal);
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--navy);
  padding: 28px 0 16px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 3px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-policy a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-policy a:hover {
  color: var(--teal);
}

/* ========== COOKIE POPUP ========== */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--teal);
  padding: 18px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .why-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 928px) {
  section {
    padding: 50px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .features-grid,
  .products-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-float-card.card-1,
  .hero-float-card.card-2 {
    display: none;
  }

  .contact-layout {
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero-stats {
    gap: 18px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.83rem;
  }
}
