html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #fff;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #0d2430;
}

/* Hero — light background locked from start */
.hero {
  height: 100vh;
  min-height: 680px;
  max-height: 1000px;
  background: linear-gradient(145deg, #f0fafb 0%, #e6f7f9 40%, #d0f0f4 100%);
  position: relative;
  overflow: hidden;
}

/* Hero title — dark text */
.hero-title {
  color: #0d2430;
  font-size: 3.6rem;
  line-height: 1.12;
  font-weight: 800;
}

.hero-typewriter {
  display: block;
  height: 1.3em;
  overflow: hidden;
}

/* Loader — light */
.page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
}


/* ── Why section team photo ── */
.why-team-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
}

.why-team-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-float-card {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.why-float-card strong {
  font-family: 'Urbanist', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #0d2430;
  display: block;
}

.why-float-card span {
  font-size: .72rem;
  color: #6b7280;
}

.why-float-tl {
  top: 20px;
  left: 20px;
}

.why-float-br {
  bottom: 60px;
  right: 20px;
}

.why-float-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 36, 48, .88);
  backdrop-filter: blur(10px);
  border-radius: 99px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
}

@media(max-width:900px) {
  .why-team-img {
    height: 340px;
  }

  .why-float-br {
    bottom: 56px;
    right: 12px;
  }

  .why-float-tl {
    top: 12px;
    left: 12px;
  }
}

@media(max-width:600px) {
  .why-team-img {
    height: 260px;
  }

  .why-float-card {
    min-width: 160px;
    padding: 8px 12px;
  }

  .why-float-card strong {
    font-size: .75rem;
  }

  .why-float-card span {
    font-size: .65rem;
  }
}

/* Client logo cards */
.cl-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  height: 72px;
  border-right: 1px solid #F3F4F6;
  flex-shrink: 0;
  transition: opacity .25s;
}

.cl-card:hover {
  opacity: .75;
}

.cl-card img {
  filter: grayscale(30%) brightness(0.85);
  transition: filter .25s;
}

.cl-card:hover img {
  filter: grayscale(0%) brightness(1);
}

/* =============================================
   FREE DISCOVERY CALL MODAL
   ============================================= */

/* Backdrop */
.fdc-backdrop {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(7,24,32,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.fdc-backdrop.open { opacity: 1; visibility: visible; }

/* Modal card */
.fdc-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%; max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.fdc-backdrop.open .fdc-modal { transform: translateY(0) scale(1); }

/* Close button */
.fdc-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.07); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #374151; font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.fdc-close:hover { background: #0098af; color:#fff; }

/* ---- LEFT PANEL ---- */
.fdc-left {
  background: linear-gradient(155deg, #0098af 0%, #005f6b 100%);
  border-radius: 24px 0 0 24px;
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.fdc-left::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.fdc-left::after {
  content: ''; position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.fdc-left-inner { position: relative; z-index: 1; }

.fdc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color:#ffffff; font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 22px; width: fit-content;
}

.fdc-headline {
  color:#ffffff; font-size: 1.75rem; font-weight: 800;
  line-height: 1.2; margin-bottom: 14px;
  font-family: 'Urbanist', sans-serif;
}

.fdc-tagline {
  color:#ffffff; font-size: 0.88rem;
  line-height: 1.75; margin-bottom: 28px;
}

/* Perks list */
.fdc-perks {
  list-style: none; display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 32px;
}
.fdc-perks li { display: flex; align-items: flex-start; gap: 14px; }
.fdc-perk-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color:#ffffff; font-size: 0.85rem; flex-shrink: 0; margin-top: 1px;
}
.fdc-perks li > div strong {
  display: block; color:#ffffff; font-size: 0.88rem;
  font-weight: 700; margin-bottom: 3px;
}
.fdc-perks li > div span {
  color: rgba(255, 255, 255, 0.95); font-size: 0.78rem; line-height: 1.6;
}

/* Social proof row */
.fdc-social-proof {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.fdc-avatars { display: flex; }
.fdc-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color:#ffffff;
  margin-left: -8px; border: 2px solid rgba(255,255,255,0.3);
  font-family: 'Urbanist', sans-serif;
}
.fdc-avatars span:first-child { margin-left: 0; }
.fdc-social-proof p {
  color:#ffffff; font-size: 0.78rem;
  line-height: 1.5; margin: 0;
}
.fdc-social-proof p strong { color:#ffffff; }

/* ---- RIGHT PANEL ---- */
.fdc-right { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }

.fdc-form-title {
  font-size: 1.4rem; font-weight: 800; color: #111827;
  margin-bottom: 6px; font-family: 'Urbanist', sans-serif;
}
.fdc-form-sub { color: #6B7280; font-size: 0.875rem; margin-bottom: 28px; line-height: 1.6; }

.fdc-form { display: flex; flex-direction: column; gap: 16px; }
.fdc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.fdc-field { display: flex; flex-direction: column; gap: 6px; }
.fdc-field label {
  font-size: 0.82rem; font-weight: 600; color: #374151;
}
.fdc-req { color: #0098af; }
.fdc-field input,
.fdc-field textarea,
.fdc-field select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-size: 0.9rem; color: #111827; background: #fff;
  font-family: inherit; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.fdc-field input:focus,
.fdc-field textarea:focus,
.fdc-field select:focus {
  border-color: #0098af;
  box-shadow: 0 0 0 3px rgba(0,152,175,0.1);
}
.fdc-field input.error { border-color: #0098af; }
.fdc-field select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.fdc-field textarea { resize: vertical; min-height: 96px; }

.fdc-submit {
  width: 100%; justify-content: center;
  padding: 14px; font-size: 1rem; margin-top: 4px;
}
.fdc-submit.sending { opacity: 0.7; pointer-events: none; }

.fdc-privacy {
  text-align: center; font-size: 0.74rem; color: #9CA3AF;
  display: flex; align-items: center; justify-content: center;
  gap: 5px; margin: 0;
}
.fdc-privacy i { color: #0098af; }

/* Success state */
.fdc-success {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px; gap: 16px;
}
.fdc-success.show { display: flex; }
.fdc-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #0098af, #007a8c);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color:#fff;
  box-shadow: 0 8px 24px rgba(0,152,175,0.35);
}
.fdc-success h4 { font-size: 1.3rem; color: #111827; font-family: 'Urbanist', sans-serif; }
.fdc-success p { font-size: 0.9rem; color: #6B7280; max-width: 280px; line-height: 1.7; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .fdc-modal { grid-template-columns: 1fr; max-height: 95vh; }
  .fdc-left { border-radius: 24px 24px 0 0; padding: 36px 28px; }
  .fdc-right { padding: 32px 28px; }
  .fdc-perks { display: none; } /* hide perks on mobile to save space */
  .fdc-social-proof { margin-top: 20px; }
}
@media (max-width: 420px) {
  .fdc-row { grid-template-columns: 1fr; }
  .fdc-left { padding: 28px 20px; }
  .fdc-right { padding: 24px 20px; }
}

/* =============================================
   FAQ HOME SECTION
   ============================================= */
.faq-home-section {
  background: #f9fafb;
}

.faq-home-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-home-left {
  position: sticky;
  top: 100px;
}

.faq-home-sub {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 280px;
}

/* FAQ accordion items */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
  border-color: rgba(0, 152, 175, 0.3);
  box-shadow: 0 4px 20px rgba(0, 152, 175, 0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-q span:first-child {
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
  line-height: 1.45;
  font-family: 'Urbanist', sans-serif;
}

.faq-q:hover span:first-child {
  color: #0098af;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 152, 175, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0098af;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: #0098af;
  color:#fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-a p {
  padding: 0 24px;
  font-size: 0.93rem;
  color: #4B5563;
  line-height: 1.8;
  margin: 0;
}

/* =============================================
   GET IN TOUCH SECTION
   ============================================= */
.git-section {
  background: #fff;
}

.git-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 60px;
}

/* Left info column */
.git-contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.git-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.git-contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 152, 175, 0.1), rgba(0, 168, 191, 0.1));
  border: 1px solid rgba(0, 152, 175, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0098af;
  font-size: 1rem;
  flex-shrink: 0;
}

.git-contact-label {
  display: block;
  font-size: 0.75rem;
  color: #9CA3AF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.git-contact-value {
  display: block;
  font-size: 0.95rem;
  color: #0d2430;
  font-weight: 700;
}

.git-contact-value a {
  color: #0d2430;
}

.git-contact-value a:hover {
  color: #0098af;
}

/* Trust badges */
.git-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.git-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
}

.git-trust-badge i {
  color: #0098af;
  font-size: 0.9rem;
}

/* Form card */
.git-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(0, 152, 175, 0.07);
}

.git-form-title {
  font-size: 1.4rem;
  color: #111827;
  margin-bottom: 6px;
  font-family: 'Urbanist', sans-serif;
}

.git-form-sub {
  color: #6B7280;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.git-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.req {
  color: #0098af;
}

.git-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.git-submit-btn.sending {
  opacity: 0.75;
  pointer-events: none;
}

.git-privacy-note {
  text-align: center;
  font-size: 0.78rem;
  color: #9CA3AF;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.5;
}

.git-privacy-note i {
  color: #0098af;
}

/* Bottom banner */
.git-bottom-banner {
  margin-top: 80px;
  background: linear-gradient(135deg, #0098af 0%, #007a87 100%);
  border-radius: 24px;
  padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}

.git-bottom-banner::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.git-bottom-left h3 {
  color: #fff; font-size: 1.5rem; font-weight: 800;
  margin-bottom: 8px; font-family: 'Urbanist', sans-serif;
}
.git-bottom-left p {
  color: rgba(255,255,255,0.9); font-size: 0.95rem; margin: 0;
}

.git-bottom-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ---- responsive ---- */
@media (max-width: 1100px) {
  .faq-home-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-home-left { position: static; }
  .git-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .git-form-row { grid-template-columns: 1fr; gap: 0; }
  .git-form-card { padding: 28px 20px; }
  .git-bottom-banner { padding: 36px 28px; flex-direction: column; }
  .git-trust-badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .git-trust-badges { grid-template-columns: 1fr; }
}
