/* ========= GOOGLE FONTS ========= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700;800;900&family=Poppins:wght@300;400;500&family=Noto+Sans+Devanagari:wght@400;500;700;800&display=swap');

/* ========= SELF-HOSTED INTER VAR ========= */
@font-face {
  font-family: "Inter var";
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  src: url("../fonts/Inter-roman.var.woff2") format("woff2");
}

/* ========= CSS VARIABLES ========= */
:root {
  --honey: #F5A623;
  --honey-light: #FFD166;
  --deep: #1A1A2E;
  --card: #16213E;
  --text: #E8E8F0;
  --muted: #B0B0C8;
  --green: #06D6A0;
  --whatsapp: #25D366;
  --whatsapp-hover: #20BA5A;
  --red: #EF4444;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 100px;
}

/* ========= RESET ========= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Force all elements to inherit body font unless overridden */
button, input, textarea, select {
  font-family: "Poppins", "Inter var", system-ui, sans-serif;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6,
.include-title, .audience-title, .related-title,
.stat-value, .step-content h3, .process-step h3,
.svc-card h3, .path-card h2, .price-card h3,
.route-card h3, .value-title, .diff-card h3,
.trust-value, .number-value, .nav-links .menu li a {
  font-family: "Roboto", "Inter var", system-ui, sans-serif;
}

body {
  background: var(--deep);
  color: var(--text);
  font-family: "Poppins", "Inter var", "Inter", system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 10%, rgba(245,166,35,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(6,214,160,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========= NAV FLICKER FIX ========= */
.bb-nav, .bb-nav *, .logo {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ========= NAV ========= */
.bb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(26,26,46,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bee-logo{
  vertical-align: middle;
  margin-right: 6px;
}

.logo span { color: var(--honey); }

/* ========= WP NAV MENU ========= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .menu li {
  position: relative;
}

.nav-links .menu li a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 450;
  transition: color 0.2s;
  padding: 8px 0;
  display: block;
}

.nav-links .menu li a:hover { color: var(--text); }

/* ========= DROPDOWN (Services etc.) ========= */
.nav-links .menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(22,33,62,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  min-width: 220px;
  z-index: 101;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.nav-links .menu li:hover > .sub-menu {
  display: flex;
}

.nav-links .menu li .sub-menu li a {
  padding: 8px 20px;
  font-size: 13px;
  white-space: nowrap;
}

.nav-links .menu li .sub-menu li a:hover {
  background: rgba(245,166,35,0.08);
  color: var(--honey);
}

/* ========= NAV RIGHT ========= */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.lang-option {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  color: var(--muted);
  user-select: none;
}

.lang-option.active {
  background: var(--honey);
  color: var(--deep);
}

.nav-cta {
  background: var(--whatsapp);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--whatsapp-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========= MOBILE MENU ========= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: rgba(26,26,46,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 99;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu .menu li a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 450;
  padding: 10px 0;
  display: block;
  transition: color 0.2s;
}

.mobile-menu .menu li a:hover { color: var(--text); }

/* Mobile sub-menu */
.mobile-menu .menu li .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  display: none;
}

.mobile-menu .menu li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 11px;
}

.mobile-menu .menu li.sub-open > .sub-menu {
  display: flex;
  flex-direction: column;
}

.mobile-menu .menu li .sub-menu li a {
  font-size: 13px;
  padding: 8px 0;
  color: var(--muted);
}

.mobile-menu .menu li .sub-menu li a:hover {
  color: var(--honey);
}

/* ========= FOOTER ========= */
footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 350;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 350;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--honey); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 350;
  flex-wrap: wrap;
  gap: 12px;
}

/* ========= WHATSAPP FLOAT ========= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform 0.2s ease;
  animation: pulse 2s infinite;
}

.wa-float:hover { transform: scale(1.1); }

/* ========= ANIMATIONS ========= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.6); }
}

/* ========= LANG SYSTEM ========= */
[data-hi] { display: none; }
.hindi [data-en] { display: none; }
.hindi [data-hi] { display: block; }
.hindi span[data-hi], .hindi a[data-hi] { display: inline; }
.hindi span[data-en], .hindi a[data-en] { display: none; }
span[data-en], a[data-en] { display: inline; }
.hindi div[data-hi] { display: block; }
.hindi div[data-en] { display: none; }

/* Fix: buttons need inline-flex for icon alignment */
a.btn[data-en], a.btn[data-hi] { display: inline-flex; }
.hindi a.btn[data-hi] { display: inline-flex; }
.hindi a.btn[data-en] { display: none; }

/* ========= INTERNATIONAL VISITOR OVERRIDES ========= */
.intl .lang-toggle { display: none; }
.intl [data-hi] { display: none !important; }

/* ========= COMMON ========= */
section { position: relative; z-index: 1; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========= SECTION HEADERS ========= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--honey);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-title em {
  color: var(--honey);
  font-style: normal;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 350;
  line-height: 1.6;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn-wa {
  background: var(--whatsapp);
  color: white;
  box-shadow: none;
}

.btn-wa:hover {
  transform: translateY(-1px);
  background: var(--whatsapp-hover);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
  border-color: var(--honey);
  color: var(--honey);
}

.btn-honey {
  background: var(--honey);
  color: var(--deep);
}

.btn-honey:hover {
  background: var(--honey-light);
  transform: translateY(-2px);
}

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-inner { max-width: 820px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 13px;
  color: var(--honey);
  margin-bottom: 28px;
  font-weight: 500;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero h1 .gold { color: var(--honey); }

.hero h1 .underline {
  position: relative;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--honey), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 350;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}

/* ========= HOW IT WORKS ========= */
.how-section { padding: 100px 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(245,166,35,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon { font-size: 28px; margin-bottom: 12px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 350; }

/* ========= SERVICES ========= */
.services-section { padding: 100px 0; background: rgba(0,0,0,0.15); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.svc {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.svc:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
}

.svc-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.svc h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.svc p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 350; }

/* ========= WEBSITE INSURANCE ========= */
.insurance-section { padding: 100px 0; }

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.insurance-content h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.insurance-content h2 em {
  color: var(--red);
  font-style: normal;
}

.insurance-content > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 350;
  margin-bottom: 32px;
}

.crash-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.crash-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.crash-item .icon {
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 1px;
}

.crash-item.bad { color: var(--red); }
.crash-item.good { color: var(--green); }

.insurance-visual {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.insurance-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--honey), var(--green));
}

.iv-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.iv-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.iv-row:last-child { border-bottom: none; }
.iv-label { font-size: 14px; color: var(--muted); font-weight: 350; }
.iv-bad { color: var(--red); font-weight: 700; font-size: 14px; }
.iv-good { color: var(--green); font-weight: 700; font-size: 14px; }

/* ========= ROUTING CARDS (Doctor + IT Partner) ========= */
.routing-section { padding: 100px 0; background: rgba(0,0,0,0.15); }

.routing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.route-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.route-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-6px);
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.route-card.doctor::before { background: var(--green); }
.route-card.it::before { background: var(--honey); }

.route-icon { font-size: 56px; margin-bottom: 24px; display: block; }

.route-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.route-card h3 em {
  font-style: normal;
  color: var(--honey);
}

.route-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 350;
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* ========= INDUSTRIES ========= */
.industries-section { padding: 100px 0; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ind-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.ind-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
}

.ind-card .icon { font-size: 44px; margin-bottom: 16px; display: block; }
.ind-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ind-card p { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 350; }

/* ========= TESTIMONIALS ========= */
.testimonials-section { padding: 100px 0; background: rgba(0,0,0,0.15); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.tcard {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s;
}

.tcard:hover { border-color: rgba(245,166,35,0.2); }

.stars { color: var(--honey); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }

.tcard blockquote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 350;
  margin-bottom: 20px;
  font-style: italic;
}

.tcard-author { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--honey-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--deep);
  flex-shrink: 0;
}

.tcard-author h4 { font-size: 14px; font-weight: 700; }
.tcard-author span { font-size: 12px; color: var(--muted); font-weight: 350; }

/* ========= CTA ========= */
.cta-section { padding: 100px 0; }

.cta-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.12) 0%, rgba(6,214,160,0.06) 100%);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 28px;
  padding: 80px 48px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-box h2 em { color: var(--honey); font-style: normal; }

.cta-box p {
  color: var(--muted);
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto 40px;
  font-weight: 350;
  line-height: 1.6;
}

/* ========= PAGE HERO (About, etc.) ========= */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative; z-index: 1;
}

.page-hero-inner { max-width: 780px; margin: 0 auto; }

.page-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-full);
  padding: 6px 18px; font-size: 13px;
  color: var(--honey); margin-bottom: 28px; font-weight: 500;
  animation: fadeUp 0.6s ease both;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1.5px; margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.page-hero h1 em { color: var(--honey); font-style: normal; }

.page-hero p {
  font-size: 18px; color: var(--muted);
  max-width: 580px; margin: 0 auto;
  line-height: 1.7; font-weight: 350;
  animation: fadeUp 0.6s ease 0.2s both;
}

/* ========= STORY (About) ========= */
.story-section { padding: 80px 0; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.story-content h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 20px; line-height: 1.15;
}

.story-content h2 em { color: var(--honey); font-style: normal; }

.story-content p {
  font-size: 15px; color: var(--muted);
  line-height: 1.8; font-weight: 350; margin-bottom: 20px;
}

.story-content p strong { color: var(--text); font-weight: 600; }

.story-visual {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px; padding: 40px;
  position: relative; overflow: hidden;
}

.story-visual::before {
  content: '🐝'; position: absolute;
  top: -20px; right: -20px;
  font-size: 120px; opacity: 0.05; line-height: 1;
}

.story-quote {
  font-size: 22px; font-weight: 700;
  line-height: 1.5; color: var(--text);
  margin-bottom: 24px; position: relative;
}

.story-quote::before {
  content: '"'; font-size: 64px;
  color: var(--honey); opacity: 0.4;
  line-height: 0; vertical-align: -24px;
  margin-right: 4px; font-family: Georgia, serif;
}

.quote-attr { font-size: 13px; color: var(--muted); font-weight: 350; }
.quote-attr span { color: var(--honey); font-weight: 600; }

/* ========= VALUES (About) ========= */
.values-section { padding: 80px 0; background: rgba(0,0,0,0.15); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.value-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
}

.value-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.value-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 350; }

/* ========= MIDNIGHT TEST (About) ========= */
.midnight-section { padding: 80px 0; }

.midnight-box {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.midnight-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--whatsapp), var(--honey));
}

.midnight-left h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 20px; line-height: 1.15;
}

.midnight-left h2 em { color: var(--honey); font-style: normal; }

.midnight-left p {
  font-size: 15px; color: var(--muted);
  line-height: 1.8; font-weight: 350; margin-bottom: 24px;
}

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

.midnight-clock {
  font-size: 80px;
  margin-bottom: 20px;
  display: block;
  animation: glow 3s ease-in-out infinite;
}

.midnight-time {
  font-size: 56px;
  font-weight: 800;
  color: var(--honey);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.midnight-dare {
  font-size: 16px;
  color: var(--muted);
  font-weight: 350;
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(245,166,35,0.3)); }
  50% { filter: drop-shadow(0 0 24px rgba(245,166,35,0.6)); }
}

/* ========= APPROACH (About) ========= */
.approach-section { padding: 80px 0; background: rgba(0,0,0,0.15); }

.approach-list {
  display: flex; flex-direction: column;
  gap: 20px; max-width: 780px; margin: 0 auto;
}

.approach-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; gap: 24px; align-items: flex-start;
  transition: border-color 0.3s;
}

.approach-item:hover { border-color: rgba(245,166,35,0.2); }

.approach-num {
  font-size: 36px; font-weight: 800;
  color: rgba(245,166,35,0.2);
  line-height: 1; flex-shrink: 0; min-width: 48px;
}

.approach-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }

.approach-content p {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 350;
}

/* ========= DIFF / WHY US (About) ========= */
.diff-section { padding: 80px 0; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.diff-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s;
}

.diff-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
}

.diff-card.full { grid-column: 1 / -1; }

.diff-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted);
  margin-bottom: 8px; font-weight: 500;
}

.diff-card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px; color: var(--honey);
}

.diff-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 350;
}

/* ========= NUMBERS (About) ========= */
.numbers-section { padding: 80px 0; background: rgba(0,0,0,0.15); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.number-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  transition: all 0.3s;
}

.number-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
}

.number-value {
  font-size: 48px; font-weight: 800;
  color: var(--honey); line-height: 1; margin-bottom: 8px;
}

.number-label {
  font-size: 14px; color: var(--muted);
  font-weight: 350; line-height: 1.5;
}

/* ========= IT PARTNER PAGE ========= */
.it-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}

.it-hero .hero-inner { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

.hero-comparison {
  font-size: 15px; color: var(--muted);
  margin-bottom: 40px; font-weight: 350;
  animation: fadeUp 0.6s ease 0.25s both;
}
.hero-comparison strong { color: var(--honey); font-weight: 700; }

.problem-section { padding: 80px 0; }

.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

.problem-content h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 20px; line-height: 1.15;
}
.problem-content h2 em { color: var(--honey); font-style: normal; }
.problem-content p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 350; margin-bottom: 16px; }
.problem-content p strong { color: var(--text); font-weight: 500; }

.pain-list { display: flex; flex-direction: column; gap: 16px; }
.pain-item {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color 0.3s;
}
.pain-item:hover { border-color: rgba(245,166,35,0.2); }
.pain-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pain-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pain-item p { font-size: 13px; color: var(--muted); font-weight: 350; line-height: 1.5; margin: 0; }

.svc-icon { font-size: 32px; margin-bottom: 14px; display: block; }

/* Timezone */
.tz-section { padding: 80px 0; }
.tz-box {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px; padding: 64px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; position: relative; overflow: hidden;
}
.tz-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--honey), var(--green)); }
.tz-content h2 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.15; }
.tz-content h2 em { color: var(--honey); font-style: normal; }
.tz-content p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 350; margin-bottom: 16px; }
.tz-content p strong { color: var(--text); font-weight: 600; }
.tz-visual { text-align: center; }
.tz-clocks { display: flex; justify-content: center; gap: 32px; margin-bottom: 24px; }
.tz-clock { text-align: center; }
.tz-clock-face { font-size: 48px; margin-bottom: 8px; display: block; }
.tz-clock-city { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.tz-clock-time { font-size: 20px; font-weight: 800; color: var(--honey); }
.tz-clock-label { font-size: 11px; color: var(--muted); font-weight: 350; margin-top: 4px; }
.tz-overlap { background: rgba(6,214,160,0.1); border: 1px solid rgba(6,214,160,0.2); border-radius: 12px; padding: 16px 24px; font-size: 14px; color: var(--green); font-weight: 600; }

/* Quality */
.quality-section { padding: 80px 0; background: rgba(0,0,0,0.15); }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.qual-card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 32px; transition: all 0.3s; }
.qual-card:hover { border-color: rgba(245,166,35,0.2); transform: translateY(-4px); }
.qual-card.full { grid-column: 1 / -1; }
.qual-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.qual-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--honey); }
.qual-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 350; }

/* How it works (IT Partner) */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.how-step { text-align: center; position: relative; }
.how-num { font-size: 64px; font-weight: 800; color: rgba(245,166,35,0.12); line-height: 1; margin-bottom: 16px; }
.how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 350; }
.how-arrow { position: absolute; right: -24px; top: 40px; font-size: 24px; color: rgba(245,166,35,0.3); }

/* VS comparison table */
.vs-section { padding: 80px 0; background: rgba(0,0,0,0.15); }
.vs-box { background: var(--card); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; padding: 48px; overflow-x: auto; }
.vs-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.vs-table th { text-align: left; padding: 14px 16px; font-weight: 700; font-size: 13px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.1); }
.vs-table th:nth-child(3) { color: var(--honey); }
.vs-table th:not(:first-child) { text-align: center; }
.vs-table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--muted); font-weight: 350; }
.vs-table td:not(:first-child) { text-align: center; }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table .yes { color: var(--green); font-weight: 600; }
.vs-table .no { color: rgba(255,255,255,0.2); }
.vs-table .highlight { color: var(--honey); font-weight: 600; }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.or-text { color: var(--muted); font-size: 14px; font-weight: 350; }

/* ========= DOCTOR PAGE ========= */
.doc-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}

.doc-hero .hero-inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

.doc-hero .hero-badge {
  background: rgba(6,214,160,0.1);
  border: 1px solid rgba(6,214,160,0.25);
  color: var(--green);
}

.search-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px 48px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 0 auto 32px; white-space: nowrap;
  animation: fadeUp 0.6s ease 0.1s both;
}
.search-icon { font-size: 28px; flex-shrink: 0; }
.search-text { font-size: clamp(22px, 3vw, 36px); font-weight: 700; text-align: left; line-height: 1.2; }
.search-rotating { color: var(--honey); display: inline-block; min-width: 200px; text-align: left; }
.search-static { color: var(--muted); font-weight: 400; }

/* Empathy strip */
.empathy-strip {
  padding: 48px 0;
  background: rgba(6,214,160,0.04);
  border-top: 1px solid rgba(6,214,160,0.1);
  border-bottom: 1px solid rgba(6,214,160,0.1);
}
.empathy-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.empathy-inner p { font-size: clamp(18px, 2vw, 24px); font-weight: 600; line-height: 1.5; }
.empathy-inner p em { color: var(--green); font-style: normal; }

/* Doctor problem list */
.problem-list { display: flex; flex-direction: column; gap: 16px; }
.prob-item {
  background: var(--card); border: 1px solid rgba(239,68,68,0.15);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.3s;
}
.prob-item:hover { border-color: rgba(239,68,68,0.3); }
.prob-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.prob-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.prob-item p { font-size: 13px; color: var(--muted); font-weight: 350; line-height: 1.5; margin: 0; }

/* Handle section */
.handle-section { padding: 80px 0; background: rgba(0,0,0,0.15); }
.handle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.handle-card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 28px 24px; transition: all 0.3s; }
.handle-card:hover { border-color: rgba(6,214,160,0.25); transform: translateY(-4px); }
.handle-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.handle-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.handle-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 350; }

/* Pricing */
.pricing-section { padding: 80px 0; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 48px; }
.period-btn {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.period-btn.active { background: var(--honey); color: var(--deep); border-color: var(--honey); }
.save-badge { background: rgba(6,214,160,0.15); color: var(--green); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); margin-left: 4px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px; padding: 36px 32px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
.price-card.popular { border-color: rgba(245,166,35,0.4); box-shadow: 0 8px 40px rgba(245,166,35,0.1); }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.price-card:nth-child(1)::before { background: var(--green); }
.price-card:nth-child(2)::before { background: var(--honey); }
.price-card:nth-child(3)::before { background: linear-gradient(90deg, var(--honey), #E1306C); }

.popular-tag { position: absolute; top: 16px; right: 16px; background: var(--honey); color: var(--deep); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.5px; }
.price-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.price-desc { font-size: 13px; color: var(--muted); font-weight: 350; margin-bottom: 20px; line-height: 1.5; }
.price-amount { font-size: 40px; font-weight: 800; color: var(--honey); line-height: 1; margin-bottom: 4px; }
.price-amount .currency { font-size: 22px; font-weight: 700; }
.price-amount .period { font-size: 16px; color: var(--muted); font-weight: 400; }
.price-original { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-bottom: 4px; font-weight: 350; min-height: 20px; }
.price-annual-total { font-size: 12px; color: var(--muted); font-weight: 350; margin-bottom: 24px; min-height: 18px; }
.free-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(6,214,160,0.1); border: 1px solid rgba(6,214,160,0.2); color: var(--green); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pf-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 400; line-height: 1.5; }
.pf-item .check { color: var(--green); flex-shrink: 0; font-size: 15px; }
.pf-item .cross { color: rgba(255,255,255,0.2); flex-shrink: 0; font-size: 15px; }
.price-card .btn { width: 100%; justify-content: center; }

/* Compare table (Doctor) */
.compare-section { padding: 80px 0; background: rgba(0,0,0,0.15); }
.compare-box { background: var(--card); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; padding: 48px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { text-align: left; padding: 14px 16px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.1); }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--muted); font-weight: 350; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check-cell { color: var(--green); font-size: 18px; }
.compare-table .cross-cell { color: rgba(255,255,255,0.15); font-size: 18px; }

/* Trust */
.trust-section { padding: 80px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.trust-card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.3s; }
.trust-card:hover { border-color: rgba(245,166,35,0.25); transform: translateY(-4px); }
.trust-value { font-size: 36px; font-weight: 800; color: var(--honey); margin-bottom: 8px; }
.trust-label { font-size: 14px; color: var(--muted); font-weight: 350; }

/* Doctor FAQ (card-style) */
.doc-faq .faq-list { max-width: 720px; margin: 0 auto; gap: 12px; }
.doc-faq .faq-item { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; transition: border-color 0.3s; border-bottom: none; }
.doc-faq .faq-item:hover { border-color: rgba(245,166,35,0.2); }
.doc-faq .faq-q { padding: 20px 24px; }
.doc-faq .faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.doc-faq .faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 350; }

/* ========= INDIVIDUAL SERVICE PAGES ========= */
:root {
  --text-secondary: #A0A0B8;
  --text-muted-svc: #6B6B85;
  --card-bg-svc: rgba(255,255,255,0.04);
  --card-hover-svc: rgba(255,255,255,0.07);
  --border-svc: rgba(245,166,35,0.15);
}

.svc-hero {
  padding: 144px 24px 80px;
  max-width: 900px; margin: 0 auto;
  position: relative;
  text-align: left;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted-svc);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.breadcrumb a { color: var(--text-muted-svc); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--honey); }

.svc-hero .hero-eyebrow { position: relative; z-index: 1; }

.svc-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.svc-hero h1 span { color: var(--honey); }

.svc-hero .hero-sub {
  font-size: 18px; color: var(--text-secondary);
  max-width: 580px; line-height: 1.7; margin-bottom: 40px;
  margin-left: 0; margin-right: 0;
  position: relative; z-index: 1;
}

.svc-hero .hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: flex-start;
  position: relative; z-index: 1;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--whatsapp); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 500; text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  box-shadow: none;
}
.btn-primary:hover { background: var(--whatsapp-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.15);
  font-size: 15px; font-weight: 500; text-decoration: none;
  white-space: nowrap;
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-secondary:hover { border-color: var(--honey); color: var(--honey); transform: translateY(-1px); }

/* Stats bar */
.stats-bar {
  max-width: 900px; margin: 0 auto 80px;
  padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-svc); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-svc);
}
.stat { background: var(--card); padding: 28px 32px; text-align: center; }
.stat-value { font-size: 32px; font-weight: 800; color: var(--honey); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--text-muted-svc); margin-top: 4px; font-weight: 500; }

/* Section */
.svc-section { max-width: 900px; margin: 0 auto; padding: 0 24px 80px; text-align: left; }
.svc-section .section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--honey); margin-bottom: 16px; text-align: left; }
.svc-section .section-title { font-size: clamp(26px, 3vw, 35px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px; text-align: left; }
.svc-section .section-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.7; max-width: 600px; margin: 0 0 48px 0; text-align: left; }

/* Includes grid */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.include-card {
  background: var(--card-bg-svc); border: 1px solid var(--border-svc);
  border-radius: 16px; padding: 24px;
  transition: border-color .2s, background .2s, transform .2s;
}
.include-card:hover { border-color: rgba(245,166,35,0.35); background: var(--card-hover-svc); transform: translateY(-2px); }
.include-icon { font-size: 28px; margin-bottom: 12px; line-height: 1; }
.include-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.include-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Process */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,166,35,0.1); border: 1.5px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--honey);
}
.step-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-tag {
  display: inline-block; margin-top: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: var(--radius-full);
  background: rgba(245,166,35,0.1); color: var(--honey);
  border: 1px solid rgba(245,166,35,0.2);
}

/* Audience grid */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-card {
  background: var(--card-bg-svc); border: 1px solid var(--border-svc);
  border-radius: 16px; padding: 24px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.audience-card:hover { border-color: rgba(245,166,35,0.35); transform: translateY(-2px); }
.audience-icon { font-size: 32px; margin-bottom: 12px; }
.audience-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.audience-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* CTA strip */
.cta-strip { max-width: 900px; margin: 0 auto 80px; padding: 0 24px; }
.svc-cta-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.1) 0%, rgba(15,52,96,0.3) 100%);
  border: 1.5px solid rgba(245,166,35,0.3);
  border-radius: 24px; padding: 48px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.svc-cta-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.svc-cta-box p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; max-width: 420px; }
.cta-box-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* Related services */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  background: var(--card-bg-svc); border: 1px solid var(--border-svc);
  border-radius: 16px; padding: 20px 24px;
  text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 16px;
  transition: border-color .2s, background .2s, transform .2s;
}
.related-card:hover { border-color: rgba(245,166,35,0.35); background: var(--card-hover-svc); transform: translateY(-2px); }
.related-icon { font-size: 26px; flex-shrink: 0; }
.related-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.related-desc { font-size: 12px; color: var(--text-secondary); }

/* FAQ (service pages use .faq-list) */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-list .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-list .faq-q { padding: 20px 0; }
.faq-list .faq-a p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; padding-bottom: 20px; }

/* ========= CONTACT PAGE ========= */
.contact-hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3);
  color: var(--honey); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 24px;
}

.contact-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 16px;
}

.contact-hero h1 .gold { color: var(--honey); }

.contact-hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 520px; margin: 0 auto 32px; line-height: 1.7;
}

/* Path cards */
.paths {
  max-width: 900px; margin: 0 auto;
  padding: 0 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

.path-card {
  border-radius: 20px;
  padding: 40px 32px;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.path-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 1; pointer-events: none;
}

.path-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.path-card.wa { border-color: rgba(37,211,102,0.25); }
.path-card.wa::before { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,211,102,0.08) 0%, transparent 70%); }
.path-card.wa:hover { border-color: rgba(37,211,102,0.5); }

.path-card.cal { border-color: rgba(245,166,35,0.25); }
.path-card.cal::before { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%); }
.path-card.cal:hover { border-color: rgba(245,166,35,0.5); }

.path-icon { font-size: 40px; line-height: 1; }
.path-card h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; line-height: 1.2; }
.path-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

.path-details {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.path-detail-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}

.path-detail-item .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.wa .dot { background: var(--whatsapp); }
.cal .dot { background: var(--honey); }

.path-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 12px;
  font-size: 16px; font-weight: 500; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s;
  margin-top: auto;
}

.path-cta.wa-btn {
  background: var(--whatsapp); color: #fff;
  box-shadow: none;
}
.path-cta.wa-btn:hover { background: var(--whatsapp-hover); box-shadow: none; }

.path-cta.cal-btn {
  background: var(--honey); color: var(--deep);
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.path-cta.cal-btn:hover { background: var(--honey-light); box-shadow: 0 6px 28px rgba(245,166,35,0.45); }

/* Info strip */
.info-strip {
  max-width: 900px; margin: 0 auto;
  padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(245,166,35,0.15);
  border-radius: 16px; transition: border-color 0.2s;
}

.info-item:hover { border-color: rgba(245,166,35,0.3); }

.info-icon {
  font-size: 22px; flex-shrink: 0;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(245,166,35,0.1); border-radius: 8px;
}

.info-text { display: flex; flex-direction: column; gap: 3px; }
.info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.info-value { font-size: 14px; font-weight: 500; color: var(--text); }
.info-value a { color: var(--text); text-decoration: none; }
.info-value a:hover { color: var(--honey); }
.info-sub { font-size: 12px; color: var(--muted); }

/* FAQ */
.faq-section {
  max-width: 700px; margin: 0 auto;
  padding: 0 24px 100px;
}

.section-label {
  text-align: center; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--honey); margin-bottom: 24px;
}

.faq-item { border-bottom: 1px solid rgba(245,166,35,0.15); padding: 16px 0; }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  color: var(--text); text-align: left; padding: 0;
}

.faq-q .arrow { color: var(--honey); font-size: 18px; transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.7; padding: 10px 0 4px; }

/* ========= SERVICES PAGE ========= */
.svc-category { padding: 60px 0 20px; }
.svc-category:first-of-type { padding-top: 20px; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.cat-icon.build { background: rgba(245,166,35,0.12); }
.cat-icon.grow { background: rgba(6,214,160,0.12); }
.cat-icon.maintain { background: rgba(99,102,241,0.12); }

.cat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.cat-label.build { color: var(--honey); }
.cat-label.grow { color: var(--green); }
.cat-label.maintain { color: #818CF8; }

.cat-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.svc-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
}

.svc-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-card:hover::before { opacity: 1; }

.svc-card.web::before,
.svc-card.ecom::before { background: linear-gradient(90deg, var(--honey), var(--green)); }
.svc-card.app::before { background: linear-gradient(90deg, #818CF8, var(--honey)); }
.svc-card.ai::before { background: linear-gradient(90deg, var(--green), #06B6D4); }
.svc-card.google::before { background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335); }
.svc-card.social::before { background: linear-gradient(90deg, #E1306C, #833AB4, #405DE6); }
.svc-card.listing::before { background: linear-gradient(90deg, var(--honey), #F97316); }
.svc-card.maint::before { background: linear-gradient(90deg, #818CF8, #C084FC); }
.svc-card.email::before { background: linear-gradient(90deg, #4285F4, #06B6D4); }
.svc-card.content::before { background: linear-gradient(90deg, var(--green), var(--honey)); }
.svc-card.review::before { background: linear-gradient(90deg, #FBBF24, var(--honey)); }
.svc-card.practo::before { background: linear-gradient(90deg, #06B6D4, var(--green)); }

.svc-card-icon { font-size: 36px; margin-bottom: 16px; display: block; }

.svc-card h3 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 10px; line-height: 1.2;
}

.svc-card h3 em { color: var(--honey); font-style: normal; }

.svc-card-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 350;
  margin-bottom: 20px; flex: 1;
}

.svc-card-features {
  display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 24px;
}

.svc-card-feat {
  display: flex; align-items: flex-start;
  gap: 8px; font-size: 13px; font-weight: 400;
  line-height: 1.5; color: var(--text);
}

.svc-card-feat .check {
  color: var(--green); font-size: 14px;
  flex-shrink: 0; margin-top: 1px;
}

.svc-card-link {
  display: inline-flex; align-items: center;
  gap: 6px; font-size: 13px; font-weight: 600;
  color: var(--honey); transition: gap 0.2s;
  margin-top: auto;
}

.svc-card:hover .svc-card-link { gap: 10px; }
.svc-card-link .arrow { transition: transform 0.2s; font-size: 15px; }
.svc-card:hover .svc-card-link .arrow { transform: translateX(3px); }

/* ========= INSURANCE BANNER (Services) ========= */
.insurance-banner { padding: 80px 0; }

.ins-box {
  background: var(--card);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ins-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--honey), var(--green));
}

.ins-content h2 {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 12px; line-height: 1.2;
}

.ins-content h2 em { color: var(--red); font-style: normal; }

.ins-content p {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; font-weight: 350;
  max-width: 560px;
}

.ins-content p strong { color: var(--text); font-weight: 500; }

.btn-sm { padding: 10px 20px; font-size: 13px; }

/* WhatsApp SVG icon alignment */
.wa-icon { display: inline-block; flex-shrink: 0; vertical-align: middle; position: relative; top: -1px; }

/* ========= INSURANCE CTA NOTE (Service - Website page) ========= */
.insurance-cta-note {
  margin-top: 40px;
  background: rgba(6,214,160,0.06);
  border: 1px solid rgba(6,214,160,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.insurance-cta-note strong { color: var(--green); }

/* ========= REVEAL ANIMATION ========= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========= WP ADMIN BAR FIX ========= */
.admin-bar .bb-nav { top: 32px; }
.admin-bar .mobile-menu { top: 88px; }

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .insurance-grid { grid-template-columns: 1fr; }
  .routing-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .route-card { padding: 36px 28px; }
  .story-grid { grid-template-columns: 1fr; }
  .midnight-box { grid-template-columns: 1fr; padding: 40px 28px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card.full { grid-column: auto; }
  .svc-grid { grid-template-columns: 1fr; }
  .ins-box { grid-template-columns: 1fr; text-align: center; }
  .ins-box .btn { margin: 20px auto 0; }
  .cat-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .paths { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .tz-box { grid-template-columns: 1fr; padding: 40px 28px; }
  .quality-grid { grid-template-columns: 1fr; }
  .qual-card.full { grid-column: auto; }
  .how-steps { grid-template-columns: 1fr; }
  .how-arrow { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .search-box { padding: 16px 24px; }
  .cta-strip { padding: 0 16px; }
  .svc-cta-box {padding: 32px 24px;flex-direction: column;align-items: flex-start;gap: 24px;}
  .cta-box-actions {width: 100%;flex-direction: column;}
  .cta-box-actions .btn-primary, .cta-box-actions .btn-secondary {width: 100%;justify-content: center;}
}

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  .admin-bar .bb-nav { top: 46px; }
  .admin-bar .mobile-menu { top: 102px; }
}

/* Hide language toggle on IT Partner, Blog, Single Post */
.page-template-page-it-partner .lang-toggle,
.page-template-page-it-partner [data-hi],
.page-template-page-blog-php .lang-toggle,
.page-template-page-blog-php [data-hi],
.single .lang-toggle,
.single [data-hi] {
  display: none !important;
}

/* ========= DEVANAGARI TYPOGRAPHY ========= */
:lang(hi),
[data-hi],
[lang="hi"] {
    font-family: "Noto Sans Devanagari", "Poppins", system-ui, sans-serif;
    line-height: 1.85;
}

h1[data-hi],
h2[data-hi],
h3[data-hi],
h1 [data-hi],
h2 [data-hi],
h3 [data-hi],
.section-title [data-hi] {
    font-family: "Noto Sans Devanagari", "Roboto", system-ui, sans-serif;
    line-height: 1.4;
    font-weight: 700;
}


/* ============================================
   BLOG — Listing + Single Post
   ============================================ */

/* --- Hero --- */
.blog-hero { padding: 100px 0 0; }
.blog-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 8px 0 16px; }
.blog-hero .hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 540px; }

/* --- Filter Bar --- */
.blog-filter-section { padding: 0 0 40px; }
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-pill {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--honey);
  border-color: var(--honey);
  color: #1A1A2E;
  font-weight: 600;
}

/* --- Blog Grid --- */
.blog-listing-section { padding-bottom: 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.blog-card--featured .blog-card-img { border-radius: 12px 0 0 12px; min-height: 320px; }
.blog-card--featured .blog-card-body { padding: 40px 36px; }
.blog-card--featured .blog-card-title { font-size: 1.6rem; }

/* --- Blog Card --- */
.blog-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e2a4a 0%, #16213E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-cat-icon { font-size: 2.8rem; }

.blog-card-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--honey);
  color: #1A1A2E;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}
.meta-dot { opacity: 0.4; }
.blog-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 10px;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-readmore {
  font-size: 0.85rem;
  color: var(--honey);
  font-weight: 600;
  margin-top: auto;
}

/* --- Pagination --- */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.blog-pagination .page-numbers {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: #1A1A2E;
  font-weight: 600;
}

/* --- Empty State --- */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.blog-empty span { font-size: 3rem; display: block; margin-bottom: 16px; }

/* --- Blog CTA Strip --- */
.blog-cta-strip {
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.blog-cta-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-cta-strip p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

/* ============================================
   SINGLE POST
   ============================================ */

/* --- Post Hero --- */
.post-hero {
  padding: 100px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.post-back { margin-bottom: 28px; }
.post-back a {
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.post-back a:hover { opacity: 1; color: var(--honey); }
.post-back a:hover { color: var(--honey); }
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.post-cat-badge {
  background: var(--honey);
  color: #1A1A2E;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 20px;
}
.post-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}

/* --- Featured Image --- */
.post-featured-img { padding: 40px 0 0; }
.post-featured-img img {
  width: 100%;
  border-radius: 12px;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* --- Post Layout --- */
.post-body-section { padding: 56px 0 80px; }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* --- Post Content Styling --- */
.post-content {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  margin: 2em 0 0.75em;
  line-height: 1.3;
}
.post-content h2 { font-size: 1.5rem; }
.post-content h3 { font-size: 1.2rem; }
.post-content p { margin: 0 0 1.4em; }
.post-content a { color: var(--honey); text-decoration: none; border-bottom: 1px solid rgba(245,166,35,0.3); }
.post-content a:hover { border-color: var(--honey); }
.post-content ul, .post-content ol { padding-left: 1.5em; margin: 0 0 1.4em; }
.post-content li { margin-bottom: 0.5em; }
.post-content blockquote {
  border-left: 3px solid var(--honey);
  padding: 16px 24px;
  margin: 2em 0;
  background: rgba(245,166,35,0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #fff;
}
.post-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5em 0;
}
.post-content code {
  background: rgba(255,255,255,0.07);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.9em;
}

/* --- Post Tags --- */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.post-tag {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s;
}
.post-tag:hover { border-color: var(--honey); color: var(--honey); }

/* --- Share Bar --- */
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.post-share > span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
}
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.share-wa  { background: #25D366; color: #fff; }
.share-tw  { background: #1a1a1a; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.share-li  { background: #0A66C2; color: #fff; }

/* --- Sidebar --- */
.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 28px; min-width: 0; }

.sidebar-cta-card {
  background: linear-gradient(135deg, #1e2d50 0%, var(--card) 100%);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta-emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
.sidebar-cta-card h3 { font-size: 1.05rem; color: #fff; margin: 0 0 10px; line-height: 1.4; }
.sidebar-cta-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.sidebar-cta-card .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

.sidebar-recent {
  background: var(--card);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.sidebar-recent h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--honey);
  margin: 0 0 16px;
}
.sidebar-post-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: opacity 0.2s;
}
.sidebar-post-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-link:hover { opacity: 0.75; }
.sidebar-post-title { font-size: 0.87rem; color: #fff; line-height: 1.4; flex: 1; }
.sidebar-post-date { font-size: 0.75rem; color: var(--muted); white-space: nowrap; }

/* --- Related Posts --- */
.related-posts-section {
  padding: 0 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 64px;
}
.related-posts-section .section-title { margin-bottom: 32px; font-size: 1.4rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-column: 1 / -1; }
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card-img { border-radius: 12px 12px 0 0; min-height: 200px; }
  .blog-card--featured .blog-card-body { padding: 22px 24px 24px; }
  .blog-card--featured .blog-card-title { font-size: 1.15rem; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-cta-strip .container { flex-direction: column; align-items: flex-start; }
  .post-share { gap: 8px; }
}
@media (max-width: 768px) {
  .post-featured-img { padding: 24px 0 0; }
  .post-featured-img img {
    border-radius: 0;
    max-height: 260px;
  }
}


/* ═══════════════════════════════════════════════
   PORTFOLIO PAGE
   ═══════════════════════════════════════════════ */

/* Hero */
.portfolio-hero { padding-bottom: 48px; }

/* Filter Bar */
.portfolio-filter-section {
  padding: 0 0 48px;
}

.portfolio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pf-pill {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--muted);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pf-pill:hover {
  border-color: var(--honey);
  color: var(--honey);
}

.pf-pill.active {
  background: var(--honey);
  border-color: var(--honey);
  color: #1A1A2E;
}

/* Grid */
.portfolio-grid-section { padding-bottom: 80px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.3);
}

/* Image */
.pc-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d1120;
}

.pc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .pc-image-wrap img {
  transform: scale(1.04);
}

/* Overlay with tags */
.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,20,40,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-card:hover .pc-overlay {
  opacity: 1;
}

.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-tag {
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--honey);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
}

/* Meta row */
.pc-meta {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-industry {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.pc-dot {
  color: var(--muted);
  font-size: 0.75rem;
}

.pc-city {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
}

/* Empty state */
.portfolio-empty {
  text-align: center;
  padding: 64px 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filter-bar { gap: 8px; }
  .pf-pill { font-size: 0.8rem; padding: 7px 16px; }
}
