/* ═══════════════════════════════════════════
   TEMPUS TUUM — STYLESHEET
   Mobile-first. Scales up.
   Primary: #0333F2
   Accent: #FFD166
   Dark hero, clean content sections.
═══════════════════════════════════════════ */


/* ─────────────────────────────────────────
   RESET & ROOT VARIABLES
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:          #0333F2;
  --blue-dark:     #021099;
  --blue-mid:      #0228CC;
  --blue-light:    #F4F6FF;
  --gold:          #FFD166;
  --gold-dark:     #E6B800;
  --dark:          #0D0D0D;
  --dark-2:        #1A1A2E;
  --dark-3:        #12122A;
  --grey:          #4A4A4A;
  --grey-light:    #F9F9F9;
  --grey-mid:      #E8E8E8;
  --white:         #FFFFFF;

  --font-head:     'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  --max-width:     1100px;
  --radius:        8px;
  --radius-lg:     14px;
  --transition:    0.25s ease;
  --shadow-sm:     0 2px 12px rgba(3, 51, 242, 0.06);
  --shadow-md:     0 6px 24px rgba(3, 51, 242, 0.10);
  --shadow-lg:     0 12px 40px rgba(3, 51, 242, 0.14);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}


/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  color: inherit;
}

h1 { font-size: clamp(2.2rem, 7vw, 4rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3.5vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 2.5vw, 1.25rem); }

p {
  font-size: clamp(0.93rem, 2.2vw, 1.03rem);
  color: var(--grey);
  line-height: 1.78;
}

em {
  font-style: italic;
  color: var(--gold);
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.label--gold {
  color: var(--gold);
}


/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--blue-light);
}

.section--dark {
  background: var(--dark-2);
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section__header {
  max-width: 680px;
}

.section__header.text-center {
  margin: 0 auto;
  text-align: center;
}

.text-center {
  text-align: center;
}

/* Spacing */
.mt-1 { margin-top: 0.4rem; }
.mt-2 { margin-top: 0.85rem; }
.mt-3 { margin-top: 1.25rem; }
.mt-4 { margin-top: 1.75rem; }
.mt-6 { margin-top: 3rem; }

/* Divider */
.divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.9rem 0 1.4rem;
}

.divider--center {
  margin: 0.9rem auto 1.4rem;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.65rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Primary — blue fill */
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline — white border (for dark backgrounds) */
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Outline dark — blue border (for light backgrounds) */
.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}


/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 0;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  padding: 0.7rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}

.lang-toggle button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 16px;
  transition: var(--transition);
  line-height: 1;
}

.lang-toggle button.active {
  background: var(--blue);
  color: var(--white);
}

.lang-toggle button:hover:not(.active) {
  color: var(--white);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13, 13, 13, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 0.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition), color var(--transition);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

/* Show desktop links at 768px+ */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }
}


/* ─────────────────────────────────────────
   LANGUAGE TOGGLE — CONTENT VISIBILITY
───────────────────────────────────────── */

/* Block-level elements */
.lang-km { display: none; }
.lang-en { display: block; }

body.khmer .lang-km { display: block; }
body.khmer .lang-en { display: none; }

/* Inline elements (spans inside headings, buttons etc.) */
span.lang-km { display: none; }
span.lang-en { display: inline; }

body.khmer span.lang-km { display: inline; }
body.khmer span.lang-en { display: none; }

/* List items */
li .lang-km { display: none; }
li .lang-en { display: inline; }

body.khmer li .lang-km { display: inline; }
body.khmer li .lang-en { display: none; }


/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

/* Radial glow accents */
.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(
    circle,
    rgba(3, 51, 242, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  max-width: 420px;
  max-height: 420px;
  background: radial-gradient(
    circle,
    rgba(3, 51, 242, 0.1) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  line-height: 1.1;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 2.4vw, 1.15rem);
  max-width: 560px;
  margin-top: 1.25rem;
  line-height: 1.75;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255, 255, 255, 0.3);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ─────────────────────────────────────────
   PROBLEM SECTION
───────────────────────────────────────── */
.problem__card {
  background: var(--white);
  border: 1px solid rgba(3, 51, 242, 0.1);
  border-radius: var(--radius);
  padding: 1.65rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--blue);
  border-radius: 3px 0 0 3px;
}

.problem__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem__card h4 {
  color: var(--dark-2);
  margin-bottom: 0.5rem;
}


/* ─────────────────────────────────────────
   WHAT WE DO — CARDS
───────────────────────────────────────── */
.wwd__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(3, 51, 242, 0.07);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.wwd__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.wwd__icon {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  flex-shrink: 0;
}

.wwd__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
}

.wwd__card h4 {
  color: var(--dark-2);
  margin-bottom: 0.45rem;
}


/* ─────────────────────────────────────────
   HOW IT WORKS — STEPS
───────────────────────────────────────── */
.hiw__steps {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

.hiw__step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.4rem;
  padding-bottom: 2.25rem;
}

.hiw__step:last-child {
  padding-bottom: 0;
}

.hiw__step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(3, 51, 242, 0.12);
}

.hiw__line {
  width: 2px;
  flex: 1;
  background: rgba(3, 51, 242, 0.14);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.hiw__step:last-child .hiw__line {
  display: none;
}

.hiw__step-content {
  padding-top: 0.55rem;
}

.hiw__step-content h4 {
  color: var(--dark-2);
  margin-bottom: 0.4rem;
}


/* ─────────────────────────────────────────
   WHO WE ARE
───────────────────────────────────────── */
.wwa__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .wwa__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.wwa__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

.wwa__stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: background var(--transition);
}

.wwa__stat:hover {
  background: rgba(255, 255, 255, 0.08);
}

.wwa__stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.wwa__stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.wwa__quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin-top: 2rem;
}

.wwa__quote p {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  line-height: 1.65;
}


/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews__track-wrap {
  position: relative;
  overflow: hidden;
}

/* Fade-out right edge */
.reviews__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--blue-light));
  pointer-events: none;
  z-index: 1;
}

.reviews__track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
  cursor: grab;
}

.reviews__track:active {
  cursor: grabbing;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review__card {
  min-width: 275px;
  max-width: 310px;
  background: var(--white);
  border: 1px solid rgba(3, 51, 242, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Opening quote mark */
.review__card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--blue);
  opacity: 0.1;
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  line-height: 1;
  pointer-events: none;
}

.review__text {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.72;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.review__author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-2);
  line-height: 1.3;
}

.review__role {
  font-size: 0.78rem;
  color: var(--blue);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* Nav arrows */
.reviews__nav {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.4rem;
  justify-content: center;
}

.reviews__nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    transform var(--transition);
}

.reviews__nav button:hover {
  background: var(--blue);
  transform: scale(1.05);
}

.reviews__nav button svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue);
  transition: stroke var(--transition);
}

.reviews__nav button:hover svg {
  stroke: var(--white);
}

/* See More Reviews */
.reviews__more {
  text-align: center;
  margin-top: 1.4rem;
}

.reviews__more-btn {
  display: inline-block;
  padding: 0 2rem;
  height: 44px;
  line-height: 44px;
  border-radius: 22px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.reviews__more-btn:hover {
  background: none;
  color: var(--blue);
  transform: scale(1.05);
}



/* ─────────────────────────────────────────
   FOR PARTNERS
───────────────────────────────────────── */
.partners__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .partners__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.partners__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.partners__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.55;
}

.partners__list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.partners__cta-box {
  background: var(--blue-light);
  border: 1px solid rgba(3, 51, 242, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.partners__cta-box h3 {
  color: var(--dark-2);
}

.partners__cta-box p {
  color: var(--grey);
}


/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(3, 51, 242, 0.1);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  text-decoration: none;
}

.contact__method:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.contact__method-icon {
  width: 46px;
  height: 46px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__method-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.contact__method-text h4 {
  color: var(--dark-2);
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.contact__method-text p {
  font-size: 0.87rem;
  color: var(--grey);
  margin: 0;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.form__group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark-2);
  letter-spacing: 0.01em;
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 0.78rem 1rem;
  border: 1.5px solid rgba(3, 51, 242, 0.18);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(74, 74, 74, 0.45);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3, 51, 242, 0.1);
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__group textarea {
  resize: vertical;
  min-height: 115px;
  line-height: 1.65;
}

#formSuccess {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  border: 1px solid rgba(3, 51, 242, 0.15);
}


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 600px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.45rem;
  line-height: 1.5;
}

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.9rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  line-height: 1.4;
}

.footer__col ul a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}


/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a grid */
.grid-3 .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-3 .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-3 .reveal:nth-child(4) { transition-delay: 0.08s; }
.grid-3 .reveal:nth-child(5) { transition-delay: 0.16s; }
.grid-3 .reveal:nth-child(6) { transition-delay: 0.24s; }

.hiw__steps .reveal:nth-child(2) { transition-delay: 0.07s; }
.hiw__steps .reveal:nth-child(3) { transition-delay: 0.14s; }
.hiw__steps .reveal:nth-child(4) { transition-delay: 0.21s; }
.hiw__steps .reveal:nth-child(5) { transition-delay: 0.28s; }


/* ─────────────────────────────────────────
   FOCUS STYLES — ACCESSIBILITY
───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}


/* ─────────────────────────────────────────
   RESPONSIVE — TABLET AND UP
───────────────────────────────────────── */
@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }

  .hero {
    padding: 9rem 0 7rem;
  }

  .review__card {
    min-width: 300px;
    max-width: 340px;
  }
}


/* ─────────────────────────────────────────
   RESPONSIVE — DESKTOP
───────────────────────────────────────── */
@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }

  .hero {
    padding: 10rem 0 8rem;
  }

  .hiw__steps {
    max-width: 640px;
  }
}


/* ─────────────────────────────────────────
   PRINT
───────────────────────────────────────── */
@media print {
  .nav,
  .hero__scroll,
  .reviews__nav,
  .btn-group {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  body {
    color: #000;
  }
}
