
:root {
  --primary: #0aa6a6;
  --secondary: #0d6efd;
  --dark: #0b2e2e;
  --light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
/*@font-face {*/
/*  font-family: 'Inter';*/
/*  src: url('/fonts/inter.woff2') format('woff2');*/
/*  font-weight: 400 700;*/
/*  font-display: swap;*/
/*}*/

/*@font-face {*/
/*  font-family: 'Playfair Display';*/
/*  src: url('/fonts/playfair.woff2') format('woff2');*/
/*  font-weight: 400 700;*/
/*  font-display: swap;*/
/*}*/

body {
  background: var(--light);
  color: #333;
  line-height: 1.3;
}

/* Explicit heading sizes to avoid deprecated browser defaults */
h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin: 0.5em 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

/* Fully override deprecated UA heading sizing */
h1,
section h1,
article h1,
main h1,
aside h1,
nav h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-block: 0.5em;
}
h1, h2 {
  line-height: 1.2;
  min-height: 1.2em;
}


header,
.site-header {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: white;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(2,42,42,0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand img {
    width: 140px;
  height: 44px;
  display: block;
  margin-right: 12px;
}
/* white background for logo for better contrast */
.brand img {
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(2,42,42,0.08);
}
.brand span {
  font-weight: 700;
  font-size: 1.1rem;
}

@media(max-width: 480px) {
  .brand img { height: 36px; }
  .brand span { font-size: 1rem; }
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 8px 0;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile navigation menu */
.nav-menu {
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
}

.nav-menu a {
  margin-left: 20px;
  padding: 0;
}

.hero {
  padding: 50px 40px 20px 50px;
  /*min-height: 620px;*/
  min-height: 70vh;
  /*display: block;*/
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  background-size: cover;
  background-position: center center;
  align-items: center;
  display: flex;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap; /* keep image beside text on wider screens */
}

.hero-text {
  flex: 1 1 60%;
  min-width: 0; /* allow text to shrink instead of forcing wrap */
}

/* .hero-image {
  flex: 0 0 40%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(8px) scale(0.98);

} */

 .hero-image img {
  width: 110%;
  max-width: 820px;   /* ⬅ increase width */
  height: auto;
  transform: translateX(40px); /* push right slightly */
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}
.hero-image {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}


.tagline-highlight {
  color: var(--light);
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  display: inline-block;
  max-width: 900px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(14px) translateX(-6px) scale(0.995);
  animation: tagline-in 900ms cubic-bezier(.16,.86,.36,1) 200ms forwards;
   background: linear-gradient(90deg, #ffffff, #cceeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #f3f6ff;
}

@media(max-width: 768px) {
  .tagline-highlight { font-size: 1.9rem; }
}

@keyframes tagline-in {
  to { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
}

@keyframes hero-image-in {
  0% { opacity: 0; transform: translateY(12px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* @keyframes hero-float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
} */

/* apply combined animations and respect reduced-motion */
.hero-image img {
  animation: hero-image-in 1200ms cubic-bezier(.16,.86,.36,1) 420ms forwards,
             hero-float 6.5s ease-in-out 1600ms both infinite;
}

@media (prefers-reduced-motion: reduce) {
  .tagline-highlight,
  .hero-image img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* slightly larger paragraph under tagline */
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,0.92); max-width: 640px; text-shadow: 0 3px 10px rgba(0,0,0,0.45); }

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--light);
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
}

.btn {
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Softer Request Demo button (less intense red and gentler pulse) */
.btn.btn-demo {
  background: linear-gradient(90deg, #b23a3a, #d95a4f);
  color: #fff;
  border: 1px solid rgba(178,58,58,0.9);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-radius: 28px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  animation: pulse-border 3.2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(178,58,58,0.12); }
  60% { box-shadow: 0 0 0 10px rgba(178,58,58,0.00); }
  100% { box-shadow: 0 0 0 0 rgba(178,58,58,0.00); }
}

.btn.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(178,58,58,0.12);
}

.section {
  padding: 80px 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .4s, box-shadow .4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Modern Standards: container, light-gradient cards and colorful icons */
.standards-section {
  background: linear-gradient(180deg, #f5fbfb, #eef9f9);
  padding: 40px 20px;
  text-align: center; /* for h2 & p only */
}

/* Headline width control */
.standards-section > h2,
.standards-section > p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cards.standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 30px;
  width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .cards.standards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cards.standards {
    grid-template-columns: 1fr;
  }
}
.standards-section {
  background: linear-gradient(180deg, #f5fbfb, #eef9f9);
  padding: 90px 20px;
}

.standards-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}

.standards-section .muted {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #6b7280;
}
@media (max-width: 992px) {
  .cards.standards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cards.standards {
    grid-template-columns: 1fr;
  }
}
.cards.standards .card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cards.standards .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}
.cards.standards .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #0aa6a6;
  background: rgba(10, 166, 166, 0.12);
}
.c-teal .icon { background: rgba(10,166,166,.15); color:#0aa6a6; }
.c-indigo .icon { background: rgba(79,70,229,.15); color:#4f46e5; }
.c-cyan .icon { background: rgba(6,182,212,.15); color:#06b6d4; }
.c-red .icon { background: rgba(239,68,68,.15); color:#ef4444; }
.c-green .icon { background: rgba(34,197,94,.15); color:#22c55e; }
.c-purple .icon { background: rgba(168,85,247,.15); color:#a855f7; }

.cards.standards h3 {
  font-size: 20px;
  font-weight: 600;
  color: #083c3c;
  margin-bottom: 10px;
}

.cards.standards p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #4b5563;
}
.cards.standards .card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #0aa6a6);
  transition: width 0.35s ease;
}

.cards.standards .card:hover::after {
  width: 100%;
}


.cards.standards .card {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,252,252,0.98));
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(2,42,42,0.06);
  border: 1px solid rgba(10,10,10,0.03);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}
.cards.standards .card h3 {
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}
.cards.standards .card p {
  color: rgba(0,0,0,0.72);
  margin-top: auto;
}
.cards.standards .card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,0,0,0.03);
}

/* center icon horizontally inside card */
.cards.standards .card .icon {
  margin-left: auto;
  margin-right: auto;
}

/* Colored icon accents per card */
.cards.standards .card.c-teal .icon { color: var(--primary); background: rgba(10,166,166,0.10); }
.cards.standards .card.c-indigo .icon { color: #6f42c1; background: rgba(111,66,193,0.08); }
.cards.standards .card.c-cyan .icon { color: #17a2b8; background: rgba(23,162,184,0.08); }
.cards.standards .card.c-yellow .icon { color: #ffc107; background: rgba(255,193,7,0.08); }
.cards.standards .card.c-red .icon { color: #dc3545; background: rgba(220,53,69,0.08); }
.cards.standards .card.c-green .icon { color: #28a745; background: rgba(40,167,69,0.08); }

/* additional color accents */
.cards.standards .card.c-purple .icon { color: #8a63ff; background: rgba(138,99,255,0.08); }
.cards.standards .card.c-orange .icon { color: #ff7a00; background: rgba(255,122,0,0.08); }

.muted {
  color: #666;
  margin-bottom: 18px;
}

footer {
  background: var(--dark);
  color: white;
  padding: 40px;
  /* text-align: center; */
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width: 768px) {
  .hero {
    padding: 30px 20px 20px 20px !important;
    text-align: center;
    min-height: auto;
  }
  header,
  .site-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    padding: 20px 30px !important;
    gap: 20px !important;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-menu {
    position: absolute !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    padding: 0 30px !important;
    display: flex !important;
  }
  .nav-menu.active {
    max-height: 300px !important;
    padding: 20px 30px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  }
  .nav-menu a {
    margin-left: 0 !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: block !important;
  }
  .nav-menu a:last-child {
    border-bottom: none !important;
  }
  .hero-inner {
    flex-direction: column !important;
  }
  .hero-text {
    flex: 1 1 100% !important;
    order: -1 !important;
  }
  .hero-image {
    width: 100% !important;
    margin-top: 30px !important;
  }
  .hero-image img {
    width: 100% !important;
    max-width: 100% !important;
    transform: translateX(0) !important;
  }
}

.feature-tabs {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
}

/* LEFT PANEL */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  border: none;
  background: #f3f6ff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #1f2937;
  transition: all 0.3s ease;
}

.feature-item .icon {
  font-size: 20px;
}

.feature-item:hover {
  background: #e6edff;
}

.feature-item.active {
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

/* RIGHT PANEL */
.feature-preview {
  position: relative;
  min-height: 420px;
}

.preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 820px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.4s ease;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.preview-img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}
@media (max-width: 992px) {
  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .feature-preview {
    margin-top: 40px;
    min-height: 360px;
  }

  .preview-img {
    max-width: 100%;
  }
}
.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff, #eef7f7);
  text-align: center;
}
.testimonials-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.testimonial-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.testimonial {
  width: 320px;
  padding: 32px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.testimonial.active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 180, 180, 0.25);
}

.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.author strong {
  display: block;
}

.author span {
  font-size: 14px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 900px) {
  .testimonial-wrapper {
    flex-direction: column;
  }
}
.get-started-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #eafafa, #ffffff);
}

.get-started-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center; */
}

/* LEFT CONTENT */
.get-started-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #0f3d3e;
}

.get-started-content p {
  color: #5f7d7e;
  margin-bottom: 25px;
  max-width: 420px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #1b5f61;
}

/* FORM */
.get-started-form {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 120, 120, 0.15);
  backdrop-filter: blur(12px);
}

.get-started-form h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #0f3d3e;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #cfe8e8;
  font-size: 15px;
  transition: 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #23b5b5;
  box-shadow: 0 0 0 4px rgba(35, 181, 181, 0.15);
}

/* BUTTON */
.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #23b5b5, #0aa2a2);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(35, 181, 181, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #7d9d9e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .get-started-container {
    grid-template-columns: 1fr;
  }

  .get-started-content {
    text-align: center;
  }

  .get-started-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e0f7f7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Add subtle decorative blobs */
.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.pricing-section::before {
  width: 400px;
  height: 400px;
  background: #23b5b5;
  top: -120px;
  left: -100px;
}

.pricing-section::after {
  width: 500px;
  height: 500px;
  background: #0aa2a2;
  bottom: -150px;
  right: -120px;
}

/* Heading and text should be on top */
.pricing-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.pricing-section .muted {
  position: relative;
  z-index: 1;
}

/* Pricing Table */
.pricing-table {
  display: flex;
  justify-content: center;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  max-width: 1000px;
  margin: 60px auto 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

/* Panel Styles */
.plan {
  flex: 1;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 180, 180, 0.25);
}

/* Enterprise Highlight */
.plan.enterprise {
  /* background: rgba(32, 178, 178, 0.1); */
  border-left: 2px solid #23b5b5;
}

/* Text */
.plan-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #0f3d3e;
}

.plan-header .price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #23b5b5;
}

.plan-header .subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
  color: #0f3d3e;
}

.features li {
  margin-bottom: 5px;
  font-size: 15px;
}

/* Button */
.btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, #23b5b5, #0aa2a2);
  color: white;
  border: none;
  transition: 0.3s ease;
  margin-top: auto;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(35, 181, 181, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-table {
    flex-direction: column;
    border-radius: 20px;
  }

  .plan.enterprise {
    border-left: none;
    border-top: 2px solid #23b5b5;
  }
}
.feature-tabs {
  display: grid;
  /* grid-template-columns: 250px 1fr; */
  gap: 60px;
  padding: 100px 50px;
  background: linear-gradient(135deg, #e0f7f7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

/* Decorative floating blobs */
.feature-tabs::before,
.feature-tabs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
  animation: float 15s ease-in-out infinite alternate;
}

.feature-tabs::before {
  width: 350px;
  height: 350px;
  background: #23b5b5;
  top: -100px;
  left: -120px;
}

.feature-tabs::after {
  width: 450px;
  height: 450px;
  background: #0aa2a2;
  bottom: -150px;
  right: -100px;
}

/* Feature List (LEFT) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  border: none;
  background: #f3f6ff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #1f2937;
  transition: all 0.3s ease, transform 0.3s ease;
}

.feature-item .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  background: #e6edff;
  transform: translateX(4px);
}

.feature-item.active {
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.feature-item.active .icon {
  transform: scale(1.2);
}

/* Feature Preview (RIGHT) */
.feature-preview {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 820px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.5s ease;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 0;
} */

.preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 900px;   /* ideal visible width */
  height: auto;       /* keep aspect ratio */
  max-height: 520px;  /* prevents overflow */
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.5s ease;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 0;
}

.preview-img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}

/* Floating animation for blobs */
@keyframes float {
  0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  50% { transform: translateY(20px) translateX(20px) rotate(15deg); }
  100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .feature-tabs {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .feature-preview {
    min-height: 360px;
  }

  .preview-img {
    max-width: 100%;
  }
}
.site-footer {
  background: linear-gradient(90deg, var(--primary),var(--secondary));
  color: #ffffff;
  padding-top: 80px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand p {
  margin-top: 16px;
  line-height: 1.7;
  font-size: 16px;
  opacity: 0.9;
}

.footer-logo {
  max-width: 160px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4dd6d6;
  transform: translateX(4px);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* Subtle glow line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4dd6d6, transparent);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}
.cta-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #e6fbfb, #f9fefe);
  text-align: center;
}
.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.cta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: stretch;
}

.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 120, 120, 0.15);
}

/* LEFT */
.cta-info {
  padding: 50px;
}

/* .cta-info h2 {
  font-size: 34px;
  margin-bottom: 14px;
} */
.cta-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0aafaf;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.subtitle {
  color: #475569;
  /* max-width: 500px; */
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.info-item h4 {
  font-size: 14px;
  color: #0aa6a6;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 15px;
  color: #334155;
}

.highlight {
  font-size: 20px;
  font-weight: 600;
  color: #0aa6a6;
}

.trial-banner {
  margin-top: 40px;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
}

/* RIGHT FORM */
.cta-form {
  padding: 45px;
}

.cta-form h3 {
  margin-bottom: 25px;
}

.cta-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cceeee;
  margin-bottom: 14px;
  font-size: 14px;
}

.cta-form input:focus {
  outline: none;
  border-color: #0aa6a6;
  box-shadow: 0 0 0 3px rgba(10,166,166,0.15);
}

.cta-form button {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #0aa6a6);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-container {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
/* body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
} */

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.site-header {
  background: linear-gradient(90deg, #2563eb, #14b8a6);;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #e5e7eb; */
}

.logo {
  color: #0779c0;
  font-size: 28px;
  font-weight: 800;
}



nav a.active,
nav a:hover {
  color: #0779c0;
}

/* PRICING */
#pricing {
  padding: 10px 20px;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-header h1 {
  /*font-size: 44px;*/
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 18px;
  color: #64748b;
}

/* LICENSE BOX */
.license-box {
  background: linear-gradient(135deg, #eef4ff, #f5fbff);
  border-radius: 32px;
  padding: 60px;
}

.license-box h2 {
  text-align: center;
  font-size: 32px;
}

.subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 30px;
}

/* HIGHLIGHT */
.highlight-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.highlight-box span {
  display: block;
  color: #64748b;
  font-size: 14px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARDS */
.price-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 42px;
  font-weight: 800;
  color: #0779c0;
}

.desc {
  color: #64748b;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  padding: 6px 0;
  font-size: 15px;
  color: #475569;
}

/* BUTTONS */
/* .btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  border: 2px solid #0779c0;
  color: #0779c0;
  font-weight: 600;
  transition: all 0.3s ease;
} */

.btn:hover {
  background: #0779c0;
  color: #ffffff;
}

.primary {
  background: #0779c0;
  color: #ffffff;
}

/* FEATURED */
.featured {
  position: relative;
  border: 3px solid #0779c0;
}

.badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: #0779c0;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* AMC */
.amc-box {
  margin-top: 50px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
}

.amc-box p {
  font-size: 14px;
  color: #475569;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* .site-header {
    flex-direction: column;
    gap: 12px;
  } */
}
.contact-section {
  padding: 100px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* INFO */
.contact-info h1 {
  /*font-size: 44px;*/
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 30px;
}

.info-box p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #0779c0;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  background: #0779c0;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #065a94;
}
/* Adjust value to your navbar height */
.scroll-offset {
  scroll-margin-top: 110px;
}
.card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 14px 0 8px;
}

.card-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.6;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li::before {
  position: absolute;
  left: 0;
  color: #14b8a6; /* teal */
  font-size: 0.9rem;
}


.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
}

.card-list .check {
  color: #14b8a6;
  font-size: 0.9rem;
  line-height: 1.4;
  min-width: 16px; /* KEY FIX */
}

.name-row {
  display: flex;
  gap: 12px;
}

.name-row input {
  flex: 1;
}
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-box {
  background: #fff;
  padding: 32px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 380px;
  animation: scaleIn 0.35s ease;
}

.success-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.success-box p {
  color: #555;
  font-size: 15px;
}

.hidden {
  display: none;
}

@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.input {
  width: 100%;
  border: 1px solid #cceeee;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
}
.input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96,165,250,0.3);
}
@keyframes scaleIn {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 230px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: none;
  z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: #1F2937;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #E7F1FF;
  color: #0B5ED7;
}

.blog-link {
  font-weight: 600;
  border-top: 1px solid #E5E7EB;
  margin-top: 6px;
}
