/* Global resets and .container moved to style.css */

/* Navbar styles moved to style.css */


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
}

/* h1 and hero-p styles removed to inherit from landing.css */

.hero-card img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

/* Restored horizontal button layout for this page */
.hero-actions {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-actions .btn {
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  white-space: nowrap;
}



.mini-list {
  margin: 0;
  padding-left: 18px;
}

section {
  padding: 56px 0;
}

/* Alternating section backgrounds */
.section-default {
  background-color: var(--bg-color);
  /* #f8fafc — the standard page bg */
}

.section-alt {
  background-color: #ffffff;
  /* Pure white for visual contrast */
}

/* ==========================================================================
   ENTRY ANIMATIONS — Slow scroll-triggered slide-up reveal
   ========================================================================== */

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Visible state — triggered by IntersectionObserver */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid children */
.reveal.delay-1 {
  transition-delay: 0.10s;
}

.reveal.delay-2 {
  transition-delay: 0.22s;
}

.reveal.delay-3 {
  transition-delay: 0.34s;
}

.reveal.delay-4 {
  transition-delay: 0.46s;
}

.reveal.delay-5 {
  transition-delay: 0.58s;
}

.reveal.delay-6 {
  transition-delay: 0.70s;
}

/* Heading — same slide-up, slightly faster */
.reveal-heading {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-heading.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2rem;
  margin: 0 0 12px;
}

h3 {
  font-size: 1.2rem;
  margin-top: 0;
}

.section-intro {
  max-width: 760px;
  color: var(--text-muted);
  margin-bottom: 28px;
}



.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 10px;
}

.step {
  background: #fff;
  border: 1.5px solid;
  border-radius: 16px;
  padding: 24px 16px;
  position: relative;
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: -15px;
  top: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* Arrow between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translateY(-50%) rotate(45deg);
}

/* Step 1 Colors (Red) */
.step:nth-child(1) {
  border-color: #ef4444;
}

.step:nth-child(1)::before {
  background: #ef4444;
}

.step:nth-child(1)::after {
  border-color: #ef4444;
}

.step:nth-child(1) h3 {
  color: #ef4444;
}

/* Step 2 Colors (Yellow) */
.step:nth-child(2) {
  border-color: #f59e0b;
}

.step:nth-child(2)::before {
  background: #f59e0b;
}

.step:nth-child(2)::after {
  border-color: #f59e0b;
}

.step:nth-child(2) h3 {
  color: #f59e0b;
}

/* Step 3 Colors (Teal) */
.step:nth-child(3) {
  border-color: #14b8a6;
}

.step:nth-child(3)::before {
  background: #14b8a6;
}

.step:nth-child(3)::after {
  border-color: #14b8a6;
}

.step:nth-child(3) h3 {
  color: #14b8a6;
}

/* Step 4 Colors (Blue) */
.step:nth-child(4) {
  border-color: #0ea5e9;
}

.step:nth-child(4)::before {
  background: #0ea5e9;
}

.step:nth-child(4) h3 {
  color: #0ea5e9;
}

.step-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 20px;
  display: block;
}

.step h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 0;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #d9e1ea;
}

th {
  background: #eef4ff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.links-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.links-list li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.links-list li a:hover {
  background: rgba(99, 102, 241, 0.06);
  color: var(--primary);
}

/* Guides 3-column layout */
.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.guides-col {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.guides-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.guides-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  background: transparent;
  border: none;
}

.info-block {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 18px 20px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Payment Badges */
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-color);
}

.stripe-badge {
  background: #635bff;
  color: #fff;
  border-color: #635bff;
}

.payment-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}


.cta {
  background: linear-gradient(to right, #0b57d0, #2a6be0);
  color: #fff;
  border-radius: 18px;
  padding: 36px;
}

.cta h2,
.cta p {
  color: #fff;
  margin-top: 0;
}

.small {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 900px) {

  .hero-grid,
  .grid-3,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step:not(:last-child)::after {
    right: calc(50% - 4px);
    bottom: -22px;
    top: auto;
    transform: rotate(135deg);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Privacy Policy Styles
   ========================================================================== */

.policy-content {
  padding: 60px 0;
  background: #fff;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 15px;
}

.last-updated {
  color: #718096;
  font-size: 0.95rem;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.75rem;
  color: #2d3748;
  margin-bottom: 20px;
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 10px;
}

.policy-section h3 {
  font-size: 1.25rem;
  color: #4a5568;
  margin: 25px 0 15px 0;
}

.policy-section p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-section li {
  color: #4a5568;
  margin-bottom: 10px;
  position: relative;
}

.highlight-box {
  background: #f7fafc;
  border-left: 4px solid #3182ce;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-weight: 500;
  color: #2c5282;
}