*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #1baa5e;
  --green-dark: #0f7a42;
  --green-lt: #e2f8ed;
  --green-pale: #f0faf5;
  --sky: #38bdf8;
  --sky-dark: #0284c7;
  --sky-lt: #e0f5fe;
  --off: #f6faf8;
  --ink: #0d1f16;
  --ink2: #2d4a38;
  --muted: #5a7080;
  --border2: #c8e6d4;
  --shadow-md: 0 6px 28px rgba(27, 170, 94, .13);
  --shadow-lg: 0 16px 56px rgba(27, 170, 94, .16);
}
.icon1{
    width:100px;
    height:100px;
    display:block;
    margin:auto;
    margin-top:-15px;
    padding: 10px;

}
.icon2{
    width:100px;
    height:100px;
    display:block;
    margin:auto;
    margin-top:-15px;
    padding: 10px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5faf7;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── GLOBAL TOOLTIP (appended to body, never clipped) ── */
#g-tip {
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .16s ease, transform .16s ease;
  transform: translateY(4px);
  max-width: 240px;
  background: #0d1f16;
  color: #e8f5ee;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.58;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
}

#g-tip.visible {
  opacity: 1;
  transform: translateY(0);
}

#g-tip .arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

/* arrow directions */
#g-tip.dir-right .arrow {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: #0d1f16;
}

#g-tip.dir-left .arrow {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: #0d1f16;
}

#g-tip.dir-top .arrow {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: #0d1f16;
}

#g-tip.dir-bottom .arrow {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: #0d1f16;
}

/* ── TIP TRIGGER BADGE ── */
.tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e8f4f0;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  cursor: default;
  margin-left: 5px;
  flex-shrink: 0;
  vertical-align: middle;
  border: 1px solid #c8ddd4;
  transition: background .15s, color .15s;
  line-height: 1;
  user-select: none;
}

.tip-icon:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

/* ── NAV ── */
/* nav { position:sticky; top:0; z-index:200; background:rgba(255,255,255,.92); backdrop-filter:blur(12px); border-bottom:1px solid var(--border2); padding:0 40px; display:flex; align-items:center; justify-content:space-between; height:64px; }
.nav-logo { display:flex; align-items:center; gap:10px; font-weight:800; font-size:18px; color:var(--ink); text-decoration:none; }
.nav-logo-mark { width:34px; height:34px; border-radius:9px; background:linear-gradient(135deg,var(--green),var(--sky-dark)); display:flex; align-items:center; justify-content:center; font-size:15px; color:white; font-weight:900; }
.nav-logo span em { font-style:normal; color:var(--green); }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { font-size:14px; font-weight:500; color:var(--ink2); text-decoration:none; transition:color .2s; }
.nav-links a:hover { color:var(--green); }
.nav-cta { display:flex; gap:10px; align-items:center; }
.btn-ghost { padding:8px 18px; border-radius:8px; font-size:13.5px; font-weight:600; border:1.5px solid var(--border2); background:white; color:var(--ink2); cursor:pointer; transition:all .2s; text-decoration:none; }
.btn-ghost:hover { border-color:var(--green); color:var(--green); }
.btn-primary { padding:8px 20px; border-radius:8px; font-size:13.5px; font-weight:600; background:var(--green); color:white; border:none; cursor:pointer; transition:all .2s; text-decoration:none; }
.btn-primary:hover { background:var(--green-dark); transform:translateY(-1px); box-shadow:var(--shadow-md); } */

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, rgba(187, 235, 216, 0.8), rgba(191, 222, 240, 0.8));
  padding: 80px 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(27, 170, 94, .18) 0%, transparent 55%), radial-gradient(circle at 75% 30%, rgba(56, 189, 248, .14) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #f5faf7;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(27, 170, 94, .15);
  border: 1px solid rgba(27, 170, 94, .3);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: black;
  /* color:#6ee7a8; */
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: #0f7a42;
  ;
  /* color:#4ade80; */
}

.hero h1 {
  color: #28332ebe;
  /* black */
}

.hero h1 i {
  font-style: normal;
  color: #088ac1;
}


.hero p {
  font-size: 17px;
  color: var(--body);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-toggle {
  display: inline-flex;
  border-radius: 10px;
  padding: 4px;
  gap: 20px;
  margin-bottom: 76px;
}

.toggle-btn {
  font-family: 'Inter', sans-serif;
  padding: 11px 32px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  /*transition: all .22s;*/
  transition:
  transform .22s ease,
  box-shadow .22s ease,
  background-color .22s ease,
  color .22s ease;
  border: none;
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf4 50%, #f0f9ff 100%);
  color: var(--body)
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(23, 150, 83, .25);
}

.save-badge {
  background: rgba(74, 222, 128, .2);
  border: 1px solid rgba(74, 222, 128, .35);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  margin-left: 6px;
  transition: all .2s;
}

.toggle-btn.active .save-badge {
  color: white;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .2);
}

/* ── PRICING CARDS ── */
.pricing-section {
  padding: 64px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Add coloured border to Free and Pro cards – matching their button colours */
.plan-card:first-child {
  border-color: #1baa5e !important;
  box-shadow: 0 4px 12px rgba(27, 170, 94, 0.1);
}

.plan-card:last-child {
  border-color: #1ea2ec !important;
  box-shadow: 0 4px 12px rgba(30, 162, 236, 0.1);
}

/* Optional: keep existing Lite card border (already has purple border) */
.plan-card.featured {
  border-color: #5a0b73 !important;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: white;
  border-radius: 20px;
  border: 1.5px solid #ddeee5;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured {
  border-color:#5a0b73;
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-badge-top {
  background: linear-gradient(135deg,#5a0b73 , #370746);
  padding: 8px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: white;
  text-transform: uppercase;
}

.plan-header {
  padding: 28px 26px 20px; text-align:center;
}

.plan-icon {
  background: #f0faf5;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.plan-name {
     
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.3px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.plan-price {
  margin-bottom: 4px;
}

.plan-price .amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--ink);
  line-height: 1;
}

.plan-price .currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.plan-price .period {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.plan-price.custom .amount {
  font-size: 28px;
  letter-spacing: -.5px;
}

.assets-row {
  text-align: center;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.assets-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.plan-cta {
  margin: 20px 26px 0;
}

.plan-cta a {
  display: block;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .22s;
  /*transition:*/
  /*transform .22s ease,*/
  /*box-shadow .22s ease,*/
  /*background-color .22s ease,*/
  /*color .22s ease;*/
}

.cta-green {
  background:#5a0b73;
  color: white;
}

.cta-green:hover {
  background: #370746;
  box-shadow: 0 4px 16px rgba(27, 170, 94, .3);
}

.cta-sky {
  background: var(--sky);
  color: white;
}

.cta-sky:hover {
  background: var(--sky-dark);
  box-shadow: 0 4px 16px rgba(56, 189, 248, .3);
}

.cta-outline {
  background: white;
  color: var(--green);
  border: 1.5px solid var(--border2);
}

.cta-outline:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.cta-dark {
  background: #1ea2ec;
  color: white;
}

.cta-dark:hover {
  background:#1082c2;
}

.plan-divider {
  height: 1px;
  background: #edf5f0;
  margin: 20px 0 0;
}

.plan-features {
  padding: 20px 26px 28px;
}

.features-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-item { 
  justify-content:center;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 11px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.45;
}

.feature-text {
  display: flex;
  align-items: center;
  flex: 1; 
  justify-content:center;
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
}

.feature-disabled {
  color: #aabba5;
}

.check-green {
  background: var(--green-lt);
  color: var(--green);
}

.check-sky {
  background: var(--sky-lt);
  color: var(--sky-dark);
}

.check-gray {
  background: #f0f4f2;
  color: #aabba5;
}

/* ── COMPARE TABLE ── */
.compare-section {
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.8px;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 15px;
  color: var(--ink2);
  margin-bottom: 40px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  border-bottom: 2px solid #ddeee5;
  background: white;
}

.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table th.col-featured {
  color: var(--green);
  background: #f0faf5;
}

.compare-table td {
  padding: 13px 20px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid #edf5f0;
  background: white;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table tr:hover td {
  background: var(--green-pale);
}

.compare-table .cat-row td {
  background: var(--off);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--green);
  padding: 10px 20px;
}

.compare-table .cat-row:hover td {
  background: var(--off);
}

.tick {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.dash {
  color: #ccd9d4;
  font-size: 18px;
}

.chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
}

.chip-green {
  background: var(--green-lt);
  color: var(--green);
}

.compare-wrapper {
  overflow-y: visible;
  /*overflow: visible; */
  /*border-radius: 16px;*/
  border: 1.5px solid #ddeee5;
}
table thead th {
  position: sticky;
  top: 68px;
  background: #fff;
  z-index: 99; 
}
.compare-table th:first-child {
  width: 34%;
} 

/* ── ADD-ONS ── */
.addons-section {
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.addon-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid #ddeee5;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .22s;
  /*transition:*/
  /*transform .22s ease,*/
  /*box-shadow .22s ease,*/
  /*background-color .22s ease,*/
  /*color .22s ease;*/
}

.addon-card:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 20px rgba(56, 189, 248, .12);
}

.addon-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.addon-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.addon-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.addon-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

/* ICON BACKGROUND VARIANTS */
.icon-green {
  background: var(--green-lt);
}

.icon-sky {
  background: var(--sky-lt);
}

.icon-yellow {
  background: #fef3dc;
}

.icon-red {
  background: #fde8e8;
}


/* ── FAQ ── */
.faq-section {
  padding: 0 40px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1.5px solid #ddeee5;
  overflow: hidden;
  margin-bottom: 8px;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green-lt);
  color: var(--green);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
  font-weight: 700;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: white;
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid #edf5f0;
}

.faq-item.open .faq-a {
  display: block;
  padding-top: 14px;
}

.faq-container {
  margin-top: 32px;
}

/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  /* margin:0 48px 72px; */
  background: linear-gradient(130deg, #0d3d28 0%, #1a8a45 50%, #0272b0 100%);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-band::before {
  content: 'PRICING';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.06em;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: 180px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.cta-text h2 em {
  font-style: italic;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 400px
}

.cta-acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.cbtn-w {
  padding: 12px 24px;
  border-radius: 9px;
  background: #fff;
  color: #0d3d28;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .16s;
}

.cbtn-w:hover {
  opacity: .92;
  transform: translateY(-2px)
}

.cbtn-g {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #155237;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .14s;
  font-family: 'Inter', sans-serif;
}

.cbtn-g:hover {
  background: rgba(255, 255, 255, .17);
  color: #fff
}


/* ─────────────────────────────────────────────────────────
   CTA RESPONSIVE ADJUSTMENTS
───────────────────────────────────────────────────────── */

/* Tablet (Max-width: 1080px) */
@media(max-width:1080px) {
  .cta-band {
    margin: 0 0 0;      /* Removes side margins if any */
    padding: 40px 32px; /* Reduces padding for smaller width */
  }
}

/* Mobile (Max-width: 640px) */
@media(max-width:640px) {
  .cta-band {
    margin: 0 0 60px;   /* Adds bottom spacing for mobile flow */
    padding: 32px 20px; /* Tightens padding */
    flex-direction: column; /* Stacks text and buttons vertically */
    text-align: center;     /* Centers text for mobile balance (implied) */
  }

  .cta-text p {
    max-width: 100%;    /* Allows text to fill the width */
  }

  .cta-acts {
    width: 100%;        /* Forces action container to full width */
    justify-content: center;
  }
}



/* ── FOOTER ── */
/* footer { background:white; border-top:1px solid #ddeee5; padding:40px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-logo { font-weight:800; font-size:16px; color:var(--ink); }
.footer-logo em { font-style:normal; color:var(--green); }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:13px; color:var(--muted); text-decoration:none; font-weight:500; transition:color .2s; }
.footer-links a:hover { color:var(--green); }
.footer-copy { font-size:12px; color:#b0c8b8; } */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-in {
  animation: fadeUp .5s ease both;
}

.fade-in:nth-child(1) {
  animation-delay: .05s
}

.fade-in:nth-child(2) {
  animation-delay: .12s
}

.fade-in:nth-child(3) {
  animation-delay: .19s
}

.fade-in:nth-child(4) {
  animation-delay: .26s
}

@media(max-width:1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .plan-card.featured {
    transform: none
  }
}

@media(max-width:640px) {
  nav {
    padding: 0 20px
  }

  .nav-links,
  .btn-ghost {
    display: none
  }

  .hero,
  .pricing-section,
  .compare-section,
  .addons-section,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px
  }

  .plans-grid {
    grid-template-columns: 1fr
  }

  .addons-grid {
    grid-template-columns: 1fr
  }

  .cta-banner {
    padding: 36px 28px;
    flex-direction: column;
    margin: 0 20px 60px
  }
}


/* ── COLLABORATOR ADD-ON BOX ── */
.collab-box {
  margin-top: 28px;
  background: white;
  border-radius: 14px;
  border: 1.5px solid #ddeee5;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.collab-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--sky-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.collab-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;

}

.collab-desc {
  font-size: 13px;
  color: var(--muted);

}

.collab-price-wrap {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;

}

.collab-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.5px;
}

.collab-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}


/* =========================================
   LARGE TABLETS / SMALL LAPTOPS
========================================= */
@media (max-width: 1024px) {

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 70px 24px 0;
  }

  .pricing-section,
  .compare-section,
  .addons-section,
  .faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .plan-card.featured {
    transform: none;
  }

  .cta-band {
    padding: 40px 30px;
    gap: 24px;
  }
}


/* =========================================
   TABLETS
========================================= */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-toggle {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom:90px;
  }

  .toggle-btn {
    width: 100%;
    max-width: 280px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }


  .cta-band {
    flex-direction: column;
    text-align: center;
  }

  .cta-acts {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .collab-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .collab-price-wrap {
    margin-left: 0;
    text-align: left;
  }
}


/* =========================================
   MOBILE DEVICES
========================================= */
@media (max-width: 480px) {

  body {
    overflow-x: hidden;
  }

  .hero {
    padding: 60px 16px 0;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-toggle {
    margin-bottom: 75px;
  }

  .toggle-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .pricing-section,
  .compare-section,
  .addons-section,
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 60px;
  }

  .plan-header {
    padding: 22px 18px 18px;
  }

  .plan-features {
    padding: 18px;
  }

  .plan-price .amount {
    font-size: 34px;
  }

  .plan-name {
    font-size: 18px;
  }

  .feature-item {
    font-size: 12px;
  }
  .compare-table th,
  .compare-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .faq-q {
    padding: 16px;
  }

  .faq-q-text {
    font-size: 14px;
  }

  .faq-a {
    font-size: 13px;
    padding: 0 16px 16px;
  }

  .cta-band {
    padding: 32px 20px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .cta-text p {
    font-size: 13px;
  }

  .cbtn-w,
  .cbtn-g {
    width: 100%;
  }

  .icon1,
  .icon2 {
    width: 75px;
    height: 75px;
  }
}


/* =========================================
   VERY SMALL DEVICES
========================================= */
@media (max-width: 360px) {

  .hero h1 {
    font-size: 26px;
  }
  
  .hero-toggle {
    margin-bottom: 65px; /* <--- ADD THIS LINE */
  }

  .plan-price .amount {
    font-size: 30px;
  }

  .plan-name {
    font-size: 16px;
  }

  .toggle-btn {
    font-size: 11px;
    padding: 9px 12px;
  }

  .feature-item {
    font-size: 11px;
  }
}


/*.tip-icon {*/
/*  position: relative;*/
/*  cursor: pointer;*/
/*}*/

/*.tip-icon::after {*/
/*  content: attr(data-tip);*/

/*  position: absolute;*/
/*  bottom: 130%;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/

/*  background: #222;*/
/*  color: #fff;*/

/*  padding: 10px;*/
/*  border-radius: 6px;*/

/*  width: 260px;*/

/*  opacity: 0;*/
/*  visibility: hidden;*/

/*  transition: 0.3s;*/

/*  font-size: 13px;*/
/*  line-height: 1.5;*/

/*  z-index: 9999;*/
/*}*/

/*.tip-icon:hover::after {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/







/* ─────────────────────────────────────────
   PRICING PAGE — IPAD PRO NAVBAR FIX
───────────────────────────────────────── */
@media (min-width: 641px) and (max-width: 1080px) {

  /* PREVENT DROPDOWN CLIPPING */
  /*html,*/
  /*body,*/
  /*header,*/
  /*nav {*/
  /*  overflow: visible !important;*/
  /*}*/
  
/*body,*/
/*html,*/
/*header,*/
/*nav,*/
/*.navbar,*/
/*.hero,*/
/*.hero-inner,*/
/*.pricing-section,*/
/*.faq-section,*/
/*.page-wrap {*/
/*  overflow: visible !important;*/
/*}*/

  /* REMOVE UNWANTED TOP SPACE */
  body {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* NAVBAR */
  nav {
    position: relative;
    z-index: 99999 !important;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
    padding: 0 18px;

    min-width: 0;
    height: 68px;

    overflow: visible !important;
  }

  /* LOGO */
  .logo img,
  .nav-logo img,
  .brand img {
    max-height: 34px;
    width: auto;
  }

  /* NAV LINKS */
  .nav-links {
    display: flex !important;
    align-items: center;

    flex-wrap: nowrap;
    gap: 2px;

    flex: 1;
    min-width: 0;

    overflow-x: auto;
    overflow-y: visible !important;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    flex-shrink: 0;

    font-size: 10px;
    padding: 6px 7px;
  }

  /* NAV ITEMS */
  .dropdown,
  .nav-item,
  .has-dropdown,
  li {
    position: relative;
    overflow: visible !important;
  }

  /* DROPDOWN FIX */
  .dropdown-menu,
  .submenu,
  .mega-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0;

    z-index: 999999 !important;

    min-width: 220px;

    opacity: 1;
    visibility: visible;

    overflow: visible !important;
  }

  /* MEGA MENU */
  .mega-menu {
    min-width: 700px;
  }

  /* RIGHT BUTTONS */
  .nav-cta,
  .nav-acts {
    display: flex;
    align-items: center;
    gap: 6px;

    flex-shrink: 0;
  }

  .btn-primary,
  .btn-ghost,
  .nbtn,
  .nav-btn {
    white-space: nowrap;

    font-size: 10px;
    padding: 6px 9px;
  }

  /* HERO FIX */
  .hero {
    position: relative;
    z-index: 1 !important;

    margin-top: 0 !important;
    padding-top: 70px !important;

    overflow: hidden;
  }

  .hero-inner {
    margin: 0 auto !important;
    max-width: 760px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  /* TOGGLE */
  .hero-toggle {
    margin-bottom: 70px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* PRICING SECTION */
  .pricing-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* 2 COLUMN CARDS */
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .plan-card.featured {
    transform: none;
  }

  /* ADDONS */
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TABLE */
  .compare-section,
  .addons-section,
  .faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 760px;
  }

  /* FAQ */
  .faq-q {
    padding: 18px;
  }

  .faq-q-text {
    font-size: 14px;
  }

  /* CTA */
  .cta-band {
    padding: 42px 28px;
    gap: 24px;
  }

  .cta-text h2 {
    font-size: 30px;
  }

  .cta-acts {
    flex-wrap: nowrap;
  }

  .cbtn-w,
  .cbtn-g {
    white-space: nowrap;
  }
}









/* =========================================================================
   PRICING PAGE — IPAD PRO TOP NAV
   IDENTICAL TO ASSET SCORE NAVIGATION
   ========================================================================= */

@media only screen 
and (min-width: 820px) 
and (max-width: 1180px) {

  /* ─── NAVBAR ────────────────────────────────────────── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px !important;
    overflow: visible !important;
  }

  /* LOGO — uses max-height, no fixed width (like Asset Score) */
  .nav-logo img,
  .brand-logo img,
  .logo img {
    max-height: 30px !important;
    width: auto !important;
  }

  /* NAV LINKS CONTAINER */
  .nav-links {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0px;
    flex: 0 1 auto !important;    /* prevents pushing login too far */
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible !important;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  /* INDIVIDUAL NAV LINKS */
  .nav-links a {
    white-space: nowrap;
    font-size: 10px !important;
    padding: 5px 6px !important;
    flex-shrink: 0;
  }

  /* RIGHT BUTTON AREA (Login / Demo) */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 12px !important;  /* controls gap between last link and login */
  }

  /* LOGIN BUTTON */
  .btn-ghost-sm,
  .login-btn {
    font-size: 10px !important;
    padding: 7px 10px !important;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
  }
  
  /* ========== RESTORE DROPDOWN BEHAVIOUR ========== */
.dropdown,
.nav-links li {
  position: relative !important;
}

.dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 0;
  z-index: 999999 !important;
  min-width: 220px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  padding: 8px 0;
}

/* Show dropdown on hover or focus */
.dropdown:hover .dropdown-menu,
.nav-links li:hover .dropdown-menu,
.nav-links li:focus-within .dropdown-menu {
  display: block !important;
}


/* FORCE STICKY TABLE HEADER ON IPAD PRO */
.compare-wrapper {
  overflow: visible !important;          /* remove overflow auto that breaks sticky */
  position: relative;
}

.compare-table {
  overflow: visible !important;
}

.compare-table thead {
  position: sticky;
  top: 1px;                            /* adjust to your navbar height */
  z-index: 99;
  background: #fff;
}

.compare-table th {
  position: sticky !important;
  top: 1px !important;                 /* same value */
  background: #fff !important;
  z-index: 99 !important;
}
/* Ensure nav container does not clip dropdowns */
nav,
.nav-links,
.nav-links ul,
.nav-links li {
  overflow: visible !important;
}

  /* DROPDOWN FIX – ensure they stay on top */
  /*.dropdown,*/
  /*.dropdown-menu,*/
  /*.submenu {*/
  /*  z-index: 99999 !important;*/
  /*}*/

  /*.dropdown-menu,*/
  /*.submenu {*/
  /*  position: absolute;*/
  /*}*/

  /* ─── PRICING PAGE SPECIFIC HERO (preserve your layout) ─── */
  .hero {
    position: relative;
    z-index: 1 !important;
    margin-top: 0 !important;
    padding-top: 34px !important;
  }

  .hero::before,
  .hero::after {
    z-index: -1 !important;
    pointer-events: none;
  }
}




