:root {
  --brand-blue: #0ea5e9;
  --brand-blue-deep: #0369a1;
  --brand-blue-soft: #dff6ff;
  --brand-sky: #f0f9ff;
  --brand-section: #eaf7fd;
  --brand-ink: #111827;
  --brand-copy: #52647b;
  --brand-line: rgba(12, 45, 92, 0.12);
  --brand-surface: rgba(255, 255, 255, 0.9);
  --brand-dark: #09162d;
  --brand-green: #22c55e;
  --brand-amber: #f59e0b;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-lg: 0 28px 60px rgba(10, 33, 79, 0.16);
  --shadow-md: 0 20px 38px rgba(9, 30, 66, 0.12);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(17, 168, 239, 0.12), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(37, 201, 126, 0.1), transparent 18%),
    linear-gradient(180deg, #f8fdff 0%, #ffffff 28%, #f6fbff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.preview-page {
  overflow-x: clip;
}

.site-topbar {
  background: linear-gradient(90deg, #0a1630 0%, #0b335c 100%);
  color: rgba(255, 255, 255, 0.85);
}

.topbar-inner,
.topbar-left,
.topbar-right,
.social-list,
.header-inner,
.main-nav ul,
.header-actions,
.hero-layout,
.hero-actions,
.hero-trust,
.quick-strip-inner,
.split-grid,
.feature-list,
.section-heading,
.reason-grid,
.visual-cta-inner,
.visual-cta-actions,
.pricing-grid,
.results-layout,
.results-stack,
.services-grid,
.benefits-layout,
.benefits-grid,
.insights-grid,
.faq-layout,
.contact-band-inner,
.contact-actions,
.footer-grid {
  display: flex;
}

.topbar-inner {
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  gap: 20px;
}

.topbar-left,
.topbar-right {
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-left a,
.topbar-right span {
  font-size: 13px;
}

.topbar-left a i {
  margin-right: 6px;
}

.social-list a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-list a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(17, 168, 239, 0.12);
}

.header-inner {
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 22px;
  position: relative;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brandmark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brandmark strong,
.brandmark span {
  display: block;
}

.brandmark strong {
  font-size: 21px;
  line-height: 1.1;
}

.brandmark span {
  color: var(--brand-copy);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(17, 168, 239, 0.1);
  color: var(--brand-blue-deep);
}

.main-nav {
  min-width: 0;
}

.main-nav ul {
  list-style: none;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a,
.dropdown-toggle {
  color: #23324d;
  font-weight: 700;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.dropdown-toggle:hover {
  color: var(--brand-blue-deep);
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle i {
  margin-left: 6px;
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 168, 239, 0.14);
  box-shadow: var(--shadow-md);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: rgba(17, 168, 239, 0.08);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-actions {
  align-items: center;
  gap: 12px;
}

.header-link {
  color: var(--brand-blue-deep);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  box-shadow: 0 18px 36px rgba(10, 127, 202, 0.28);
}

.btn-secondary {
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 168, 239, 0.18);
}

.btn-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 48px 0 34px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-orb-one {
  width: 340px;
  height: 340px;
  left: -80px;
  top: 40px;
  background: radial-gradient(circle, rgba(17, 168, 239, 0.16), transparent 68%);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  right: -60px;
  top: 10px;
  background: radial-gradient(circle, rgba(37, 201, 126, 0.14), transparent 68%);
}

.hero-layout {
  position: relative;
  align-items: center;
  gap: 44px;
}

.hero-copy,
.hero-visual,
.section-copy,
.section-media,
.results-copy,
.faq-copy {
  flex: 1;
  min-width: 0;
}

.eyebrow,
.section-tag,
.badge,
.plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eyebrow,
.section-tag {
  min-height: 36px;
  margin: 0 0 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.1);
  color: var(--brand-blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-tag.inverse {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.results-copy h2,
.faq-copy h2,
.visual-cta h2,
.contact-band h2 {
  margin: 0;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  max-width: 12ch;
}

.hero-description,
.section-copy p,
.section-heading p,
.visual-cta p,
.results-copy p,
.faq-copy p,
.contact-band p,
.service-card p,
.benefits-grid p,
.reason-card p,
.mini-card p,
.hero-panel-copy p,
.pricing-card li,
.insight-card p,
.text-block p,
.comparison-card p,
.site-footer p {
  color: var(--brand-copy);
  line-height: 1.75;
}

.hero-description {
  margin: 22px 0 0;
  max-width: 650px;
  font-size: 18px;
}

.hero-actions {
  margin-top: 24px;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust div {
  min-width: 180px;
  flex: 1;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 168, 239, 0.12);
  box-shadow: var(--shadow-md);
}

.hero-trust strong,
.hero-panel-copy h2,
.pricing-card h3,
.service-card h3,
.reason-card h3,
.benefits-grid h3,
.insight-card h3,
.result-item h3 {
  display: block;
  margin-bottom: 8px;
}

.hero-visual {
  position: relative;
}

.hero-panel,
.mini-card,
.image-card,
.reason-card,
.pricing-card,
.service-card,
.benefits-grid article,
.insight-card,
.faq-list details,
.comparison-card,
.result-item {
  border-radius: var(--radius-lg);
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-lg);
}

.mini-card,
.reason-card,
.service-card,
.benefits-grid article,
.insight-card,
.comparison-card,
.chip {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mini-card:hover,
.reason-card:hover,
.service-card:hover,
.benefits-grid article:hover,
.insight-card:hover,
.comparison-card:hover,
.chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(10, 33, 79, 0.18);
}

.hero-panel-main {
  padding: 22px;
}

.panel-badges,
.hero-side-cards,
.pricing-top,
.feature-list,
.faq-list,
.footer-about {
  display: grid;
}

.panel-badges {
  grid-template-columns: repeat(2, max-content);
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.badge-blue {
  color: var(--brand-blue-deep);
  background: rgba(17, 168, 239, 0.12);
}

.badge-dark {
  color: #fff;
  background: var(--brand-dark);
}

.hero-panel-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.16 / 0.92;
  object-fit: cover;
  border-radius: 24px;
  background: linear-gradient(180deg, #dbf5ff 0%, #f7fdff 100%);
}

.hero-panel-copy {
  padding-top: 20px;
}

.hero-panel-copy h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.hero-side-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.mini-card {
  padding: 18px;
}

.mini-card i,
.reason-card i,
.benefits-grid i,
.service-card i,
.result-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-card i,
.reason-card i,
.benefits-grid i,
.service-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(17, 168, 239, 0.11);
  color: var(--brand-blue-deep);
  font-size: 22px;
  margin-bottom: 14px;
}

.quick-strip {
  padding: 14px 0 8px;
}

.quick-strip-inner {
  display: grid;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 34px;
  background: linear-gradient(135deg, #0c1b34 0%, #0a7fca 100%);
  box-shadow: 0 20px 40px rgba(9, 27, 52, 0.16);
}

.hero-trust-split {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-trust-split div {
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-trust-split strong,
.hero-trust-split span {
  color: #ffffff;
}

.quick-strip-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-strip-inner p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  white-space: nowrap;
}

.section {
  padding: 96px 0;
}

.split-grid,
.results-layout,
.faq-layout,
.contact-band-inner,
.benefits-layout,
.visual-cta-inner {
  align-items: center;
  gap: 44px;
}

.image-card {
  overflow: hidden;
  padding: 12px;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  min-height: 460px;
  object-fit: cover;
}

.feature-list {
  gap: 14px;
  margin-top: 24px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(17, 168, 239, 0.06);
  color: #23324d;
  font-weight: 700;
}

.feature-list i {
  color: var(--brand-green);
}

.section-heading {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading.center {
  align-items: center;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.results-copy h2,
.faq-copy h2,
.visual-cta h2,
.contact-band h2 {
  font-size: clamp(30px, 4vw, 56px);
}

.reason-grid {
  flex-wrap: wrap;
  gap: 22px;
}

.reason-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  padding: 26px;
}

.visual-cta {
  background: linear-gradient(135deg, #0a1831 0%, #0e63a0 100%);
}

.visual-cta h2,
.visual-cta p,
.contact-band h2 {
  color: #fff;
}

.visual-cta-actions,
.contact-actions {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pricing-section {
  background: linear-gradient(180deg, rgba(239, 250, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.pricing-grid {
  align-items: stretch;
  gap: 22px;
}

.pricing-card {
  position: relative;
  flex: 1;
  padding: 28px;
}

.pricing-card.featured {
  transform: translateY(-12px);
  border-color: rgba(17, 168, 239, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
}

.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.12);
  color: var(--brand-blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.pricing-top {
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.pricing-top img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.plan-label {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.08);
  color: var(--brand-blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.pricing-top h3 {
  margin: 8px 0 0;
  font-size: 25px;
}

.price {
  margin: 22px 0 20px;
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-ink);
}

.price span {
  margin-left: 8px;
  color: var(--brand-copy);
  font-size: 16px;
  font-weight: 700;
}

.pricing-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
}

.pricing-card li {
  overflow-wrap: anywhere;
}

.pricing-card li + li {
  margin-top: 10px;
}

.results-layout {
  align-items: start;
}

.results-stack {
  flex: 1.1;
  flex-direction: column;
  gap: 18px;
}

.result-item {
  display: flex;
  gap: 18px;
  padding: 22px;
}

.result-item span {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  font-weight: 800;
}

.clients-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(239, 249, 255, 0.92));
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 34s linear infinite;
  will-change: transform;
}

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

.logo-set {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex: 0 0 auto;
  padding-right: 18px;
}

.logo-track figure {
  flex: 0 0 clamp(180px, 17vw, 210px);
  width: clamp(180px, 17vw, 210px);
  margin: 0;
  min-height: 148px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--brand-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateZ(0);
}

.logo-track img {
  max-width: 150px;
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-track figcaption {
  font-size: 13px;
  color: var(--brand-copy);
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.services-grid {
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 230px;
  padding: 24px;
}

.service-card.wide {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-basis: calc(50% - 20px);
}

.service-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.services-grid.cols-3 .service-card {
  flex-basis: calc(33.333% - 20px);
}

.seo-insights-section .section-heading {
  margin-bottom: 24px;
}

.seo-insights-section .section-heading ~ .section-heading {
  margin-top: 56px;
}

.seo-insights-section .text-block {
  margin-bottom: 0;
}

.benefits-layout {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 44px;
}

.benefits-copy {
  min-width: 0;
}

.benefits-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefits-grid article {
  min-width: 0;
  padding: 24px;
}

.insights-section {
  background: linear-gradient(180deg, rgba(240, 250, 255, 0.88), rgba(255, 255, 255, 0.92));
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.insight-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.insight-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.08);
  color: var(--brand-blue-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  text-align: center;
}

.insight-card h3 {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.35;
}

.insight-card p {
  margin: 16px 0 22px;
}

.insight-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.1);
  color: var(--brand-blue-deep);
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.insight-card a i {
  font-size: 12px;
}

.insight-card a:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  box-shadow: 0 14px 28px rgba(10, 127, 202, 0.24);
}

.faq-list {
  flex: 1.2;
  gap: 16px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  list-style: none;
  padding: 22px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0 0 20px;
}

.contact-band {
  background: linear-gradient(135deg, #07162d 0%, #0b72b4 100%);
}

.contact-band-inner {
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.contact-band-inner > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.contact-band h2 {
  max-width: 880px;
}

.contact-band p {
  max-width: 900px;
  color: #eaf6ff !important;
}

.contact-band .contact-actions {
  flex: 0 0 auto;
  width: auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.contact-band .btn {
  width: auto;
  min-width: 124px;
  min-height: 56px;
  padding: 0 24px;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.contact-band .btn-primary {
  background: #ffffff;
  color: var(--brand-blue-deep);
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.16);
}

.contact-band .btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.site-footer {
  background: #071324;
  color: #dbeafe;
  padding-top: 48px;
}

.site-footer p {
  color: #dbeafe;
}

.footer-grid {
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 34px;
}

.footer-about {
  gap: 18px;
}

.footer-brand strong,
.footer-brand span,
.site-footer h3 {
  color: #fff;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.footer-bottom p {
  margin: 0;
  color: #cbd5e1;
  text-align: center;
}

.reveal-up {
  animation: revealUp 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1150px) {
  .header-inner,
  .hero-layout,
  .split-grid,
  .results-layout,
  .faq-layout,
  .contact-band-inner,
  .visual-cta-inner,
  .footer-grid,
  .hero-side-cards,
  .pricing-grid,
  .insights-grid {
    flex-direction: column;
  }

  .main-nav ul {
    gap: 18px;
  }

  .hero-side-cards {
    grid-template-columns: 1fr;
  }

  .hero-layout,
  .split-grid,
  .results-layout,
  .faq-layout,
  .benefits-layout,
  .visual-cta-inner,
  .contact-band-inner {
    gap: 30px;
  }

  .hero-trust-split {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .logo-track {
    animation-duration: 30s;
  }

  .logo-track figure {
    flex-basis: 178px;
    width: 178px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 80px;
  }

  .hero {
    padding: 42px 0 26px;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(40px, 8vw, 64px);
  }

  .hero-description {
    font-size: 17px;
  }

  .image-card img {
    min-height: 320px;
  }

  .quick-strip-inner {
    border-radius: 28px;
  }

  .quick-strip-tags {
    justify-content: center;
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar-inner,
  .topbar-left,
  .topbar-right {
    justify-content: center;
  }

  .site-topbar {
    padding: 8px 0;
  }

  .topbar-inner,
  .topbar-left,
  .topbar-right {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .topbar-left a,
  .topbar-right span {
    font-size: 12px;
  }

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 50;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 168, 239, 0.12);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a,
  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 14px 12px;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    margin-top: 4px;
    box-shadow: none;
    border-radius: 14px;
    background: rgba(17, 168, 239, 0.05);
  }

  .has-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-panel-copy h2 {
    font-size: 26px;
  }

  .hero-trust,
  .reason-grid,
  .services-grid {
    flex-direction: column;
  }

  .service-card,
  .service-card.wide,
  .services-grid.cols-3 .service-card,
  .reason-card {
    min-width: 0;
    flex-basis: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .logo-track {
    animation-duration: 26s;
  }

  .logo-set {
    gap: 14px;
    padding-right: 14px;
  }

  .logo-track figure {
    flex-basis: 168px;
    width: 168px;
    min-height: 130px;
    padding: 18px;
  }

  .logo-track img {
    max-width: 130px;
    max-height: 38px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 72px;
    gap: 14px;
  }

  .brandmark img {
    width: 48px;
    height: 48px;
  }

  .brandmark strong {
    font-size: 18px;
  }

  .brandmark span {
    font-size: 12px;
  }

  .hero {
    padding: 36px 0 22px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-description {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-trust div,
  .mini-card,
  .reason-card,
  .pricing-card,
  .service-card,
  .benefits-grid article,
  .insight-card,
  .faq-list details,
  .result-item {
    padding: 18px;
  }

  .panel-badges {
    grid-template-columns: 1fr;
  }

  .quick-strip-inner p {
    width: 100%;
    text-align: center;
  }

  .quick-strip-tags {
    flex-direction: column;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .results-copy h2,
  .faq-copy h2,
  .visual-cta h2,
  .contact-band h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .price {
    font-size: 34px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card h3 {
    font-size: 19px;
  }

  .logo-track figure {
    flex-basis: 152px;
    width: 152px;
    min-height: 118px;
    padding: 16px;
    gap: 10px;
  }

  .logo-track img {
    max-width: 116px;
    max-height: 34px;
  }

  .logo-track figcaption {
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .site-topbar {
    padding: 10px 0;
  }

  .topbar-left,
  .topbar-right,
  .hero-actions,
  .visual-cta-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 30px 0 18px;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .main-nav {
    left: 10px;
    right: 10px;
  }

  .main-nav ul {
    padding: 10px;
    border-radius: 16px;
  }

  .main-nav a,
  .dropdown-toggle {
    padding: 13px 10px;
    font-size: 15px;
  }

  .hero-trust {
    gap: 12px;
  }

  .hero-trust div {
    min-width: 0;
  }

  .hero-panel-main {
    padding: 14px;
  }

  .hero-panel-main img {
    border-radius: 18px;
  }

  .quick-strip-inner {
    padding: 16px;
    border-radius: 22px;
  }

  .feature-list div {
    align-items: flex-start;
  }

  .result-item {
    flex-direction: column;
  }

  .result-item span {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .site-footer {
    padding-top: 36px;
  }

  .footer-grid {
    gap: 24px;
    padding-bottom: 24px;
  }

  .btn {
    width: 100%;
  }

  .contact-band .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .contact-band .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  .insight-type {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .insight-card a {
    width: 100%;
  }
}

/* ===================================================================
   Shared inner-page styles (About Us, services, contact, etc.)
   =================================================================== */

.page-hero {
  position: relative;
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  max-width: 16ch;
}

.page-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--brand-copy);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero .hero-actions {
  justify-content: center;
  margin-top: 6px;
}

.vision-mission-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  border-radius: var(--radius-lg);
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-item i {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 168, 239, 0.11);
  color: var(--brand-blue-deep);
  font-size: 18px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-info-item span {
  color: var(--brand-copy);
  font-size: 14px;
}

.contact-social h4 {
  margin: 0 0 14px;
  font-size: 16px;
}

.contact-social .social-list a {
  background: rgba(17, 168, 239, 0.1);
  color: var(--brand-blue-deep);
}

.contact-social .social-list a:hover {
  background: rgba(17, 168, 239, 0.18);
}

.contact-form-card h2 {
  margin: 0 0 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--brand-line);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--brand-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(17, 168, 239, 0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 860px) {
  .page-hero {
    padding: 48px 0 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }
}

/* ===================================================================
   Shared inner-page styles (service pages: chips, text blocks, comparison cards)
   =================================================================== */

.strategy-section .split-grid {
  margin-bottom: 56px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 56px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 14px;
  border-radius: 999px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-md);
  color: #23324d;
  font-weight: 700;
  font-size: 15px;
}

.chip-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 168, 239, 0.11);
  color: var(--brand-blue-deep);
  font-size: 15px;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 168, 239, 0.05), rgba(17, 168, 239, 0.02));
  border: 1px solid var(--brand-line);
}

.text-block h3 {
  margin: 0;
  font-size: 26px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-card {
  padding: 32px;
}

.comparison-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 168, 239, 0.11);
  color: var(--brand-blue-deep);
  font-size: 22px;
  margin-bottom: 16px;
}

.comparison-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.comparison-card p {
  margin: 0 0 14px;
}

.comparison-card p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 860px) {
  .strategy-section .split-grid {
    margin-bottom: 36px;
  }

  .chip-grid {
    margin-bottom: 36px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card,
  .text-block {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .chip {
    width: 100%;
  }

  .chip-grid {
    flex-direction: column;
  }
}

/* ===================================================================
   Shared inner-page styles (service pages: interactive process tabs)
   =================================================================== */

.process-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.process-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-md);
  color: #23324d;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.process-tab i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 168, 239, 0.11);
  color: var(--brand-blue-deep);
  font-size: 15px;
  transition: background-color 0.28s ease, color 0.28s ease;
}

.process-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(10, 33, 79, 0.18);
}

.process-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  box-shadow: 0 18px 36px rgba(10, 127, 202, 0.28);
}

.process-tab.active i {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.process-panel {
  display: none;
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 168, 239, 0.05), rgba(17, 168, 239, 0.02));
  border: 1px solid var(--brand-line);
}

.process-panel.active {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-panel h3 {
  margin: 0;
  font-size: 26px;
}

@media (max-width: 860px) {
  .process-panel {
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .process-tabs {
    gap: 10px;
  }

  .process-tab {
    padding: 10px 16px 10px 10px;
    font-size: 14px;
  }

  .process-tab i {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .process-tab {
    width: 100%;
  }

  .process-tabs {
    flex-direction: column;
  }
}

/* ===================================================================
   Shared inner-page styles (blog list: post cards, pagination)
   =================================================================== */

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-copy);
  font-size: 13px;
  font-weight: 700;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.1);
  color: var(--brand-blue-deep);
  font-size: 12px;
  font-weight: 800;
}

.blog-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.blog-excerpt {
  margin: 0;
  color: var(--brand-copy);
  line-height: 1.7;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--brand-line);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #23324d;
  font-size: 13px;
  font-weight: 700;
}

.blog-author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.1);
  color: var(--brand-blue-deep);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.read-more-btn i {
  font-size: 11px;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  box-shadow: 0 18px 36px rgba(10, 127, 202, 0.28);
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  color: #23324d;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.blog-pagination a:hover {
  transform: translateY(-2px);
  background: rgba(17, 168, 239, 0.08);
  box-shadow: var(--shadow-md);
}

.blog-pagination .is-active span {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  border-color: transparent;
  color: #fff;
}

@media (max-width: 980px) {
  .blog-card {
    flex-basis: calc(50% - 24px);
  }
}

@media (max-width: 680px) {
  .blog-card {
    flex-basis: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .blog-card-body {
    padding: 18px;
  }

  .blog-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .read-more-btn {
    justify-content: center;
  }

  .blog-pagination {
    gap: 8px;
  }

  .blog-pagination a,
  .blog-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
  }
}

/* ===================================================================
   Shared inner-page styles (blog detail: article column, sidebar card)
   =================================================================== */

.blog-detail-container {
  padding: 56px 0 96px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--brand-blue-deep);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.back-to-blog:hover {
  transform: translateX(-4px);
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.article-column,
.sidebar-column {
  min-width: 0;
}

.blog-header {
  margin-bottom: 28px;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  color: var(--brand-copy);
  font-size: 14px;
  font-weight: 700;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-detail-meta i {
  color: var(--brand-blue-deep);
}

.blog-detail-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.blog-detail-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 0 8px;
  object-fit: cover;
}

.blog-detail-content {
  margin-top: 28px;
  color: var(--brand-copy);
  font-size: 16px;
  line-height: 1.8;
}

.blog-detail-content h1 {
  margin: 0 0 24px;
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.25;
  color: var(--brand-ink);
}

.blog-detail-content h2 {
  margin: 40px 0 16px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--brand-ink);
}

.blog-detail-content h3 {
  margin: 28px 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--brand-ink);
}

.blog-detail-content p {
  margin: 0 0 18px;
}

.blog-detail-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.blog-detail-content li {
  line-height: 1.7;
}

.blog-detail-content a {
  color: var(--brand-blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(17, 168, 239, 0.35);
}

.blog-detail-content strong {
  color: var(--brand-ink);
}

.related-posts {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--brand-line);
}

.related-posts-title {
  margin: 0 0 24px;
  font-size: 24px;
}

.related-posts .blog-grid {
  gap: 20px;
}

.related-posts .blog-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 220px;
}

.sidebar-column {
  position: sticky;
  top: 24px;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 20px;
}

.contact-card .dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green);
}

.contact-card p.small {
  margin: 0 0 22px;
  color: var(--brand-copy);
  font-size: 14px;
  line-height: 1.7;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #23324d;
}

.contact-actions {
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.btn-primary-blue,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-primary-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  box-shadow: 0 18px 36px rgba(10, 127, 202, 0.28);
}

.btn-whatsapp {
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

.btn-primary-blue:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.quick-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--brand-line);
}

.quick-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(17, 168, 239, 0.08);
  color: var(--brand-blue-deep);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.quick-link:hover {
  background: rgba(17, 168, 239, 0.16);
}

@media (max-width: 1150px) {
  .blog-detail-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
  }
}

@media (max-width: 980px) {
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    position: static;
    max-width: 480px;
  }
}

@media (max-width: 680px) {
  .blog-detail-container {
    padding: 40px 0 64px;
  }

  .blog-detail-content h2 {
    margin: 32px 0 14px;
    font-size: 22px;
  }

  .blog-detail-content h3 {
    margin: 22px 0 10px;
    font-size: 18px;
  }

  .related-posts {
    margin-top: 40px;
    padding-top: 28px;
  }

  .related-posts .blog-card {
    flex-basis: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .contact-card {
    padding: 22px;
  }

  .sidebar-column {
    max-width: none;
  }
}

/* Final service-page CTA override: keep contact-band buttons responsive. */
.contact-band .contact-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  width: auto;
  margin-top: 0;
}

.contact-band .contact-actions .btn {
  width: auto;
  min-width: 124px;
  min-height: 56px;
  padding: 0 24px;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.contact-band p {
  color: #eaf6ff !important;
}

@media (max-width: 768px) {
  .contact-band .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .contact-band .contact-actions .btn {
    width: 100%;
  }
}

/* ===================================================================
   Social Media Marketing — comparison table
   =================================================================== */

.smm-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--brand-line);
}

.smm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
}

.smm-table th,
.smm-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--brand-line);
  vertical-align: top;
}

.smm-table thead th {
  background-color: var(--brand-blue-deep);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.smm-table tbody tr:last-child td {
  border-bottom: none;
}

.smm-table tbody tr:nth-child(even) {
  background-color: var(--brand-surface);
}

.smm-table a {
  color: var(--brand-blue-deep);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .smm-table-wrap {
    border: none;
    border-radius: 0;
  }

  .smm-table,
  .smm-table thead,
  .smm-table tbody,
  .smm-table th,
  .smm-table td,
  .smm-table tr {
    display: block;
  }

  .smm-table thead {
    display: none;
  }

  .smm-table tbody tr {
    border: 1px solid var(--brand-line);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    background-color: #fff;
  }

  .smm-table tbody tr:nth-child(even) {
    background-color: var(--brand-surface);
  }

  .smm-table td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--brand-line);
    min-width: unset;
  }

  .smm-table td:last-child {
    border-bottom: none;
  }

  .smm-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
  }
}

/* ── E-Card Section ─────────────────────────────────────── */
.ecard-section {
  background: linear-gradient(135deg, #07162d 0%, #0b335c 55%, #0a6ea8 100%);
  position: relative;
  overflow: hidden;
}

.ecard-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(14, 165, 233, 0.18), transparent),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(3, 105, 161, 0.22), transparent);
  pointer-events: none;
}

.ecard-section .container {
  position: relative;
  z-index: 1;
}

.ecard-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.ecard-tag {
  background: rgba(14, 165, 233, 0.18) !important;
  color: #7dd3fc !important;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.ecard-header h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.ecard-header > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.6;
}

.ecard-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 1040px;
  margin: 0 auto 2.75rem;
}

.ecard-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(14, 165, 233, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  will-change: transform;
}

.ecard-wrapper:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 0 0 2px rgba(14, 165, 233, 0.5),
    0 36px 80px rgba(0, 0, 0, 0.55),
    0 12px 28px rgba(0, 0, 0, 0.35);
}

.ecard-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.ecard-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ecard-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.75rem;
}

.ecard-wa {
  background: #25d366 !important;
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.3);
  border-color: transparent !important;
}

.ecard-wa:hover {
  background: #1ebe5d !important;
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.ecard-li {
  background: #0a66c2 !important;
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(10, 102, 194, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.45) !important;
}

.ecard-li:hover {
  background: #0958a8 !important;
  box-shadow: 0 20px 44px rgba(10, 102, 194, 0.6);
  border-color: rgba(255, 255, 255, 0.65) !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ecard-showcase {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 1.25rem;
  }

  .ecard-header {
    margin-bottom: 2rem;
  }

  .ecard-btn {
    min-width: 100%;
  }

  .ecard-actions {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── Floating Contact Buttons ── */
.floating-contacts {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.floating-call {
  background: #0ea5e9;
}

.floating-call:hover {
  background: #0284c7;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-whatsapp:hover {
  background: #1ebe5d;
}

@media (max-width: 768px) {
  .floating-contacts {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }
}
