:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #2c3343;
  --line: #e2e8f0;
  --accent: #2563eb;
  --accent-2: #f59e0b;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.75rem;
  --space-6: 2.25rem;
  --space-7: 3rem;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.eyebrow,
.nav-links a,
.logo-text {
  font-family: "DM Sans", "Raleway", system-ui, -apple-system, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  max-width: 77vw;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-mark {
  width: 72px;
  height:  72px;
  border-radius: 12px;
  object-fit: contain;
  opacity: 0;
  animation: logoFadeIn 0.8s ease-in-out 0.2s forwards;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-text {
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-links a {
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 1rem;
  cursor: pointer;
}

body {
  background-image: url(assets/bg.png);
  background-repeat: repeat;
  background-color: aliceblue;
  background-attachment: local;
  background-position: revert-layer;
  background-position: center;
    background-blend-mode: difference;
}

main section {
  padding: clamp(2.75rem, 4vw, 4.5rem) 0;

}

.hero {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: var(--space-2) 0;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn .icon,
.call-now .icon {
  width: 18px;
  height: 18px;
  border-radius: 0;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  display:flex;
  justify-content: center;
}

.btn-secondary {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
}

.metrics strong {
  display: block;
  font-size: 1.6rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 4px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3);
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.92), transparent);
  color: #fff;
}

.strip {
  background: #e9eef7;
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  border-block: 1px solid var(--line);
}

.section-header {
  max-width: 720px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.muted {
  color: var(--muted);
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
  padding-top: var(--space-3);
  padding-right: var(--space-6);
}

div.step > h3 {
  margin-bottom: 0px;
}

div.step > p {
    font-size: larger;
    font-weight: 500;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(120deg, #16a34a, #6187df);
  border: 1px solid var(--line);
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  border-radius: 50%;
}

#tools {
  background: linear-gradient(120deg, #16a34a, #6187df);
}

#tools .section-header h2 {
  color: #fff;
}

.step-icon img {
  width: 34px;
  height: 34px;
  border-radius: 0;
  box-sizing: content-box;
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #e0e7ff;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: var(--space-2);
  opacity: 0;
}



.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}

.highlight {
  background: linear-gradient(145deg, #0f172a, #111827);
  color: #e2e8f0;
}

.highlight small {
  color: #cbd5e1;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 26s linear infinite;
}

.marquee-group {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-items: center;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 150px;
  white-space: nowrap;
}

.marquee-item .label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.marquee-logo {
  height: 30px;
  width: 30px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: transform 150ms ease, opacity 150ms ease;
  box-sizing: content-box;
  border-radius: 0;
}

.marquee-logo:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-3);
  background: none;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  cursor: pointer;
  font-family: "Raleway", system-ui, -apple-system, sans-serif;
}

.accordion-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 0;
}

.accordion-panel {
  padding: 0 var(--space-3) var(--space-3);
  color: var(--muted);
  font-family: "Raleway", system-ui, -apple-system, sans-serif;
}

.form-card {
  display: grid;
  padding: 16px;
  gap: var(--space-3);
}

form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
  font-size: 1rem;
  transition: border 150ms ease, box-shadow 150ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.form-actions .btn {
  margin-top: var(--space-3);
}

.small {
  font-size: 0.9rem;
}

.form-error {
  color: #b91c1c;
  font-weight: 700;
  min-height: 1.2em;
}

.success-panel {
  border: 1px solid #16a34a;
  border-radius: var(--radius);
  padding: var(--space-3);
  background: #ecfdf3;
}

.success-panel ul {
  padding-left: 1.1rem;
}

.cta-wide {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  align-items: center;
}

.cta-banner, .card {
padding: 16px
}

.cta-banner {
  background: transparent;
  color: #fff;
  border: none;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}
@
.cta-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: flex-start;
}

.cta-icon {
  width: 56px;
  height: 54px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
}

.cta-icon img {
  width: 28px;
  height: 28px;
  border-radius: 0;
}

.cta-left h3 {
  margin: 0.15rem 0;
}

.cta-left .muted {
  color: var(--muted);
}

.driver-success {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-wrapper-cta {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  padding: 16px;
}

.desktop-cta .image-wrapper-cta {
  padding: 0px;
  border: 1px solid var(--line);
}

.button-container-cta .cta-note  {
  display:block;
  padding: 16px;
}

.cta-actions {
  display: grid;
  gap: var(--space-2);
  justify-items: start;
}

.cta-note {
  color: black;
}

/* Desktop version - show by default */
.desktop-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile version - hide by default */
.mobile-cta-banner {
  display: none;
}

.mobile-agent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
}

.agent-call-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.agent-call-text {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.75rem;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.agent-call-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.agent-photo-wrapper {
  position: relative;
  display: inline-block;
}

.agent-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.agent-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
.orm-card {
  padding: 16px;
}
@keyframes pulse-green {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.agent-call-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.call-now {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  background: #16a34a;
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.35);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 20;
}

.call-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  background: #0f172a;
  color: #fff;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.call-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: #0f172a transparent transparent transparent;
}

@media (min-width: 901px) {
  .call-now:hover .call-tooltip,
  .call-now:focus-visible .call-tooltip {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .call-tooltip {
    display: none;
  }
  .cta-banner {
    background: linear-gradient(120deg, #111827, #1d4ed8);
    color: #fff;
    border: none;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .cta-note {
    color:white;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    
  }

  .logo-mark {
    width: 62px;
    height:  62px;
  }

  .nav-links {
    position: absolute;
    right: 1rem;
    top: 70px;
    background: var(--card);
    padding: var(--space-3);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}


@media (max-width: 720px) {
  body {
  background-size: contain;
  }
  .hero {
    padding-top: var(--space-6);
  }
  .container {
    max-width: 85vw;
  }
  .cta-wide {
    grid-template-columns: 1fr;
  }
  .cta-icon {
    display: none;
  }
  .cta-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
  }
  /* Hide desktop version on mobile */
  .desktop-cta {
    display: none;
  }
  /* Show mobile version on mobile */
  .mobile-cta-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
    width: 100%;
  }
  .mobile-cta-banner .cta-actions {
    flex: 1;
  }
  .mobile-agent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    flex-shrink: 0;
  }
}

/* ============================================
   Pricing Table Styles
   ============================================ */

#pricing-table {
  padding: var(--space-7) 0;
}

#pricing-table > .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column dense;
  gap: 8px !important;
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.drop-shadow-xl {
  filter: drop-shadow(0 20px 25px -5px rgba(0, 0, 0, 0.1)) drop-shadow(0 8px 10px -6px rgba(0, 0, 0, 0.1));
}

/* Desktop breakpoint for pricing table (1120px+) */
@media (min-width: 1120px) {
  .pricing-grid {
    gap: 0 !important;
  }
  
  .desktop\:rounded-t-2xl {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  
  .desktop\:rounded-b-2xl {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  /* Column dividers - add left border to all cells */
  .desktop\:border-x,
  .plan-card-banner-wrapper {
    border-left: 1px solid var(--line) !important;
  }
  
  /* First column (Basic) - no left border */
  [data-plan="basic"] .desktop\:border-x,
  [data-plan="basic"] .plan-card-banner-wrapper {
    border-left: none !important;
  }
  
  .desktop\:border-card-banner-border {
    border-color: #22c55e;
  }
  
  .desktop\:border-plus-card-banner-border {
    border-color: #255dee;
  }
}

/* Mobile Tab Navigation */
.pricing-tabs {
  display: none;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid #e5e7eb;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #ffffff;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-tabs::-webkit-scrollbar {
  display: none;
}

.pricing-tab {
  flex: 1;
  min-width: 70px;
  padding: 1rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "DM Sans", system-ui, sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  text-align: center;
  margin-bottom: -2px;
}

.pricing-tab:hover {
  color: #0f172a;
  background-color: rgba(0, 0, 0, 0.02);
}

.pricing-tab.active,
.pricing-tab[aria-selected="true"] {
  color: #0f172a;
  border-bottom-color: #2563eb;
  background-color: transparent;
  font-weight: 700;
}

/* Max desktop breakpoint (below 1200px) */
@media (max-width: 1199px) {
  .mobile-only {
    display: flex;
  }
  
  #pricing-table > .pricing-grid {
    display: block !important;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-auto-flow: unset;
        background-repeat: repeat;
    background-color: aliceblue;
    background-attachment: local;
    background-position: revert-layer;
    background-position: center;
    background-blend-mode: difference;
  }
  
  /* Override contents display on mobile */
  .pricing-plan.contents {
    display: none !important;
  }
  
  .pricing-plan.contents.active {
    display: block !important;
    width: 100%;
    margin-bottom: 0
  }

  #pricing-table, #guarantee, #services, #testimonials, #faq {
      scroll-margin-top: -100px ;/* Adjust this value to scroll 100px above the element */
    }
    
  
  /* Make all children full width */
  .pricing-plan.active > * {
    width: 100%;
    display: block;
  }
  
  .pricing-plan.active .plan-card-banner-wrapper {
    width: 100%; 
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .pricing-plan.active .plan-content-wrapper {
    width: 100%;
    display: block;
    border-left: none;
    border-right: none;
  }
  
  .pricing-plan.active .plan-card-details-wrapper {
    width: 100%;
    border-left: none;
    border-right: none;
  }
  
  .pricing-plan.active .plan-card-section-wrapper {
    width: 100%;
    border-left: none;
    border-right: none;
  }
  
  .max-desktop\:border-l {
    border-left-width: 0;
  }
  
  .max-desktop\:border-t-card-banner-border {
    border-top-color: #22c55e;
    border-top-width: 1px;
    border-top-style: solid;
  }
  
  .max-desktop\:border-t-plus-card-banner-border {
    border-top-color: #255dee;
    border-top-width: 1px;
    border-top-style: solid;
  }
  
  /* Mobile plan card styling */
  .pricing-plan.active {
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: var(--space-4);
    background: #ffffff;
  }
  
  .pricing-plan.active .desktop\:border-x {
    border-left: none !important;
    border-right: none !important;
  }
  
  .pricing-plan.active .desktop\:rounded-t-2xl,
  .pricing-plan.active .desktop\:rounded-b-2xl {
    border-radius: 0;
  }
}

/* Pricing table banner */
.plan-card-banner-wrapper {
  padding: 0.875rem var(--space-3);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card-banner-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bg-card-banner-background {
  background-color: #22c55e !important;
}

.text-card-banner-text {
  color: #ffffff !important;
}

.bg-plus-card-banner-background {
  background-color: #255dee !important;
}

.text-plus-card-banner-text {
  color: #ffffff !important;
}

/* Card sections */
.bg-card-section-background {
  background-color: #f8f9fa;
}

.plan-content-wrapper {
  display: grid;
  grid-template-rows: repeat(5, auto);
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: none;
}

.plan-card-details-wrapper {
  padding: var(--space-4) var(--space-4) var(--space-3);
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.plan-card-section-wrapper {
  padding: var(--space-4);
  background-color: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.plan-card-badge {
  border-radius: calc(var(--radius) / 2);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  background-color: #22c55e;
  color: #0f172a;
  display: inline-block;
  vertical-align: middle;
}

/* Typography */
.text-t5 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.text-t3 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
}

.text-t8 {
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
  margin: 0 0 var(--space-2) 0;
}

.text-body-sm {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

.text-shade-50 {
  color: #64748b;
}

.text-shade-80 {
  color: #1e293b;
}

.price-display-prefix {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.plan-price-display-styles {
  font-size: 0.875rem;
  line-height: 1.2;
  color: #64748b;
  font-weight: 600;
}

.richtext {
  color: #374151;
}

/* Features and lists */
.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-card-features li {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.text-check-icon-color {
  color: #16a34a;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.opacity-body {
  opacity: 0.95;
}

/* Buttons */
.px-button-px {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-button-py {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.rounded-button {
  border-radius: var(--radius);
}

.text-button-size {
  font-size: 1rem;
  font-weight: 600;
}

.font-button-font {
  font-family: "DM Sans", system-ui, sans-serif;
}

.font-button-weight {
  font-weight: 600;
}

.tracking-button-tracking {
  letter-spacing: 0.025em;
}

.text-button-light-primary-text {
  color: #ffffff;
}

.bg-button-light-primary-bg {
  background-color: #2563eb;
  border: 2px solid #2563eb;
}

.border-button-light-primary-border {
  border-color: #2563eb;
}

.ring-button-light-primary-border {
  --tw-ring-color: #2563eb;
}

.hover\:text-button-light-primary-text-hover:hover {
  color: #ffffff;
}

.hover\:bg-button-light-primary-bg-hover:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hover\:border-button-light-primary-border-hover:hover {
  border-color: #1d4ed8;
}

.hover\:ring-button-light-primary-border-hover:hover {
  --tw-ring-color: #1d4ed8;
}

.focus\:text-button-light-primary-text-focus:focus {
  color: #ffffff;
}

.focus\:bg-button-light-primary-bg-focus:focus {
  background-color: #1d4ed8;
}

.focus\:border-button-light-primary-border-focus:focus {
  border-color: #1d4ed8;
}

.focus\:ring-button-light-primary-border-focus:focus {
  --tw-ring-color: #1d4ed8;
}

.active\:text-button-light-primary-text-active:active {
  color: #ffffff;
}

.active\:bg-button-light-primary-bg-active:active {
  background-color: #1e40af;
}

.active\:border-button-light-primary-border-active:active {
  border-color: #1e40af;
}

.disabled\:text-button-light-primary-text-disabled:disabled {
  color: #94a3b8;
}

.disabled\:bg-button-light-primary-bg-disabled:disabled {
  background-color: #e2e8f0;
}

.disabled\:border-button-light-primary-border-disabled:disabled {
  border-color: #e2e8f0;
}

.ring-inset {
  --tw-ring-inset: inset;
}

.focus-visible\:outline-2:focus-visible {
  outline-width: 2px;
}

.focus-visible\:outline-offset-2:focus-visible {
  outline-offset: 2px;
}

.focus-visible\:outline-state-focus:focus-visible {
  outline-color: #2563eb;
}

.focus-visible\:outline:focus-visible {
  outline-style: solid;
}

.transition-all {
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: 150ms;
}

.duration-150 {
  transition-duration: 150ms;
}

/* Utility classes */
.contents {
  display: contents;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.text-right {
  text-align: right;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.self-center {
  align-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.max-w-full {
  max-width: 100%;
}

.inline-flex {
  display: inline-flex;
}

.items-start {
  align-items: flex-start;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.content-start {
  align-content: flex-start;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-2\.5 {
  gap: 0.625rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.leading-4 {
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.flex-row {
  flex-direction: row;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3\.5 {
  padding-top: 0.875rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-solid {
  border-style: solid;
}

.border-gray-200 {
  border-color: transparent;
}

.border-2 {
  border-width: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shrink-0 {
  flex-shrink: 0;
}

.min-h-\[20px\] {
  min-height: 20px;
}

.underline {
  text-decoration-line: underline;
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

/* Desktop: No rounded corners on individual cells */
@media (min-width: 1120px) {
  .rounded-tl-2xl,
  .rounded-bl-2xl,
  .rounded-tr-2xl,
  .rounded-br-2xl,
  .card-banner-last {
    border-radius: 0;
  }
}

/* Mobile: Keep rounded corners */
@media (max-width: 1119px) {
  .rounded-tl-2xl {
    border-top-left-radius: var(--radius);
  }
  
  .rounded-bl-2xl {
    border-bottom-left-radius: var(--radius);
  }
  
  .rounded-tr-2xl {
    border-top-right-radius: var(--radius);
  }
  
  .rounded-br-2xl {
    border-bottom-right-radius: var(--radius);
  }
  
  .card-banner-last {
    border-top-right-radius: var(--radius);
  }
}

@media (min-width: 768px) {
  .md\:flex-col {
    flex-direction: column;
  }
  
  .md\:items-start {
    align-items: flex-start;
  }
}

/* Desktop: Show all plans, hide tabs */
@media (min-width: 1200px) {
  .mobile-only {
    display: none !important;
  }
  
  .pricing-plan {
    display: contents !important;
  }
}

/* Guarantee text with star icon */
.guarantee-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.guarantee-text {
  position: relative;
  padding-left: 1.5em;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.guarantee-text:hover {
  text-decoration: underline;
}

.guarantee-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-image: url('assets/icons/star.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.guarantee-tooltip-trigger {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 150ms ease;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.guarantee-tooltip-trigger:hover {
  background: #e5e7eb;
  color: #2563eb;
  border-color: #2563eb;
}

.guarantee-tooltip-trigger:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.guarantee-tooltip-trigger svg {
  width: 12px;
  height: 12px;
}

.guarantee-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: #0f172a;
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  white-space: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  width: 280px;
  z-index: 30;
}

.guarantee-tooltip strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.guarantee-tooltip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.guarantee-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border-width: 6px;
  border-style: solid;
  border-color: #0f172a transparent transparent transparent;
}

.guarantee-wrapper:hover .guarantee-tooltip,
.guarantee-tooltip-trigger:focus-visible + .guarantee-tooltip,
.guarantee-tooltip-trigger:focus + .guarantee-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .guarantee-tooltip {
    width: 240px;
    left: auto;
    right: 0;
  }
  
  .guarantee-tooltip::after {
    left: auto;
    right: 20px;
  }
}
