:root {
  --bg: #06131f;
  --bg-soft: #10253a;
  --text: #f4f7fb;
  --muted: #9fb0c3;
  --accent: #56d6a6;
  --accent-2: #6ba8ff;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  position: relative;
  background-color: #040e1b;
  background-image:
    url("images/WhatsApp Image 2026-06-27 at 13.44.41.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(4, 10, 18, 0.86), rgba(4, 10, 18, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 18%, rgba(86, 214, 166, 0.1), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(107, 168, 255, 0.08), transparent 22%);
  opacity: 0.29;
  pointer-events: none;
  z-index: 0;
}

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

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(6, 19, 31, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.hero {
  padding: 5rem 0 3.5rem;
}

.top-brand-image-section {
  padding: 0;
}

.top-brand-image-section .container {
  width: 100%;
  margin: 0;
}

.top-brand-image {
  width: 100%;
  height: 38vh;
  display: block;
  margin: 0;
  object-fit: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.page-hero {
  padding-top: 3.5rem;
}

.section {
  padding: 3.5rem 0;
}

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

h1,
h2,
h3 {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.hero-copy,
.section p,
.card p,
.insight-card p {
  color: rgba(239, 244, 250, 0.9);
  font-size: 0.98rem;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  opacity: 0;
  animation: slideUpFade 0.85s ease forwards;
}

.hero .eyebrow {
  animation-delay: 0.1s;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero-copy {
  animation-delay: 0.35s;
}

.hero-actions {
  animation-delay: 0.55s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.1rem;
}

.hero-card {
  background: rgba(8, 18, 34, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  box-shadow: 0 24px 50px rgba(1, 11, 22, 0.16);
  padding: 1.5rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
  color: rgba(239, 244, 250, 0.88);
}

.hero-card li {
  margin-bottom: 0.8rem;
  list-style: none;
  position: relative;
  padding-left: 1.15rem;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.button {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #031019;
  box-shadow: 0 12px 30px rgba(86, 214, 166, 0.2);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

.section {
  padding: 3.25rem 0;
}

.card,
.insight-card,
.cta-box,
.contact-card,
.quote-box,
.feature-list article {
  background: rgba(8, 18, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.75rem;
  box-shadow: 0 20px 42px rgba(1, 11, 22, 0.16);
  backdrop-filter: blur(24px);
  color: rgba(239, 244, 250, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: rgba(4, 10, 18, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-links a {
  color: rgba(255,255,255,0.74);
  text-decoration: none;
  transition: color 180ms ease;
}

.hero .hero-media,
.hero .hero-actions,
.hero h1,
.hero .eyebrow,
.hero-copy {
  opacity: 0;
  animation: slideUpFade 0.85s ease forwards;
}

.hero .hero-media {
  animation-delay: 0.65s;
}

.hero .hero-actions {
  animation-delay: 0.55s;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero .eyebrow {
  animation-delay: 0.1s;
}

.hero-copy {
  animation-delay: 0.35s;
}

.hero-media img {
  transform: scale(1.01);
  transition: transform 0.9s ease;
}

.hero-media img:hover {
  transform: scale(1.018);
}

.section-intro {
  max-width: 700px;
  margin-bottom: 1.75rem;
}

.section-intro h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 38rem;
}

.card h3,
.author-grid h3,
.feature-list article h3 {
  font-size: 1.12rem;
  margin-bottom: 0.7rem;
}

.card p,
.feature-list article p,
.author-grid p {
  max-width: 36rem;
  line-height: 1.7;
}

.page-hero {
  padding-top: 3.5rem;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(2, 8, 20, 0.25);
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1.1rem;
}

.feature-list article {
  padding: 1.1rem 1.2rem;
}

.contact-card {
  padding: 1.5rem;
}

.contact-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

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

.subscribe-box {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.subscribe-box-inline {
  margin-top: 1.6rem;
}

.subscribe-box h3 {
  margin-bottom: 0.45rem;
}

.subscribe-box p {
  margin-top: 0;
}

.subscribe-form {
  margin-top: 0.9rem;
}

.subscribe-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.subscribe-row input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.subscribe-row input[type="email"]:focus {
  outline: none;
  border-color: rgba(86, 214, 166, 0.5);
  box-shadow: 0 0 0 3px rgba(86, 214, 166, 0.12);
}

.subscribe-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.7rem;
}

.quote-box {
  padding: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.muted-section {
  background: rgba(255, 255, 255, 0.02);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.author-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
}

.author-card .author-photo {
  margin-left: auto;
  margin-right: auto;
}

.author-card h3 {
  width: 100%;
  text-align: center;
  margin-bottom: 0.2rem;
}

.author-card p:not(.author-role) {
  text-align: left;
  margin: 0;
}

.author-card .author-link {
  text-align: center;
  margin: 0.15rem 0 0.25rem;
}

.author-photo {
  width: 120px;
  height: 150px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(86, 214, 166, 0.35), rgba(107, 168, 255, 0.4));
  border: 1px solid var(--border);
  margin-bottom: 0.4rem;
}

.author-role {
  color: var(--accent);
  font-weight: 600;
  margin: 0;
  text-align: center;
  min-height: 2.4rem;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-side .tabs {
  margin-top: 0;
}

.expertise-grid,
.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.card-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.75rem;
}

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

.service-pillars-grid .card h4 {
  font-size: 0.98rem;
  line-height: 1.4;
  margin-top: 1rem;
  margin-bottom: 0.45rem;
}

.service-pillars-grid .card p,
.service-pillars-grid .card li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-pillars-grid .card ul {
  margin-top: 0;
  margin-bottom: 0.35rem;
  padding-left: 1.1rem;
}

.trending-stack {
  grid-template-columns: 1fr;
}

.trending-stack .card p {
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
}

.card,
.insight-card {
  padding: 1.4rem;
}

.featured-article {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
}

.featured-article-content {
  display: flex;
  flex-direction: column;
}

.featured-article-link a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.featured-article-link a:hover {
  text-decoration: underline;
}

.featured-article-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.full-article {
  margin-bottom: 1.75rem;
}

.full-article > h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 0.3rem;
}

.full-article p {
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
}

.full-article h4 {
  margin-top: 1.9rem;
  margin-bottom: 0.9rem;
  font-size: 1.06rem;
}

.full-article .disclaimer-heading {
  margin-top: 1.6rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-style: italic;
}

.full-article .disclaimer-text {
  font-size: 0.92rem;
  line-height: 1.55;
  font-style: italic;
}

.article-meta {
  margin-top: 0.1rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
}

.article-subheading {
  color: rgba(244, 248, 252, 0.98);
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: clamp(1.08rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
}

.full-article-image {
  width: 60%;
  display: block;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0.45rem auto 1.1rem;
  box-shadow: 0 16px 38px rgba(2, 8, 20, 0.22);
}

.full-article-image.figure-market-growth {
  width: 46%;
}

.article-comments {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-form {
  display: grid;
  gap: 1rem;
}

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

.form-field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-field select:focus {
  outline: none;
  border-color: rgba(86, 214, 166, 0.5);
  box-shadow: 0 0 0 3px rgba(86, 214, 166, 0.12);
}

.comment-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.comment-card {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.comment-card p {
  margin: 0;
  max-width: none;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.comment-meta {
  display: grid;
  gap: 0.15rem;
}

.comment-delete {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.comment-delete:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.comment-reaction {
  color: var(--accent);
  font-weight: 700;
}

.comment-empty {
  color: var(--muted);
  font-style: italic;
}

.full-article .article-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
}

.article-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.article-table th,
.article-table td {
  text-align: center;
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.article-table thead th {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

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

.article-references {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(239, 244, 250, 0.92);
}

.article-references li {
  margin-bottom: 0.55rem;
}

.article-preview h3 a {
  color: var(--text);
  text-decoration: none;
}

.article-preview p {
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
}

.article-preview h3 a:hover {
  text-decoration: underline;
}
.tabs {
  margin-top: 2rem;
}

.tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tabs label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.96);
  background: rgba(4, 10, 18, 0.56);
  cursor: pointer;
  margin-right: 0.75rem;
  margin-bottom: 1rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tabs input[type="radio"]:checked + label {
  background: rgba(86, 214, 166, 0.2);
  border-color: rgba(86, 214, 166, 0.55);
  color: var(--text);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
}

#tab-services:checked ~ .tab-panels .panel-services,
#tab-book:checked ~ .tab-panels .panel-book,
#tab-troubleshoot:checked ~ .tab-panels .panel-troubleshoot {
  display: block;
}

.tabs label[for="tab-book"] {
  border-color: rgba(86, 214, 166, 0.78);
  background: linear-gradient(90deg, rgba(86, 214, 166, 0.4), rgba(107, 168, 255, 0.34));
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(86, 214, 166, 0.28);
  transform: translateY(-1px);
}

.tabs #tab-book:checked + label {
  border-color: rgba(86, 214, 166, 0.95);
  box-shadow: 0 0 0 3px rgba(86, 214, 166, 0.28), 0 16px 36px rgba(86, 214, 166, 0.3);
}

.booking-form {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(86, 214, 166, 0.5);
  box-shadow: 0 0 0 3px rgba(86, 214, 166, 0.12);
}

.form-field select:required:invalid {
  border-color: rgba(255, 123, 123, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 123, 123, 0.16);
}

.form-actions {
  margin-top: 0.5rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.analytics-status {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.analytics-note,
.analytics-placeholder {
  color: rgba(239, 244, 250, 0.88);
}

.analytics-list {
  margin: 0;
  padding-left: 1.1rem;
}

.analytics-list li {
  margin-bottom: 0.45rem;
}

.analytics-iframe {
  width: 100%;
  min-height: 900px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(8, 18, 32, 0.9);
}

.booking-cta {
  padding-inline: 1.45rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(86, 214, 166, 0.28);
}

.cta-section {
  padding-bottom: 5rem;
}

.cta-box {
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer {
  padding: 1rem 0 2rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-row {
  display: flex;
  justify-content: center;
}

@media (max-width: 840px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.9rem;
    overflow-x: visible;
    white-space: normal;
    padding-bottom: 0.2rem;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero-grid,
  .about-grid,
  .card-grid,
  .insight-grid,
  .analytics-grid,
  .about-layout,
  .contact-layout,
  .expertise-grid,
  .visual-grid,
  .author-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscribe-row {
    grid-template-columns: 1fr;
  }

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

  .featured-article {
    grid-template-columns: 1fr;
  }

  .full-article-image {
    width: 100%;
  }

  .full-article-image.figure-market-growth {
    width: 82%;
  }

  .tabs label {
    width: 100%;
    margin-right: 0;
  }

  .analytics-iframe {
    min-height: 620px;
  }

}

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

  .top-brand-image {
    height: auto;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    background: rgba(4, 14, 27, 0.88);
  }

  .nav-links {
    gap: 0.5rem 0.75rem;
  }

  .nav-links a {
    font-size: 0.96rem;
  }

  .hero-actions,
  .tag-list {
    gap: 0.65rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .card,
  .insight-card,
  .cta-box,
  .contact-card,
  .quote-box,
  .feature-list article {
    border-radius: 1.15rem;
  }

  .analytics-iframe {
    min-height: 520px;
  }
}
