@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --c-navy: #192a3d;
  --c-navy-dark: #121e2d;
  --c-navy-light: #21364d;
  --c-orange: #d97d3a;
  --c-orange-hover: #c46d30;
  --c-orange-bg: #fdf3eb;
  --c-bg-cream: #f6f5f1;
  --c-bg-white: #ffffff;
  --c-text-main: #333333;
  --c-text-light: #555555;
  --c-border: #e2e8f0;
  --c-blue-link: #3b82f6;
  --font-family: 'Inter', sans-serif;
}

.tg-body {
  font-family: var(--font-family);
  color: var(--c-text-main);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  background-color: var(--c-bg-white);
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

html {
  overflow-x: hidden;
}

.tg-body,
.tg-body * {
  box-sizing: border-box;
  max-width: 100%;
}

.tg-a {
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOPBAR */
.topbar {
  background-color: #27313a;
  color: #929ba4;
  font-size: 11px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.topbar-center {
  flex-grow: 1;
  text-align: center;
}

.topbar-right {
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  background-color: var(--c-bg-white);
  padding: 15px 0;
  border-bottom: 1px solid var(--c-border);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--c-navy);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-light);
  display: block;
}

.nav-phone {
  color: var(--c-blue-link);
  font-weight: 700;
  font-size: 14px;
}

/* HERO SECTION */
.hero {
  background-color: var(--c-bg-cream);
  padding: 60px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
}

.tag-label {
  display: inline-block;
  background-color: var(--c-orange-bg);
  color: var(--c-orange);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero .tg-h1 {
  font-size: 38px;
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.hero .tg-p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: var(--c-text-light);
}

.hero-img-wrapper {
  margin-bottom: 10px;
}

.hero-img {
  width: 100%;
  border-radius: 8px;
}

.hero-caption {
  font-size: 11px;
  font-style: italic;
  color: #777;
  margin-bottom: 20px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 1px solid #d1d5db;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-main);
}

.check-pill-icon {
  color: #10b981;
  font-size: 14px;
  font-weight: bold;
}

/* FORM BOX */
.form-box {
  background-color: var(--c-bg-white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid var(--c-border);
}

.form-tag {
  position: absolute;
  top: -12px;
  left: 30px;
  background-color: var(--c-bg-white);
  color: var(--c-orange);
  border: 1px solid #fbdab3;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}

.form-box .tg-h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 10px 0;
}

.form-box p.form-sub {
  font-size: 12px;
  color: var(--c-text-light);
  margin: 0 0 20px 0;
}

.form-group {
  margin-bottom: 15px;
}

.form-group .tg-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--c-navy);
}

.form-group .tg-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  background-color: #f9fafb;
}

.form-group .tg-input::placeholder {
  color: #9ca3af;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
}

.form-consent .tg-p {
  font-size: 10px;
  line-height: 1.4;
  color: #6b7280;
  margin: 0;
}

.form-consent .tg-a {
  color: var(--c-blue-link);
}

.form-submit-btn {
  width: 100%;
  background-color: var(--c-orange);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit-btn:hover {
  background-color: var(--c-orange-hover);
}

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
  font-size: 10px;
  color: #9ca3af;
}

/* SECTION COMMON */
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 40px 0;
}

/* REASONS SECTION */
.reasons {
  padding: 80px 0;
  background-color: var(--c-bg-white);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reason-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
}

.reason-icon {
  width: 36px;
  height: 36px;
  background-color: #eff6ff;
  color: #3b82f6;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.reason-card .tg-h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 10px 0;
}

.reason-card .tg-p {
  font-size: 14px;
  color: var(--c-text-light);
  line-height: 1.6;
  margin: 0;
}

/* HOW IT WORKS SECTION */
.hiw {
  padding: 80px 0;
  background-color: var(--c-bg-cream);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hiw-item {
  text-align: center;
}

.hiw-number {
  width: 40px;
  height: 40px;
  background-color: var(--c-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px auto;
}

.hiw-item .tg-h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 10px 0;
}

.hiw-item .tg-p {
  font-size: 14px;
  color: var(--c-text-light);
  line-height: 1.6;
  margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 80px 0;
  background-color: var(--c-navy);
}

.testimonials .tag-label {
  background-color: transparent;
  color: #fcd34d;
  padding: 0;
}

.testimonials .section-title {
  color: white;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background-color: var(--c-navy-light);
  border-radius: 8px;
  padding: 30px;
}

.testi-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 15px;
}

.testi-quote {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.testi-author {
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin: 0;
}

.testi-loc {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

.testi-disclaimer {
  text-align: center;
  color: #6b7280;
  font-size: 11px;
  margin-top: 40px;
}

/* FAQ SECTION */
.faq {
  padding: 80px 0;
  background-color: var(--c-bg-white);
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
  cursor: pointer;
}

.faq-question-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
}

.faq-icon-wrapper {
  width: 24px;
  height: 24px;
  background-color: #eff6ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  font-size: 14px;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-top: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
}

/* CTA TOP BANNER SECTION / CALL TO ACTION */
.cta {
  padding: 80px 0;
  background-color: var(--c-navy);
  text-align: center;
}

.cta .tg-h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin: 0 0 15px 0;
}

.cta .tg-p {
  color: #9ca3af;
  font-size: 15px;
  margin: 0 0 30px 0;
}

.cta-btn {
  background-color: var(--c-orange);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-block;
}

/* FOOTER */
.footer {
  background-color: var(--c-navy-dark);
  color: #9ca3af;
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.footer-address {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-contact .tg-p {
  font-size: 12px;
  margin: 5px 0;
}

.footer .tg-h4 {
  color: white;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.footer .tg-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .tg-ul .tg-li {
  margin-bottom: 10px;
}

.footer .tg-ul .tg-li .tg-a {
  color: #9ca3af;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 30px;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
}

.footer-bottom .tg-p {
  margin-bottom: 10px;
}

.footer-bottom .tg-a {
  color: #9ca3af;
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  .reasons-grid,
  .hiw-grid,
  .testi-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Topbar: hide right email to fix overlap */
  .topbar-right {
    display: none !important;
  }
  .topbar-center {
    text-align: center;
    font-size: 10px;
  }
  .topbar-left {
    display: none;
  }

  /* Navbar: hide email on mobile */
  .nav-phone {
    display: none !important;
  }
  .logo-text { font-size: 17px; }

  /* Hero */
  .hero { padding: 35px 0; }
  .hero .tg-h1 { font-size: 26px; }
  .section-title { font-size: 22px; }

  /* CTA */
  .cta { padding: 50px 0; }
  .cta .tg-h2 { font-size: 24px; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
}

@media (max-width: 480px) {
  .hero .tg-h1 { font-size: 22px; }
  .topbar-center { font-size: 9px; padding: 0 10px; }
  .check-pill { font-size: 11px; padding: 6px 10px; }
  .container { padding: 0 15px; }
}

/* ================================== */
/* PRELOADER & COOKIE BANNER SYTLES   */
/* ================================== */

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-bg-cream);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(25, 42, 61, 0.1);
  border-top-color: var(--c-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 0;
  width: 100%;
  background-color: var(--c-navy-dark);
  color: #fff;
  padding: 15px 20px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  z-index: 99998;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.5;
  max-width: 800px;
  color: #d1d5db;
}

.cookie-text .tg-a {
  color: var(--c-orange);
  text-decoration: underline;
  font-weight: bold;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  background-color: var(--c-orange);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

.cookie-btn:hover {
  background-color: var(--c-orange-hover);
}

.cookie-btn.btn-outline {
  background-color: transparent;
  border: 1px solid #4b5563;
  color: #9ca3af;
}

.cookie-btn.btn-outline:hover {
  background-color: #374151;
  color: white;
  border-color: #6b7280;
}

@media(max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
}