/* ===== BASE & RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: #1E293B;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  /* text-align: center !important; */
  
}
.page-header{
  background-color: #0071C0;
  color: white ;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-logo {
  height: 44px;
  width: auto;
}

img.logo {
  height: 45px;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #1E293B;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1rem;
  padding: 8px 10px;
  display: inline-block;
  transition: transform 0.2s ease;  
}

.main-nav a:hover,
.main-nav a.active {
  color: #0071C0;
  font-weight: 300;
  background-color: #F0F7FC;
  transform: scale(1.05);
  border-radius: 10px;
}

/* Get Started button */
.header-btn {
  margin-left: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .header-btn {
    margin-left: 0;
  }
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #0071C0;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #FFC000;
  color:#0071C0 ;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);

}

.btn-secondary {
  background: #FFC000;
  color: #1E293B;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #e0a800;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: #0071C0;
  border: 2px solid #0071C0;
}
.btn-outline:hover {
  background: #0071C0;
  color: #fff;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-full {
  width: 100%;
}

/* ===== SECTION UTILITIES ===== */
section {
  padding: 4rem 0;
}

.bg-light {
  background: #F0F7FC;
}
.bg-blue {
  background: #0071C0;
  color: white;
}
.bg-dark-blue {
  background: #004a80;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}
.section-header .underline {
  width: 80px;
  height: 4px;
  background: #0071C0;
  margin: 0 auto;
  border-radius: 2px;
}
.section-header p {
  color: #475569;
  font-size: 1.1rem;
}

.section-sub {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: #475569;
}

.text-blue {
  color: #0071C0;
}
.text-center {
  text-align: center;
}
.mt-5 {
  margin-top: 3rem;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-2, .grid-3, .grid-4, .grid-5 {
  display: grid;
  gap: 2rem;
}

/* ===== HERO (HOME) ===== */
.hero-home {
  background: linear-gradient(135deg, #ffffff 0%, #F0F7FC 100%);
  padding: 4rem 0;
  overflow: hidden;
}
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 80%;

  background-color: rgba(37, 99, 235, 0.05); /* medical-blue/5 equivalent */
  
  transform: skewX(12deg);
  transform-origin: top right;

  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 50px;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
}
.hero-text p {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.trust-badges {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: #475569;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero-image .image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 4px solid white;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #0071C0, transparent);
  padding: 2rem 1.5rem 1rem;
  color: white;
  font-weight: 500;
  font-size: 1.2rem;
}

/* ===== AUDIENCE CARDS (WHO THIS IS FOR) ===== */
.audience-card {
  background: #f8fafc;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.audience-card:hover {
  border: 0.1px solid #0071C0;
  box-shadow: 0 8px 24px rgba(0,113,192,0.1);
}
/* .card-icon {
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #0071C0;
  transition: all 0.2s;
} */
/* .audience-card:hover .card-icon {
  background: #0071C0;
  color: white;
} */
.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.audience-card p {
  font-size: 0.8rem;
  color: #64748b;
}

/* ===== HOW IT WORKS ===== */
.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
}
.step-line {
  display: none;
}
@media (min-width: 768px) {
  .step-line {
    display: block;
    position: absolute;
    top: 2rem;
    left: 25%;
    right: 25%;
    height: 2px;
    background: rgba(0,113,192,0.2);
    z-index: 0;
  }
}
.step-circle {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border: 4px solid #F0F7FC;
  position: relative;
}
.step-number {
  position: absolute;
  top: -19px;
  right: -1rem;
  background: #0071C0;
  color: #f1f5f9;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1f5f9;
}
.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step p {
  color: #475569;
  font-size: 0.9rem;
}
.badge {
  background: rgba(0,113,192,0.1);
  color: #0071C0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  display: inline-block;
}

/* ===== BEFORE VS AFTER ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}
.comparison-card {
  padding: 2.5rem;
}
.comparison-card.without {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
}
.comparison-card.with {
  background: #0071C0;
  color: white;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
.comparison-card ul {
  list-style: none;
}
.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.comparison-card.with li {
  color: #f0f9ff;
}
.icon-check.small {
  width: 18px;
  height: 18px;
  background-color: #FFC000;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ===== WHY DOCTORS NEED A WEBSITE ===== */
.why-need {
  padding: 4rem 0;
  background: white;
}
.need-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.need-card:hover {
  box-shadow: 0 12px 32px rgba(0,113,192,0.1);
}
.need-card .icon.large {
  width: 56px;
  height: 56px;
  background-color: #F0F7FC;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #0071C0;
  transition: all 0.2s;
}

.need-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.need-card p {
  color: #475569;
  line-height: 1.6;
}

/* ===== PATIENT PROFILE ===== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
.profile-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.profile-text .lead {
  font-size: 1.2rem;
  color: #b0d4f0;
  margin-bottom: 2rem;
}
.profile-text ul {
  list-style: none;
}
.profile-text li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.dot.yellow {
  width: 10px;
  height: 10px;
  background: #FFC000;
  border-radius: 50%;
}
.highlight-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 2rem;
}
.highlight-box h4 {
  font-size: 1.3rem;
  color: #FFC000;
  margin-bottom: 1rem;
}
.highlight-box p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== WHAT YOUR MEDICAL WEBSITE INCLUDES ===== */
.includes-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.include-item {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.include-item .icon {
  width: 25px;
  height: 40px;
  background-color: #e4f0f8;
  border-radius: 0.5rem;
  padding: 0.5rem;
  flex-shrink: 0;
  color: #0071C0;
}
.include-item .icon:hover{
  background-color: #0d5c91; /* blue background */
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.include-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.include-item p {
  font-size: 0.8rem;
  color: #64748b;
}

/* ===== CTA BLUE SECTION ===== */
.cta-blue {
  padding: 4rem 0;
  background: white;
}
.cta-box {
  background: #0071C0;
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.2rem;
  color: #e0f2fe;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text p {
  margin-bottom: 1.5rem;
  color: #334155;
  line-height: 1.7;
}
.goal-box {
  background: #F8FAFC;
  border-left: 4px solid #FFC000;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}
.goal-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.5rem;
}
.goal-box p {
  margin-bottom: 0;
  color: #475569;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-card {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #E2E8F0;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: #0071C0;
  box-shadow: 0 8px 20px rgba(0,113,192,0.1);
}
.feature-icon1 {
  width: 48px;
  height: 48px;
  background: #FFC000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon2 {
  width: 48px;
  height: 48px;
  background: #0071C0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon3 {
  width: 48px;
  height: 48px;
  background: #ec1111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.3rem;
}
.feature-content p {
  color: #64748B;
  line-height: 1.5;
}
.section-label {
  display: inline-block;
  background: #DBEAFE;
  color: #0071C0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-intro {
  max-width: 700px;
  margin: 1rem auto 0;
  color: #475569;
  font-size: 1.1rem;
}
.expertise-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s;
}
.expertise-card:hover {
  box-shadow: 0 8px 24px rgba(0,113,192,0.15);
  border-color: #0071C0;
}
.lucide-scale-icon{

  color: #2563EB;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.lucide-brain-icon {
  color: #059669;
  background: #ECFDF5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lucide-shield-check-icon {
  color: #625BE8;
  background: #EEF2FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: #0071C0;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.expertise-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1E293B;
}
.expertise-card p {
  color: #475569;
  line-height: 1.6;
}
.authority-section {
  background: #F0F7FC;
  padding: 4rem 0;
}
.authority-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.trust-badge {
  background: #0071C0;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.authority-quote {
  font-size: 1.6rem;
  font-weight: 400;
  color: #1E293B;
  line-height: 1.5;
  font-style: italic;
}
.team-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all 0.2s;
}
.team-card:hover {
  /* border-color: #0071C0; */
  box-shadow: 0 8px 20px rgba(0,113,192,0.1);
}
.team-icon {
  width: 38px;
  height: 38px;
  background: #57595b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.team-icon:hover {
  width: 38px;
  height: 38px;
  background: #009402;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.team-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.team-card p {
  color: #64748B;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ===== BENEFITS PAGE ===== */
.benefits-hero {
  background: #0071C0;
  padding: 4rem 0;
  text-align: center;
  color: white;
}
.benefits-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.benefits-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}
.benefit-card-detailed {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s;
}
.benefit-card-detailed:hover {
  box-shadow: 0 8px 24px rgba(0,115,177,0.15);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}
.benefit-icon.blue-bg { background: #0071C0; }
.benefit-icon.yellow-bg { background: #ffc000; }
.benefit-card-detailed h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.benefit-card-detailed p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.connected-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.connected-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #0071C0;
  font-weight: 500;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot.blue { background: #0071C0; }
.dot.yellow { background: #ffc000; }
.italic-note {
  font-style: italic;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.financial-section {
  background: white;
  padding: 5rem 0;
}
.header-underline {
  width: 80px;
  height: 4px;
  margin: 0 auto;
  border-radius: 2px;
}
.header-underline.amber { background: #ffc000; }
.header-underline.thick { height: 6px; width: 100px; }
.financial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.financial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.financial-card:hover {
  box-shadow: 0 8px 24px rgba(0,115,177,0.1);
}
.financial-icon {
  background: white;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  color: #0071C0;
}
.financial-icon:hover {
  background: white;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  color: #0071C0;
}
.financial-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.financial-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}
.patient-journey {
  background: #f8fafc;
  padding: 5rem 0;
  overflow: hidden;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}
.journey-step {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.3s;
}
.journey-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,115,177,0.15);
}

.step-number1 {
  position: absolute;
  top: -19px;
  right: -1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #f1f5f9;
  z-index: 1;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0071C0;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.journey-step:hover .step-icon {
  background: #0071C0;
  color: white;
}
.journey-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.journey-step p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}
.step-arrow {
  display: none;
}
@media (min-width: 768px) {
  .journey-step:not(:last-child) .step-arrow {
    display: block;
    position: absolute;
    top: 40%;
    right: -1.5rem;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2394a3b8" stroke-width="2"><polyline points="9 18 15 12 9 6"/></svg>') no-repeat center;
    background-size: contain;
    z-index: 10;
  }
  .journey-step:hover .step-arrow {
    stroke: #0071C0;
  }
}
.smart-tools-cta {
  background: white;
  padding: 5rem 0;
  text-align: center;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-icon {
  width: 80px;
  height: 80px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #0071C0;
}
.smart-tools-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.smart-tools-cta p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ===== FEATURES PAGE ===== */
.features-hero {
  background:#0071C0;;
  padding: 6rem 0 5rem;
  text-align: center;
  color: white;
}
.features-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}
.features-hero p {
  font-size: 1.2rem;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}
.audience-tabs-section {
  padding: 4rem 0;
  background: white;
}
.section-header-centered h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 2rem;
  border-bottom: 4px solid #0071C0;
  display: inline-block;   /* important */
  padding-bottom: 0.5rem;
}

/* center the inline-block element */
.section-header-centered {
  text-align: center;
}

.tabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs-container input[type="radio"] {
  display: none;
}
.tab-labels {
  display: flex;
  background: #f1f5f9;
  padding: 0.25rem;
  border-radius: 0.5rem;
  margin-bottom: 2.5rem;
}
.tab-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}
#tab-doctors:checked ~ .tab-labels label[for="tab-doctors"],
#tab-patients:checked ~ .tab-labels label[for="tab-patients"],
#tab-staff:checked ~ .tab-labels label[for="tab-staff"] {
  background: white;
  color: #0071C0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.tab-contents {
  width: 100%;
}
.tab-content {
  display: none;
}
#tab-doctors:checked ~ .tab-contents #content-doctors,
#tab-patients:checked ~ .tab-contents #content-patients,
#tab-staff:checked ~ .tab-contents #content-staff {
  display: block;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card-icon {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
  color: #0071C0;
}
.feature-card-icon:hover {
  box-shadow: 0 8px 24px rgba(0,113,192,0.1);
}
.feature-icon-bg {
  display: inline-flex;
  background: #F0F7FC;
  padding: 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.feature-card-icon h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1E293B;
}
.general-maintenance {
  padding: 4rem 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.section-title-underline {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid #ffc000;
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 2rem;
}
.feature-list-bullet {
  list-style: none;
  padding: 0;
}
.feature-list-bullet li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
}
.feature-list-bullet .icon {
  width: 20px;
  height: 20px;
  background-color: #0071C0;
}
.feature-list-bullet .icon.shield { background-color: #0071C0; }
.addons-section {
  padding: 5rem 0;
  background: white;
}
.addons-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.addon-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.addon-card:hover {
  border-color: #0071C0;
}
.addon-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  background-color: #0071C0;
}
.addon-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.ai-features-section {
  padding: 4rem 0;
}
.flex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.flex-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.badge.phase2 {
  background: #e0f2fe;
  color: #0071C0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid #bae6fd;
}
.section-intro {
  color: #475569;
  margin-bottom: 2.5rem;
}
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ai-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid white;
  transition: box-shadow 0.2s;
}
.ai-card:hover {
  box-shadow: 0 12px 32px rgba(0,113,192,0.15);
}
.ai-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 1.5rem;
  background-color: #0071C0;
}
.ai-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.ai-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}
.seo-section.dark-bg {
  background: #0f172a;
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.seo-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.seo-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.price-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30,41,59,0.8);
  border: 1px solid #334155;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.price-item:hover {
  background: #1e293b;
}
.price1 {
  color: #fbbf24 !important;
  font-weight: 700;

}
.seo-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seo-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow circle (hidden by default) */
.seo-icon::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(0,113,192,0.35) 0%,
    rgba(0,113,192,0.18) 35%,
    rgba(0,113,192,0.08) 55%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s ease;
  filter: blur(8px);
}

/* Show glow on hover */
.seo-icon:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Thin icon */
.seo-icon .icon-search-large {
  position: relative;
  width: 280px;
  height: 280px;
  background-color: rgba(0,113,192,0.6);

  mask: url('data:image/svg+xml;utf8,\
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="1">\
  <circle cx="11" cy="11" r="8"/>\
  <line x1="21" y1="21" x2="16.65" y2="16.65"/>\
  </svg>') no-repeat center;

  mask-size: contain;

  -webkit-mask: url('data:image/svg+xml;utf8,\
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="1">\
  <circle cx="11" cy="11" r="8"/>\
  <line x1="21" y1="21" x2="16.65" y2="16.65"/>\
  </svg>') no-repeat center;

  -webkit-mask-size: contain;

  transition: transform 0.3s ease;
}

/* Optional slight zoom on hover */
.seo-icon:hover .icon-search-large {
  transform: scale(1.05);
}

.security-section {
  padding: 5rem 0;
  background: white;
}
.badge-container {
  text-align: center;
  margin-bottom: 1rem;
}
.badge.green {
  background: #f0fdf4;
  color: #166534;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #bbf7d0;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.security-card {
  text-align: center;
  padding: 1.5rem;
}
.security-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background-color: #0071C0;
  transition: all 0.2s;
  padding: 0.75rem;
  border-radius: 1rem;
  color: #0071C0;
}
.security-card:hover .icon {
  background-color: #0071C0;
}
.security-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.security-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* ===== PRICING PAGE ===== */
.pricing-page {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  padding: 2rem 0 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.2rem;
}
.pricing-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.pricing-header p {
  font-size: 1.1rem;
  color: #475569;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  max-height: 1000px;
  margin: 0 auto 2rem;
}
.pricing-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: relative;
}
.pricing-card.popular {
  border-color: #0071C0;
  box-shadow: 0 20px 30px -10px rgba(0,113,192,0.2);
  z-index: 10;
}
.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0071C0;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
}
.pricing-card-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.card-tagline {
  font-size: 0.8rem;
  color: #64748b;
  min-height: 2.5rem;
  margin-bottom: 0.5rem;
}
.popular-note {
  font-size: 0.7rem;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0071C0;
  line-height: 1.2;
}
.price-sub {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.pages-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-top: 0.25rem;
}
.pricing-card-body {
  padding: 1.5rem;
  flex-grow: 1;
}
.maintenance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: #334155;
}
.maintenance-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}
.maintenance-price .small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #64748b;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.check-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #22c55e;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat center;
  mask-size: contain;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.pricing-card-footer {
  padding: 1rem 1.5rem 1.5rem;
  margin-top: auto;
}
.addons-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.addons-divider span {
  height: 1px;
  background: #e2e8f0;
  flex: 1;
  max-width: 100px;
}
.addons-divider h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.addon-item {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 0.5rem;
  padding: 1rem 0.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: box-shadow 0.2s;
}
.addon-item:hover {
  box-shadow: 0 8px 16px rgba(0,113,192,0.1);
}
.addon-item h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.addon-item p {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0071C0;
}
.compliance-note {
  text-align: center;
  margin: 1.5rem 0;
}
.compliance-note p {
  font-size: 0.7rem;
  color: #94a3b8;
  font-style: italic;
}
.enterprise-cta {
  text-align: center;
  background: rgba(0,113,192,0.05);
  border: 1px solid rgba(0,113,192,0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}
.enterprise-cta p {
  font-size: 0.85rem;
  color: #334155;
}
.enterprise-cta a {
  color: #0071C0;
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.25rem;
}
.enterprise-cta a:hover {
  text-decoration: underline;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: #00529B;
  color: white;
  padding: 6rem 0;
  text-align: center;
}
.contact-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.contact-main {
  padding: 5rem 0;
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info-col h2,
.contact-form-col h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 2rem;
}
.info-card {
  background: #F4F9FF;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #e6f0fa;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  margin-bottom: 2rem;
}
.info-card-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #0070CD;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-icon {
  background: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: #ffc000;
  transition: background 0.2s;
}
.info-icon:hover {
  background: #fff9e0;
}
.info-text {
  flex: 1;
}
.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1E293B;
  margin-bottom: 0.25rem;
}
.info-detail {
  color: #475569;
  font-size: 1rem;
  line-height: 1.5;
}
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  height: 300px;
  border: 1px solid #e2e8f0;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.map-container:hover iframe {
  filter: grayscale(0%);
}
.contact-form-col {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px -15px rgba(0,0,0,0.1);
  border: 1px solid #f8fafc;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  color: #0070CD;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1E293B;
  margin-bottom: 0.5rem;
}
.required-star {
  color: #ef4444;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0070CD;
  background: white;
  box-shadow: 0 0 0 3px rgba(0,112,205,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}
.select-group {
  position: relative;
}
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  appearance: none;
  cursor: pointer;
}
.select-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
  width: 20px;
  height: 20px;
}
.btn-block {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
  margin-top: 1rem;
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0070CD;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,112,205,0.3);
  transition: all 0.2s;
  z-index: 100;
  text-decoration: none;
}
.back-to-top:hover {
  background: #005a9e;
  transform: scale(1.1);
}
.back-to-top .icon {
  width: 24px;
  height: 24px;
  background-color: white;
}

/* ===== ICON SYSTEM ===== */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.icon.small {
  width: 18px;
  height: 18px;
}
.icon.large {
  width: 48px;
  height: 48px;
}
.icon.blue { background-color: #0071C0; }
.icon.indigo { background-color: #4f46e5; }
.icon.gray { background-color: #64748b; }

/* Icon definitions (alphabetical) */
.icon-activity { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg>'); }
.icon-arrow-right { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>'); }
.icon-baby { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="8" r="4"/><path d="M5 20v-4a7 7 0 0 1 14 0v4"/><line x1="9" y1="12" x2="15" y2="12"/></svg>'); }
.icon-bell { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M13.73 21a2 2 0 0 1-3.46 0"/></svg>'); }
.icon-bot { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="11" width="18" height="10" rx="2"/><circle cx="12" cy="5" r="2"/><path d="M12 7v4"/><line x1="8" y1="16" x2="8" y2="16"/><line x1="16" y1="16" x2="16" y2="16"/></svg>'); }
.icon-brain { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 3a3 3 0 0 1 6 0v12a3 3 0 0 1-6 0V3z"/><path d="M5 9a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V9z"/></svg>'); }
.icon-building { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="4" y="2" width="16" height="20" rx="2" ry="2"/><line x1="8" y1="6" x2="16" y2="6"/><line x1="8" y1="10" x2="16" y2="10"/><line x1="8" y1="14" x2="16" y2="14"/><line x1="8" y1="18" x2="16" y2="18"/></svg>'); }
.icon-calculator { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="4" y="2" width="16" height="20" rx="2"/><line x1="8" y1="6" x2="16" y2="6"/><line x1="16" y1="14" x2="16" y2="18"/><circle cx="8" cy="14" r="1"/><circle cx="12" cy="14" r="1"/><circle cx="8" cy="18" r="1"/><circle cx="12" cy="18" r="1"/></svg>'); }
.icon-calendar { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>'); }
.icon-check { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="20 6 9 17 4 12"/></svg>'); }
.icon-check-circle { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg>'); }
.icon-chevron-down { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>'); }
.icon-chevron-up { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="18 15 12 9 6 15"/></svg>'); }
.icon-clock { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>'); }
.icon-code { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="16 18 22 12 16 6"/><polyline points="8 6 2 12 8 18"/></svg>'); }
.icon-database { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"/><path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"/></svg>'); }
.icon-file-text { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>'); }
.icon-flask { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M14 2v8a4 4 0 0 0 4 4h6"/><path d="M2 14h8a4 4 0 0 0 4-4V2"/><circle cx="8" cy="16" r="4"/><path d="M16 16h6"/></svg>'); }
.icon-globe { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>'); }
.icon-heart { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>'); }
.icon-history { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>'); }
.icon-layout { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="18" height="18" rx="2"/><line x1="3" y1="9" x2="21" y2="9"/><line x1="9" y1="21" x2="9" y2="9"/></svg>'); }
.icon-lock { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>'); }
.icon-mail { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>'); }
.icon-map-pin { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>'); }
.icon-message { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg>'); }
.icon-monitor-smartphone { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 8h2a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-2"/><path d="M6 8H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h2"/><path d="M8 2h8"/><path d="M8 18h8"/><rect x="2" y="4" width="20" height="16" rx="2"/></svg>'); }
.icon-mouse-pointer { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"/><path d="M13 13l6 6"/></svg>'); }
.icon-phone { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="5" y="2" width="14" height="20" rx="2" ry="2"/><line x1="12" y1="18" x2="12.01" y2="18"/></svg>'); }
.icon-phone-off { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.362 1.903.7 2.81a2 2 0 0 1-.45 2.11L8 10a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.338 1.85.573 2.81.7A2 2 0 0 1 22 16.92z"/><line x1="2" y1="2" x2="22" y2="22"/></svg>'); }
.icon-refresh { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="23 4 23 10 17 10"/><polyline points="1 20 1 14 7 14"/><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"/></svg>'); }
.icon-rocket { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"/><path d="M12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"/><path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"/><path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"/></svg>'); }
.icon-scale { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="2" x2="12" y2="22"/><path d="M2 12h20"/><path d="M4 12a8 8 0 0 1 16 0"/></svg>'); }
.icon-search { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>'); }
.icon-settings { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H5.78a1.65 1.65 0 0 0-1.51 1 1.65 1.65 0 0 0 .33 1.82l.05.05A10 10 0 0 0 12 17.66a10 10 0 0 0 6.26-2.23z"/></svg>'); }
.icon-share { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"/><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"/></svg>'); }
.icon-shield { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>'); }
.icon-shield-check { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><path d="M9 12l2 2 4-4"/></svg>'); }
.icon-sparkles { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 3v18"/><path d="M19 6H5"/><path d="M20 12h-4"/><path d="M16 18h-4"/><path d="M9 12H5"/><path d="M6 6L3 9l3 3"/><path d="M18 6l3 3-3 3"/></svg>'); }
.icon-stethoscope { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 8v-2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v2"/><path d="M4 12v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6"/><path d="M16 12h-4"/><circle cx="8" cy="16" r="1"/><circle cx="16" cy="16" r="1"/></svg>'); }
.icon-target { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="4"/><line x1="22" y1="2" x2="17" y2="7"/></svg>'); }
.icon-trending-down { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="23 18 13.5 8.5 8.5 13.5 1 6"/><polyline points="17 18 23 18 23 12"/></svg>'); }
.icon-user { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>'); }
.icon-user-plus { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="8.5" cy="7" r="4"/><line x1="20" y1="8" x2="20" y2="14"/><line x1="23" y1="11" x2="17" y2="11"/></svg>'); }
.icon-users { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>'); }
.icon-x-circle { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><line x1="15" y1="9" x2="9" y2="15"/><line x1="9" y1="9" x2="15" y2="15"/></svg>'); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .includes-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 1rem; }
  .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.5rem; }
  .grid-2, .grid-3, .grid-4, .grid-5, .steps-container, .comparison-grid, .profile-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps-container { flex-direction: column; }
  .step-line { display: none; }
  .comparison-card.without { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .includes-list { grid-template-columns: 1fr; }
  .cta-box h2 { font-size: 1.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .authority-quote { font-size: 1.3rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .financial-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none !important; }
  .benefits-hero h1 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-hero h1 { font-size: 2.5rem; }
  .contact-info-col h2,
  .contact-form-col h2 { font-size: 1.8rem; }
  .info-card { padding: 1.5rem; }
  .contact-form-col { padding: 1.5rem; }
  .back-to-top { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .tab-labels { flex-direction: column; width: 100%; }
  .tab-label { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-header h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .addons-grid { grid-template-columns: 1fr; }
}
/* Footer */
.site-footer {
  background: #1E293B;
  color: #cbd5e1;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #ffc000;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}
