:root {
  --color-bg-light: #d9e9ed;
  --better-color-bg-light: #fef6db;
  --color-primary: #00323c;
  --color-accent: #00aed1;
  --better-color-accent: #3a6d8b;
  --color-white: #ffffff;
  --color-grey: #909090;
  --color-bg-gradient-start: #d9e9ed;
  --color-bg-gradient-end: #ffffff;

  --font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
}

h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 24px;
}
.better h2 {
  color: var(--better-color-accent);
}

h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

p {
  font-size: 16px;
  color: var(--color-primary);
}

.text-dark {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}
.better-text-accent {
  color: var(--better-color-accent);
}

.small-text {
  font-size: 12px;
  color: rgba(3, 12, 87, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  text-decoration: none !important;
}
.better-btn-primary {
  background-color: var(--better-color-accent);
  color: var(--color-white) !important;
  text-decoration: none !important;
}

.btn-large {
  padding: 36px 100px;
  border-radius: 100px;
  font-size: 32px;
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
}

.better-btn-primary:hover {
  background-color: transparent;
  border-color: var(--better-color-accent);
  color: var(--better-color-accent) !important;
}

.btn.disabled:hover {
  background-color: var(--color-accent);
  border-color: transparent;
  color: var(--color-white) !important;
  opacity: 0.5;
  cursor: not-allowed;
}
.better-btn.disabled:hover {
  background-color: var(--better-color-accent);
  border-color: transparent;
  color: var(--color-white) !important;
  opacity: 0.5;
  cursor: not-allowed;
}

.icon-download {
  margin-left: 12px;
  width: 24px;
  height: 24px;
  color: inherit;
}

/* Header */
header {
  background-color: var(--color-white);
  padding: 16px 0;
}

header.header-index {
  background-color: var(--color-bg-light);
}
header.better-header-index {
  background-color: var(--better-color-bg-light);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* For absolute positioning if needed, but flex is better */
}

.logo-img {
  height: 60px;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav ul {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 16px;
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    180deg,
    var(--color-bg-light) 0%,
    var(--color-white) 100%
  );
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.better-hero {
  background: linear-gradient(
    180deg,
    var(--better-color-bg-light) 0%,
    var(--color-white) 100%
  );
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 48px;
}

/* Responsive hero for smaller resolutions */
@media (max-height: 800px) {
  .hero {
    min-height: calc(100vh - 92px);
  }

  h1 {
    font-size: 48px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .btn-large {
    padding: 28px 80px;
    font-size: 24px;
  }

  .hero-badges {
    gap: 24px;
    margin-bottom: 36px;
  }

  .hero-cta {
    margin-bottom: 36px;
  }
}

@media (max-height: 720px) {
  h1 {
    font-size: 42px;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .btn-large {
    padding: 24px 60px;
    font-size: 20px;
  }

  .hero-badges {
    gap: 20px;
    margin-bottom: 28px;
  }

  .hero-cta {
    margin-bottom: 28px;
  }

  .small-text {
    font-size: 11px;
  }
}

.hero-cta {
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

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

.badge-icon {
  width: 20px;
  height: 20px;
}

/* Hero Legal */
.hero-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.legal-text {
  font-size: 14px;
  color: rgba(3, 12, 87, 0.3);
  text-align: center;
  line-height: 18px;
}

.legal-text a {
  color: #267af1;
  text-decoration: underline;
}

.terms-text {
  font-size: 14px;
  color: rgba(3, 12, 87, 0.3);
}

/* Tools Section */
.tools-section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  font-size: 20px;
  color: rgba(23, 113, 131, 0.7);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1050px;
  margin: 0 auto;
}

.tool-card {
  width: 310px;
  flex: 0 0 310px;
  padding: 32px;
  background: var(--color-white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Removed shadow and border as requested */
  box-shadow: none;
  border: none;
}

.tool-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.better-tool-icon {
  width: 64px;
  height: 64px;
  background-color: var(--better-color-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tool-icon img {
  width: 32px;
  height: 32px;
}

.tool-card p {
  color: var(--color-grey);
}

/* Features Section */
.features-section {
  padding: 96px 0;
  background-color: var(--color-white);
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-card {
  width: 20%;
  padding: 24px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 3px 4px 12.8px rgba(0, 50, 60, 0.24);
}

.feature-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 18px;
  color: var(--color-grey);
}

/* How It Works Section */
.how-it-works-section {
  padding: 96px 0;
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.step-card {
  padding: 24px;
  background: var(--color-white);
  border-radius: 12px;
  outline: 1px solid var(--color-primary);
  width: 25%;
  /* Center content */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  font-size: 80px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.step-card p {
  font-size: 18px;
  color: var(--color-grey);
}

/* FAQ Preview Section */
.faq-preview-section {
  padding: 128px 0;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--color-bg-light) 100%
  );
}
.better-faq-preview-section {
  padding: 128px 0;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--better-color-bg-light) 100%
  );
}

.faq-container {
  display: flex;
  justify-content: center;
  gap: 20%;
  align-items: flex-start; /* Align top for sticky to work */
}

.faq-list {
  width: 568px;
  padding: 25px;
  border-radius: 12px;
  outline: 1px solid var(--color-accent);
}
.better-faq-list {
  width: 568px;
  padding: 25px;
  border-radius: 12px;
  outline: 1px solid var(--better-color-accent);
}

.faq-item {
  border-bottom: 1px solid var(--color-primary);
  background: transparent; /* Transparent background */
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--color-grey);
  font-weight: 400;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .plus-icon {
  transform: rotate(45deg); /* Optional rotation */
}

.view-all-faqs {
  margin-top: 24px;
  text-align: right;
}

.faq-header-wrapper {
  position: relative;
  top: 0px;
  height: fit-content;
  display: flex;
  justify-content: flex-end;
}

.faq-header {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* About Page */
.about-hero {
  background: white;
  padding: 120px 0;
}

.about-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10%;
}

.about-title {
  flex: 0 0 45%;
}

.about-title h1 {
  font-size: 64px;
  line-height: 64px;
}

.about-features {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-feature-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(23, 113, 131, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3%;
}

.feature-number {
  color: #1f232e;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  flex: 0 0 5%;
}

.about-feature-card h3 {
  color: #1f232e;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  flex: 0 0 25%;
}

.about-feature-card p {
  color: #6c7893;
  font-size: 16px;
  line-height: 26px;
  flex: 1 1 auto;
}

.about-stats {
  background: linear-gradient(
    0deg,
    var(--color-bg-light) 0%,
    rgba(217, 233, 237, 0.2) 100%
  );
  padding: 80px 0;
}
.better-about-stats {
  background: linear-gradient(
    0deg,
    var(--better-color-bg-light) 0%,
    rgba(217, 233, 237, 0.2) 100%
  );
  padding: 80px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 3%;
}

.stat-card {
  flex: 0 0 30%;
  max-width: 352px;
  padding: 33px 50px;
  background: white;
  border-radius: 16px;
  border: 1px solid #dae6e7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-number {
  color: var(--color-primary);
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 139px;
}

.stat-card h3 {
  color: #1f232e;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}

.stat-card p {
  color: #6c7893;
  font-size: 16px;
  line-height: 24px;
}

/* Disclaimer Page */
.disclaimer-section {
  background: white;
  padding: 120px 0;
}

.disclaimer-content {
  max-width: 1344px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.disclaimer-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.disclaimer-header h1 {
  color: #323237;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 0;
}

.effective-date {
  color: #828282;
  font-size: 16px;
  text-align: center;
}

.effective-date .underline {
  text-decoration: underline;
}

.disclaimer-text {
  color: #323237;
  font-size: 18px;
  line-height: 1.6;
}

.disclaimer-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.disclaimer-text p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #323237;
}

/* Privacy Policy Page */
.privacy-section {
  background: white;
  padding: 120px 0;
}

.privacy-content {
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 160px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.privacy-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-header h1 {
  color: #00323c;
  font-size: 56px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}

.last-updated {
  color: #828282;
  font-size: 16px;
}

.privacy-text h2 {
  color: #00323c;
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
}

.privacy-text h3 {
  color: #00323c;
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
}

.privacy-text p {
  color: #00323c;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
}

.privacy-text a {
  color: #00aed1;
  text-decoration: underline;
}

.privacy-text strong {
  font-weight: 500;
}

.privacy-text ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 12px;
}

.privacy-text ul li {
  color: #00323c;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 8px;
}

.data-table {
  margin: 32px 0;
  width: 100%;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background: #f9f9f9;
  color: #00323c;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 14px;
  text-align: left;
  border: 1px solid #00323c;
}

.data-table td {
  background: #f9f9f9;
  color: #00323c;
  font-size: 18px;
  padding: 20px 14px;
  border: 1px solid #00323c;
  vertical-align: top;
}

.data-table td:first-child {
  font-weight: 500;
  width: 30%;
}

/* FAQ Page (Full) */
.faq-page-section {
  background: white;
  padding: 56px 5%;
}

.faq-page-title {
  font-size: 68px;
  font-weight: 500;
  color: var(--color-accent);
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 56px;
}
.better-faq-page-title {
  font-size: 68px;
  font-weight: 500;
  color: var(--better-color-accent);
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 56px;
}

.faq-page-list {
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 24px; /* add spacing since borders removed */
}

.faq-page-list .faq-item {
  padding: 48px 24px;
  border-bottom: 1px solid #00323c; /* restore separator line */
}

/* Ensure no outer outline for dedicated FAQ page list */
.faq-page-list {
  outline: none;
  border: none;
}

.faq-page-list .faq-question {
  padding: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
}

.faq-page-list .faq-answer p {
  font-size: 18px;
  color: #00323c;
}

.faq-page-list .plus-icon {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.faq-item.active .plus-icon {
  transform: rotate(45deg);
}

.faq-contact {
  max-width: 1104px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-contact h2 {
  font-size: 36px;
  font-weight: 500;
  color: #00323c;
  margin: 0;
}

.faq-contact p {
  font-size: 22px;
  font-weight: 400;
  color: #00323c;
}

.faq-contact a {
  color: var(--color-accent);
  text-decoration: underline;
}
.better-faq-contact a {
  color: var(--better-color-accent);
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--color-bg-light);
  padding: 64px 0;
}
.better-footer {
  background-color: var(--better-color-bg-light);
  padding: 64px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand p {
  margin: 24px 0;
}

.contact-info p {
  margin: 5px 0;
}
.better-contact-info p {
  margin: 5px 0;
}
.contact-info a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 500;
}
.better-contact-info a {
  color: var(--better-color-accent);
  text-decoration: underline;
  font-weight: 500;
}

.footer-links-grid {
  display: flex;
  gap: 80px; /* Increased spacing from 56px */
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid #b9d6fe;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
}

/* Simple Centered Pages (thanks, contact, 404, under-construction) */
.simple-page {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.simple-page-image {
  width: 10%;
  max-width: 420px;
  height: auto;
}
.underconstruction-image {
  width: 30%;
  max-width: 420px;
  height: auto;
}

.simple-page h1 {
  font-size: 36px;
  color: #00323c;
  margin-bottom: 0;
}

.simple-page p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.simple-page a {
  color: var(--color-accent);
  text-decoration: underline;
}
.better-simple-page a {
  color: var(--better-color-accent);
  text-decoration: underline;
}

/* How to Remove Page */
.how-to-remove-section {
  padding: 120px 160px;
  background: var(--color-white);
}

.how-to-remove-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.how-to-remove-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.how-to-remove-header h1 {
  font-size: 56px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0;
}

.how-to-remove-header p {
  font-size: 24px;
  color: var(--color-primary);
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  width: 100%;
  max-width: 1093px;
}

.step-card {
  padding: 32px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-bg-light);
  border-radius: 12px;
  box-shadow: 0px 1px 2px oklch(0% 0 0 / 0.1);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: column;
  width: 25%;
}
.better-step-card {
  padding: 32px 24px;
  background: var(--color-white);
  border: 1px solid var(--better-color-bg-light);
  border-radius: 12px;
  box-shadow: 0px 1px 2px oklch(0% 0 0 / 0.1);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: column;
  width: 25%;
}

.step-header {
  display: flex;
  width: 100%;
  align-items: center;
}

.step-card-horizontal {
  display: flex;
  flex-direction: row;
  gap: 10%;
}

.step-card-horizontal .step-icon {
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.better-step-icon {
  width: 48px;
  height: 48px;
  background: var(--better-color-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon img {
  width: 40%;
  height: 40%;
  object-fit: contain;
}

.step-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0;
}

.step-card p {
  font-size: 16px;
  text-align: left;
  color: var(--color-primary);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .how-to-remove-section {
    padding: 80px 40px;
  }

  .steps-container {
    gap: 24px;
  }

  .step-card {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .how-to-remove-section {
    padding: 60px 20px;
  }

  .how-to-remove-header h1 {
    font-size: 40px;
  }

  .how-to-remove-header p {
    font-size: 18px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 350px;
  }
}

/* Disclaimer Page */
.disclaimer-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.disclaimer-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 12px 0;
}

.disclaimer-text li {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--color-primary);
}
