:root {
    --bg: #f7fafc;
    --card: #ffffff;
    --muted: #6b7280;
    --accent: #0b6ef6;
    --brand: #014C43;
    --radius: 14px;
    --container: 1200px;
}

* {
    box-sizing: border-box
}

html {
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    background: var(--bg);
    color: #0f1724;
    line-height: 1.6;
}

a {
    color: inherit
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* page container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}

/* ===== header ===== */
header.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 18px rgba(16, 24, 40, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 10px
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.brand .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none
}

.brand .sub {
    font-size: 12px;
    color: var(--muted)
}

nav.menu {
    display: flex;
    gap: 28px;
    align-items: center
}

nav.menu a {
    font-weight: 600;
    color: #0f1724;
    text-decoration: none
}

nav.menu a:hover {
    color: var(--accent)
}

.cta {
    background: linear-gradient(90deg, var(--accent), #0a93ff);
    color: white !important;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.cta i {
    font-size: 14px
}

/* mobile */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 20px
}

@media(max-width:900px) {
    nav.menu {
        display: none
    }

    .hamburger {
        display: block
    }
}

/* ===== hero ===== */
.hero {
    padding: 64px 0;
    background: linear-gradient(180deg, rgba(11, 110, 246, 0.06) 0%, rgba(1, 76, 67, 0.02) 60%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 40px;
    align-items: center
}

.hero-card {
    background: linear-gradient(180deg, var(--card), #fbfdff);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06)
}

.hero h1 {
    font-size: 32px;
    margin: 0 0 12px;
    color: #071133
}

.hero p {
    color: var(--muted);
    font-size: 18px
}

.hero .actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.image-frame {
    background: linear-gradient(135deg, #ffffff, #f1f8ff);
    padding: 18px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(11, 110, 246, 0.06)
}

/* badges */
.badges {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.badge {
    background: rgba(11, 110, 246, 0.08);
    color: var(--accent);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px
}

/* ===== features / why choose ===== */
.why-choose {
    padding: 16px 0
}

.why-choose h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #071133
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.feature-card {
    background: var(--card);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04);
    min-height: 160px
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #071133
}

.feature-card p {
    color: var(--muted);
    font-size: 18px
}

@media(max-width:920px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr 1fr
    }
    body{
      padding: 10px;
    }
}

@media(max-width:580px) {
    .features {
        grid-template-columns: 1fr
    }
    .badge {
    font-size: 12px;
}
.hero h1 {
    line-height: 1.2;
  }
  .hero-card {
    padding: 14px;
  }
}

/* ===== reviews ===== */
.reviews {
    padding: 5px 0
}
.reviews h2{
   font-size: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.review {
    background: var(--card);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(2, 6, 23, 0.05)
}

.review h4 {
    font-size: 20px;
    margin-bottom: 6px
}

.review .rating {
    color: #059669;
    font-weight: 800
}

.review p {
    color: var(--muted);
    font-size: 18px
}

@media(max-width:920px) {
    .reviews-grid {
        grid-template-columns: 1fr
    }
}

 /* ---------- Content Section ---------- */
.content-section {
  padding: 80px 0;
  background: #f8fafc;
}

.content-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Row Layout */
.content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  border-radius: 16px;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); */
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.content-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-row:hover .content-image img {
  transform: scale(1.05);
}

/* Text Content */
.content-block {
  flex: 1;
}

.content-block h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 18px;
}

.content-block p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 18px;
}

.content-block .highlight {
  color: #2563eb;
  text-decoration: none;
}

.feature-list h4 {
  color: #1e293b;
  margin-bottom: 6px;
   font-size: 20px;
}

.feature-list p {
  margin-bottom: 16px;
  color: #475569;
  font-size: 18px;
}

/* Reverse layout for alternating rows */
.content-row.reverse {
  flex-direction: row-reverse;
}

/* Fade-Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-row {
    flex-direction: column;
    padding: 30px;
  }

  .content-row.reverse {
    flex-direction: column;
  }

  .content-image img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .content-block h2 {
    font-size: 1.6rem;
  }
  .content-row {
    padding: 24px;
  }
}


/* ===== pricing ===== */
/* ===== Pricing Section ===== */
.pricing {
  padding: 10px 0;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  text-align: center;
}

.pricing-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.pricing-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

.pricing-header .subtitle {
  color: #64748b;
  margin-top: 10px;
  font-size: 1rem;
}

/* Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

/* Pricing Card */
.plan {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Featured Plan (Middle) */
.plan.featured {
  border: 2px solid #2563eb;
  background: linear-gradient(180deg, #f0f6ff, #ffffff);
  position: relative;
}

.plan.featured::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: #2563eb;
  border-radius: 2px;
}

/* Header + Price */
.plan-header {
  margin-bottom: 16px;
}

.plan .title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
}

.plan .tag {
  font-size: 0.85rem;
  background: #e2e8f0;
  color: #475569;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

.plan .tag.highlight {
  background: #2563eb;
  color: #fff;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2563eb;
  margin: 16px 0 10px;
}

.period {
  font-size: 1rem;
  color: #64748b;
}

.desc {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* Feature List */
.plan ul {
  list-style: none;
  text-align: left;
  padding: 0;
  margin-bottom: 24px;
}

.plan li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #334155;
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
  transform: scale(1.05);
}

/* Fade-up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: 0px 0;
  }

  .plan {
    padding: 28px 22px;
  }

  .price {
    font-size: 1.8rem;
  }
}


/* ===== FAQ ===== */
.faq {
    padding: 10px 0
}
.faq h2{
   font-size: 2rem;
}

.faq .qa {
    background: var(--card);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04)
}

.qa summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    font-size: 23px;
}

.qa p {
    color: var(--muted);
    margin-top: 8px;
        font-size: 18px;
}

/* ===== footer ===== */
footer {
    padding: 36px 0;
    background: #06132a;
    color: #e6eefc
}

footer .foot-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center
}

footer a {
    color: inherit;
    text-decoration: underline
}

@media(max-width:780px) {
    footer .foot-inner {
        flex-direction: column;
        align-items: flex-start
    }
    .qa summary {
    font-size: 18px;
}
}

/* subtle animations */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-up.in-view {
    opacity: 1;
    transform: none
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(11, 110, 246, 0.12);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700
}

/* small helpers */
.muted {
    color: var(--muted)
}

.small {
    font-size: 15px
}

/* FAQ custom open animation */
details[open] p {
    animation: faqOpen .32s ease
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}