/**
 * ADEX369 — Premium enterprise layer (WordPress-grade polish)
 * Palette: deep blue, turquoise, gold + white accents
 */

:root {
  --navy: #0a1628;
  --navy-deep: #050c1a;
  --white: #ffffff;
  --white-soft: #f4f7fb;
  --white-muted: #e8eef5;
  --slate: #475569;
  --slate-dark: #1e293b;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.12);
  --shadow-premium: 0 25px 60px rgba(10, 22, 40, 0.15);
  --radius-xl: 24px;
}

/* Site base — light professional canvas */
body {
  background: var(--white-soft);
  color: var(--slate-dark);
}

/* Decorative bg only on dark hero */
.bg-mesh,
.grid-overlay {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(38, 198, 178, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 50% at 95% 30%, rgba(201, 164, 60, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(59, 130, 246, 0.1), transparent),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, #0d2137 100%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 40% 30%, black, transparent 72%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

/* Dual-state nav — styles in styles.css; hero links stay white on overlay */
.nav--hero .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
.nav--hero .nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav--hero .nav-links a.active {
  color: #fff;
  background: rgba(38, 198, 178, 0.18);
  box-shadow: inset 0 -2px 0 var(--gold);
}

/* Section rhythm — clean white / blue alternation */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: #0a1628;
  color: #e8edf5;
  position: relative;
  z-index: 1;
}

.section-light {
  background: #ffffff;
  color: #1e293b;
  position: relative;
  z-index: 1;
  border-top: none;
  box-shadow: none;
}

.section-light-alt {
  background: #f8fafc;
  color: #1e293b;
  position: relative;
  z-index: 1;
  border-top: none;
  box-shadow: none;
}

.section-light .section-label,
.section-light-alt .section-label {
  color: var(--cyan);
}
.section-light .section-label::before,
.section-light-alt .section-label::before {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.section-light .section-title,
.section-light-alt .section-title {
  color: #0a1628;
  background: none;
  -webkit-text-fill-color: unset;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-light .section-desc,
.section-light-alt .section-desc {
  color: #64748b;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.section-dark .section-title {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: unset;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.68);
}

.section-dark .section-label {
  color: #26c6b2;
}

/* Centered section headers */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Hero — full dark block, nav overlays when .has-hero-nav */
.hero.section-dark {
  background: #050c1a;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  margin-bottom: 0;
}
body.has-hero-nav:not(.nav-is-sticky) .hero.section-dark {
  padding-top: calc(var(--nav-bar-h-hero) + 1.5rem);
}
body.nav-is-sticky .hero.section-dark {
  min-height: calc(100vh - var(--nav-bar-h-sticky));
  min-height: calc(100dvh - var(--nav-bar-h-sticky));
}
.hero .container {
  padding-bottom: 0;
}
.hero-viz {
  overflow: hidden;
  min-height: 420px;
}
.hero .float-card {
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid rgba(38, 198, 178, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.hero .float-card strong {
  color: #26c6b2;
}
.hero .float-card span {
  color: rgba(255, 255, 255, 0.55);
}
.hero .float-card:nth-child(1) { top: 8px; right: 0; }
.hero .float-card:nth-child(2) { bottom: auto; top: 42%; left: 0; }
.hero .float-card:nth-child(3) { bottom: 24px; right: 12px; left: auto; }

/* Trust strip — clean break below hero */
.trust-strip {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 2.5rem 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3.5rem;
}
.trust-strip-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  width: 100%;
  text-align: center;
  margin-bottom: 0.25rem;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.trust-logo:hover {
  color: #0a1628;
}

/* Cards on light sections — default white */
.section-light .glass-card,
.section-light-alt .glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  backdrop-filter: none;
  padding: 2rem;
}
.section-light .glass-card:hover,
.section-light-alt .glass-card:hover {
  border-color: #94a3b8;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

/* Service & industry cards — deep blue 3D */
.section-light .service-card,
.section-light-alt .service-card,
.section-light .industry-card,
.section-light-alt .industry-card {
  background: linear-gradient(160deg, #122a4a 0%, #0a1628 55%, #071018 100%);
  border: 1px solid rgba(38, 198, 178, 0.22);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(5, 12, 26, 0.28),
    0 4px 10px rgba(5, 12, 26, 0.18);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.section-light .service-card:hover,
.section-light-alt .service-card:hover,
.section-light .industry-card:hover,
.section-light-alt .industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 164, 60, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 48px rgba(5, 12, 26, 0.38),
    0 8px 24px rgba(38, 198, 178, 0.15);
}

.section-dark .glass-card:not(.service-card):not(.industry-card) {
  background: #0f1d32;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: none;
  backdrop-filter: none;
}
.section-dark .glass-card:not(.service-card):not(.industry-card):hover {
  background: #12243d;
  border-color: rgba(38, 198, 178, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Service cards on dark sections (e.g. Partnerships) — same deep blue as light sections */
.section-dark .service-card,
.section-dark .industry-card {
  background: linear-gradient(160deg, #122a4a 0%, #0a1628 55%, #071018 100%);
  border: 1px solid rgba(38, 198, 178, 0.22);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(5, 12, 26, 0.28),
    0 4px 10px rgba(5, 12, 26, 0.18);
}
.section-dark .service-card:hover,
.section-dark .industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 164, 60, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 48px rgba(5, 12, 26, 0.38),
    0 8px 24px rgba(38, 198, 178, 0.15);
}
.section-dark .service-card h4,
.section-dark .industry-card h4 {
  color: #ffffff;
}
.section-dark .service-card p,
.section-dark .industry-card p {
  color: rgba(255, 255, 255, 0.68);
}
.section-dark .service-tags span {
  background: rgba(38, 198, 178, 0.12);
  color: #5eead4;
  border: 1px solid rgba(38, 198, 178, 0.28);
  font-weight: 600;
}

/* Service & industry card text on deep blue */
.section-light .service-card h4,
.section-light-alt .service-card h4,
.section-light .industry-card h4,
.section-light-alt .industry-card h4 {
  color: #ffffff;
  font-size: 1.05rem;
}
.section-light .service-card p,
.section-light-alt .service-card p {
  color: rgba(255, 255, 255, 0.68);
}
.section-light .industry-icon {
  background: rgba(38, 198, 178, 0.14);
  border: 1px solid rgba(38, 198, 178, 0.35);
  color: #26c6b2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Professional icons (no emoji) */
.svc-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.svc-icon--dsp { background: rgba(38, 198, 178, 0.15); color: var(--cyan); border: 1px solid rgba(38, 198, 178, 0.3); }
.svc-icon--ssp { background: rgba(201, 164, 60, 0.15); color: var(--gold); border: 1px solid rgba(201, 164, 60, 0.35); }
.svc-icon--dmp { background: rgba(59, 130, 246, 0.12); color: var(--electric); border: 1px solid rgba(59, 130, 246, 0.25); }
.svc-icon--rtb { background: rgba(38, 198, 178, 0.12); color: #14b8a6; border: 1px solid rgba(38, 198, 178, 0.25); }
.svc-icon--fraud { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.svc-icon--ai { background: rgba(139, 92, 246, 0.12); color: var(--purple); border: 1px solid rgba(139, 92, 246, 0.25); }
.svc-icon--net { background: rgba(201, 164, 60, 0.12); color: var(--gold); border: 1px solid rgba(201, 164, 60, 0.3); }

/* “Build your own” card — same grid size as other service cards */
.service-card--own-build {
  border-color: rgba(201, 164, 60, 0.4) !important;
  background: linear-gradient(135deg, #153050 0%, #0a1628 50%, #071220 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 3px 0 0 var(--gold),
    0 12px 28px rgba(5, 12, 26, 0.28),
    0 4px 10px rgba(5, 12, 26, 0.18) !important;
}
.service-card--own-build .own-build-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.service-card--own-build h4 {
  font-size: 1.05rem !important;
  margin-bottom: 0.5rem;
}
.service-card--own-build p {
  font-size: 0.88rem !important;
  line-height: 1.55;
  max-width: none;
  color: rgba(255, 255, 255, 0.68) !important;
}

.service-category h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-deep);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--white-muted);
  margin-bottom: 0.5rem;
}
.trust-card .svc-icon {
  margin-bottom: 0.75rem;
}
.section-dark .trust-card h4,
.section-dark .trust-card p {
  color: var(--text);
}
.section-dark .trust-card p {
  color: var(--text-muted);
}
.section-dark .service-category h3 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 5.2vw, 3.5rem);
  letter-spacing: -0.03em;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  line-height: 1.7;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(38, 198, 178, 0.35);
  color: #5eead4;
}
.hero-stats {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.hero-stat strong {
  color: var(--white);
}
.hero-stat strong::after {
  content: '';
}
.hero-stat span {
  color: rgba(255, 255, 255, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white) !important;
}

.section-light .btn-secondary,
.section-light-alt .btn-secondary {
  background: var(--white);
  color: var(--navy-deep) !important;
  border: 1px solid var(--white-muted);
  box-shadow: var(--shadow-sm);
}
.section-light .btn-secondary:hover,
.section-light-alt .btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--navy-deep) !important;
}

/* Metrics on dark */
.section-dark .metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.section-dark .metric-card p {
  color: rgba(255, 255, 255, 0.65);
}

/* Metrics on light — white cards with gold/cyan numbers */
.section-light .metric-card,
.section-light-alt .metric-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border-top: 3px solid #c9a43c;
}
.section-dark .metric-card .value,
.section-dark .metric-card .value span {
  background: linear-gradient(135deg, #26c6b2, #c9a43c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-light .metric-card p,
.section-light-alt .metric-card p {
  color: var(--slate);
}

/* Industries — light grid */
.industry-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
}
.section-light .industry-card,
.section-light-alt .industry-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

/* Testimonials — premium white cards */
.section-light-alt .testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
}
.section-light-alt .testimonial-card blockquote {
  color: var(--slate);
}
.section-light-alt .author-avatar {
  background: linear-gradient(135deg, var(--navy), var(--cyan));
}

/* FAQ on white */
.section-light .faq-item,
.section-light-alt .faq-item {
  border-bottom-color: #e2e8f0;
}
.section-light .faq-question,
.section-light-alt .faq-question {
  color: #0a1628 !important;
}
.section-light .faq-answer p,
.section-light-alt .faq-answer p {
  color: #475569 !important;
}
.section-light-alt .section-title,
.section-light .section-title {
  color: #0a1628;
}

.cta-band {
  background: #0a1628;
  padding: 5.5rem 0;
  border-top: 3px solid #c9a43c;
}
.cta-band .section-title {
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
}
.cta-band .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

/* Footer — deep navy professional */
.footer {
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  margin-top: 0;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
}
.footer h4 {
  color: rgba(255, 255, 255, 0.45);
}
.footer ul a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
.footer-bottom span {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  background: #0a1628;
  padding: calc(var(--nav-bar-h-sticky) + 3.5rem) 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.has-hero-nav:not(.nav-is-sticky) .page-hero {
  padding-top: calc(var(--nav-bar-h-hero) + 2.5rem);
}
.page-hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: unset;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.72);
}

main {
  padding-top: 0;
}

/* Dashboard panel premium */
.hero .dashboard-panel {
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: none;
}
.hero .dashboard-title {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

/* Blog cards light */
.section-light-alt .blog-card {
  overflow: hidden;
}
.section-light-alt .blog-body h3 a {
  color: var(--navy-deep);
}
.section-light-alt .blog-body h3 a:hover {
  color: var(--cyan);
}

.ai-section {
  background: #0a1628 !important;
}

/* Process on light */
.section-light-alt .process-step .step-num {
  background: var(--white);
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}
.section-light-alt .process-step h4 {
  color: var(--navy-deep);
}
.section-light-alt .process-step p {
  color: var(--slate);
}
.section-light-alt .process-timeline::before {
  opacity: 0.25;
}

/* Container WP standard */
.container {
  width: min(1140px, 92vw);
}

.booking-note h4 {
  color: #0a1628;
  margin-bottom: 0.5rem;
}
.booking-note p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Contact & inner pages on white */
.section-light .glass-card:not(.service-card):not(.industry-card) h4,
.section-light-alt .glass-card:not(.service-card):not(.industry-card) h4 {
  color: var(--navy-deep);
}
.section-light .form-group label,
.section-light-alt .form-group label {
  color: var(--slate);
}
.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea,
.section-light-alt .form-group input,
.section-light-alt .form-group select,
.section-light-alt .form-group textarea {
  background: var(--white-soft);
  border-color: #d1dae6;
  color: var(--navy-deep);
}
/* Service tags on white */
.section-light .service-tags span,
.section-light-alt .service-tags span {
  background: rgba(38, 198, 178, 0.12);
  color: #5eead4;
  border: 1px solid rgba(38, 198, 178, 0.28);
  font-weight: 600;
}

/* Clean section joins — no gradient bars or heavy shadows */
.section-light + .section-dark,
.section-light-alt + .section-dark {
  border-top: 2px solid rgba(201, 164, 60, 0.35);
}
.section-dark + .section-light,
.section-dark + .section-light-alt {
  border-top: none;
  box-shadow: none;
}
.section-light::before,
.section-light-alt::before,
.section-dark::before,
.section-light + .section-dark::before,
.section-light-alt + .section-dark::before,
.section-dark + .section-light::before,
.section-dark + .section-light-alt::before {
  display: none !important;
  content: none !important;
}

/* Horizontal wordmark logo (favicon stays logo.png) */
.nav-inner > .nav-logo:has(.logo-full) {
  filter: none;
}
.footer-brand .nav-logo img.logo-full {
  height: 48px;
  max-height: 48px;
  max-width: 260px;
}

/* Founder profile — circular frame with brand rings */
.founder-section {
  padding-bottom: 5rem;
}
.founder-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  max-width: 420px;
  margin: 2rem auto 0;
}
.founder-avatar {
  position: relative;
  width: 232px;
  height: 232px;
  display: grid;
  place-items: center;
}
.founder-avatar__photo {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #f4f4f5;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(201, 164, 60, 0.2);
}
.founder-avatar__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
}
.founder-avatar__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.founder-avatar__ring--outer {
  inset: 0;
  border: 3px solid transparent;
  border-top-color: rgba(201, 164, 60, 0.95);
  border-right-color: rgba(201, 164, 60, 0.35);
  border-bottom-color: rgba(38, 198, 178, 0.45);
  border-left-color: rgba(38, 198, 178, 0.85);
  box-shadow:
    0 0 0 1px rgba(201, 164, 60, 0.15),
    0 0 24px rgba(38, 198, 178, 0.18);
  animation: founder-ring-spin 12s linear infinite;
}
.founder-avatar__ring--mid {
  inset: 10px;
  border: 2px solid transparent;
  border-top-color: rgba(38, 198, 178, 0.75);
  border-right-color: rgba(38, 198, 178, 0.25);
  border-bottom-color: rgba(201, 164, 60, 0.55);
  border-left-color: rgba(201, 164, 60, 0.3);
  animation: founder-ring-spin-rev 9s linear infinite;
}
.founder-avatar__ring--inner {
  inset: 18px;
  border: 2px solid rgba(201, 164, 60, 0.45);
  box-shadow: inset 0 0 12px rgba(38, 198, 178, 0.12);
}
.founder-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.founder-role {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(38, 198, 178, 0.28);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.founder-linkedin svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.founder-linkedin:hover {
  color: #fff;
  background: rgba(38, 198, 178, 0.12);
  border-color: rgba(38, 198, 178, 0.5);
}
@keyframes founder-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes founder-ring-spin-rev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Meeting page — Calendly layout (AdTech.eu style) */
.meeting-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.meeting-benefits {
  list-style: none;
  margin: 1.25rem 0 2rem;
  padding: 0;
}
.meeting-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
}
.meeting-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
}
.meeting-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.meeting-note {
  font-size: 0.9rem;
  color: var(--slate);
}
.meeting-note a {
  color: var(--cyan);
  font-weight: 600;
}
.calendly-panel {
  padding: 1.75rem;
  overflow: hidden;
}
.calendly-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
}
.calendly-panel > p {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Expert application form */
.expertise-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}
.expertise-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--slate-dark);
  cursor: pointer;
}
.expertise-checkboxes input {
  accent-color: var(--cyan);
}

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

@media (max-width: 768px) {
  .trust-strip-inner { gap: 1.25rem 2rem; }
  .trust-logo { font-size: 0.8rem; }
  .section { padding: 4rem 0; }
  .nav-inner > .nav-logo img.logo-full { height: 56px; max-height: 56px; max-width: min(300px, 72vw); }
  .expertise-checkboxes { grid-template-columns: 1fr; }
}
