/* =========================================================
   TransportHub — main stylesheet
   Colour tokens are injected by the Customizer (inc/customizer.php)
   ========================================================= */

:root{
  --th-primary:#1F3C88;
  --th-secondary:#2FB79E;
  --th-accent:#F97316;
  --th-dark:#0B1F3A;
  --th-body:#3C4A5E;
  --th-muted:#6B7A90;
  --th-line:#E4E9F2;
  --th-bg:#FFFFFF;
  --th-bg-soft:#F5F8FC;
  --th-radius:16px;
  --th-radius-sm:10px;
  --th-shadow:0 1px 2px rgba(11,31,58,.05), 0 12px 32px -12px rgba(11,31,58,.18);
  --th-shadow-lg:0 24px 60px -20px rgba(11,31,58,.28);
  --th-max:1200px;
  --th-font:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --th-font-head:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;font-family:var(--th-font);font-size:17px;line-height:1.7;
  color:var(--th-body);background:var(--th-bg);-webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--th-primary);text-decoration:none;transition:color .18s ease;}
a:hover{color:var(--th-secondary);}
h1,h2,h3,h4,h5,h6{
  font-family:var(--th-font-head);color:var(--th-dark);
  margin:0 0 .6em;line-height:1.18;font-weight:800;letter-spacing:-.02em;
}
h1{font-size:clamp(2.1rem,4.6vw,3.6rem);}
h2{font-size:clamp(1.7rem,3.2vw,2.6rem);}
h3{font-size:clamp(1.25rem,2vw,1.6rem);}
h4{font-size:1.16rem;}
p{margin:0 0 1.15em;}
ul,ol{margin:0 0 1.15em;padding-left:1.25em;}
blockquote{
  margin:1.6em 0;padding:1.1em 1.5em;border-left:4px solid var(--th-secondary);
  background:var(--th-bg-soft);border-radius:0 var(--th-radius-sm) var(--th-radius-sm) 0;
  font-size:1.06rem;color:var(--th-dark);
}
code,pre{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.92em;}
pre{background:var(--th-dark);color:#E6EDF7;padding:1.1rem;border-radius:var(--th-radius-sm);overflow:auto;}
table{width:100%;border-collapse:collapse;margin:0 0 1.4em;font-size:.96rem;}
th,td{padding:.8rem 1rem;border:1px solid var(--th-line);text-align:left;}
th{background:var(--th-bg-soft);color:var(--th-dark);font-weight:700;}
hr{border:0;border-top:1px solid var(--th-line);margin:2.5rem 0;}
figure{margin:0 0 1.4em;}
figcaption{font-size:.86rem;color:var(--th-muted);margin-top:.5rem;}

/* --- accessibility --- */
.screen-reader-text{
  border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;width:1px;
  margin:-1px;overflow:hidden;padding:0;position:absolute;word-wrap:normal!important;
}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:9999;background:var(--th-dark);color:#fff;
  padding:.8rem 1.2rem;border-radius:0 0 var(--th-radius-sm) 0;
}
.skip-link:focus{left:0;color:#fff;}
:focus-visible{outline:3px solid var(--th-secondary);outline-offset:2px;border-radius:4px;}

/* --- layout --- */
.th-container{width:100%;max-width:var(--th-max);margin:0 auto;padding:0 24px;}
.th-container--narrow{max-width:820px;}
.th-container--wide{max-width:1400px;}
.th-section{padding:clamp(56px,7vw,104px) 0;}
.th-section--soft{background:var(--th-bg-soft);}
.th-section--dark{background:var(--th-dark);color:#C9D6E8;}
.th-section--dark h1,.th-section--dark h2,.th-section--dark h3,.th-section--dark h4{color:#fff;}
.th-grid{display:grid;gap:28px;}
.th-grid--2{grid-template-columns:repeat(2,1fr);}
.th-grid--3{grid-template-columns:repeat(3,1fr);}
.th-grid--4{grid-template-columns:repeat(4,1fr);}
.th-split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,72px);align-items:center;}
.th-split--flip .th-split__media{order:-1;}

/* --- section headers --- */
.th-eyebrow{
  display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--th-secondary);margin-bottom:.9rem;
}
.th-section__head{max-width:760px;margin:0 auto clamp(36px,4vw,60px);text-align:center;}
.th-section__head--left{margin-left:0;text-align:left;}
.th-section__head p{color:var(--th-muted);font-size:1.06rem;margin-bottom:0;}
.th-section--dark .th-section__head p{color:#9FB3CC;}

/* --- buttons --- */
.th-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.92rem 1.75rem;border-radius:100px;font-weight:700;font-size:.98rem;
  border:2px solid transparent;cursor:pointer;transition:all .2s ease;text-align:center;
  line-height:1.2;
}
.th-btn--primary{background:var(--th-primary);color:#fff;}
.th-btn--primary:hover{background:var(--th-dark);color:#fff;transform:translateY(-2px);box-shadow:var(--th-shadow);}
.th-btn--accent{background:var(--th-accent);color:#fff;}
.th-btn--accent:hover{filter:brightness(.92);color:#fff;transform:translateY(-2px);}
.th-btn--ghost{background:transparent;color:var(--th-primary);border-color:var(--th-line);}
.th-btn--ghost:hover{border-color:var(--th-primary);color:var(--th-primary);background:var(--th-bg-soft);}
.th-btn--light{background:#fff;color:var(--th-dark);}
.th-btn--light:hover{background:var(--th-bg-soft);color:var(--th-dark);}
.th-btn--outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.4);}
.th-btn--outline-light:hover{background:rgba(255,255,255,.12);color:#fff;}
.th-btn--sm{padding:.6rem 1.2rem;font-size:.88rem;}
.th-btn--block{width:100%;}
.th-btn-row{display:flex;flex-wrap:wrap;gap:14px;}

/* --- topbar --- */
.th-topbar{background:var(--th-dark);color:#B9C9DE;font-size:.85rem;}
.th-topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:42px;flex-wrap:wrap;}
.th-topbar a{color:#DCE6F3;}
.th-topbar a:hover{color:var(--th-secondary);}
.th-topbar__left,.th-topbar__right{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.th-topbar__right .th-social{display:flex;gap:12px;}

/* --- header --- */
.th-header{
  position:sticky;top:0;z-index:200;background:#fff;
  border-bottom:1px solid var(--th-line);transition:box-shadow .2s ease;
}
.th-header.is-stuck{box-shadow:0 6px 24px -12px rgba(11,31,58,.3);}
.th-header__inner{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:78px;}
.th-brand{display:flex;align-items:center;gap:12px;flex-shrink:0;}
.th-brand img,.th-brand svg{max-height:52px;width:auto;}
.th-brand__text{font-weight:900;font-size:1.35rem;color:var(--th-dark);letter-spacing:-.03em;}
.th-brand__tag{display:block;font-size:.7rem;font-weight:600;letter-spacing:.12em;color:var(--th-muted);text-transform:uppercase;}

.th-nav{display:flex;align-items:center;gap:6px;}
.th-nav ul{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:4px;}
.th-nav li{position:relative;}
.th-nav a{
  display:block;padding:.6rem .85rem;font-weight:600;font-size:.95rem;color:var(--th-dark);border-radius:8px;
}
.th-nav a:hover,.th-nav .current-menu-item>a,.th-nav .current_page_item>a{color:var(--th-primary);background:var(--th-bg-soft);}
.th-nav .sub-menu{
  position:absolute;top:calc(100% + 8px);left:0;min-width:250px;background:#fff;
  border:1px solid var(--th-line);border-radius:var(--th-radius-sm);box-shadow:var(--th-shadow);
  padding:8px;display:block;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:all .18s ease;flex-direction:column;align-items:stretch;gap:2px;z-index:50;
}
.th-nav li:hover>.sub-menu,.th-nav li:focus-within>.sub-menu{opacity:1;visibility:visible;transform:translateY(0);}
.th-nav .sub-menu .sub-menu{top:-8px;left:100%;}
.th-nav .menu-item-has-children>a::after{content:"";display:inline-block;width:6px;height:6px;margin-left:7px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px);}
.th-header__actions{display:flex;align-items:center;gap:10px;flex-shrink:0;}

.th-burger{
  display:none;width:46px;height:46px;border:1px solid var(--th-line);background:#fff;
  border-radius:10px;cursor:pointer;padding:0;align-items:center;justify-content:center;flex-direction:column;gap:5px;
}
.th-burger span{display:block;width:20px;height:2px;background:var(--th-dark);border-radius:2px;transition:.2s;}
.th-burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.th-burger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.th-burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.th-mobile-nav{display:none;border-top:1px solid var(--th-line);background:#fff;padding:12px 0 22px;}
.th-mobile-nav.is-open{display:block;}
.th-mobile-nav ul{list-style:none;margin:0;padding:0;}
.th-mobile-nav .sub-menu{padding-left:16px;border-left:2px solid var(--th-line);margin:4px 0 8px;}
.th-mobile-nav a{display:block;padding:.7rem .2rem;font-weight:600;color:var(--th-dark);border-bottom:1px solid var(--th-line);}
.th-mobile-nav .th-btn{margin-top:16px;}

/* --- hero --- */
.th-hero{position:relative;overflow:hidden;background:var(--th-dark);color:#D5E1F0;}
.th-hero__bg{position:absolute;inset:0;}
.th-hero__bg img{width:100%;height:100%;object-fit:cover;}
.th-hero__overlay{
  position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(11,31,58,.94) 0%,rgba(11,31,58,.80) 46%,rgba(31,60,136,.55) 100%);
}
.th-hero__inner{position:relative;z-index:2;padding:clamp(64px,9vw,132px) 0;max-width:760px;}
.th-hero h1{color:#fff;margin-bottom:1rem;}
.th-hero__lead{font-size:clamp(1.02rem,1.6vw,1.24rem);color:#C5D5E8;margin-bottom:2rem;max-width:640px;}
.th-hero .th-eyebrow{color:var(--th-secondary);}
.th-hero__points{list-style:none;padding:0;margin:0 0 2rem;display:flex;flex-wrap:wrap;gap:10px 26px;}
.th-hero__points li{position:relative;padding-left:26px;font-size:.96rem;color:#D5E1F0;}
.th-hero__points li::before{
  content:"";position:absolute;left:0;top:.45em;width:14px;height:8px;
  border-left:2px solid var(--th-secondary);border-bottom:2px solid var(--th-secondary);transform:rotate(-45deg);
}
.th-hero--page{padding:0;}
.th-hero--page .th-hero__inner{padding:clamp(48px,6vw,88px) 0;}

/* --- stats --- */
.th-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:var(--th-line);border-radius:var(--th-radius);overflow:hidden;}
.th-stats__item{background:#fff;padding:28px 22px;text-align:center;}
.th-stats__num{display:block;font-size:clamp(1.8rem,3vw,2.5rem);font-weight:900;color:var(--th-primary);letter-spacing:-.03em;line-height:1.1;}
.th-stats__label{display:block;font-size:.82rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--th-muted);margin-top:.45rem;}
.th-stats--onhero{margin-top:-56px;position:relative;z-index:5;box-shadow:var(--th-shadow-lg);}
.th-section--dark .th-stats{background:rgba(255,255,255,.1);}
.th-section--dark .th-stats__item{background:rgba(255,255,255,.04);}
.th-section--dark .th-stats__num{color:var(--th-secondary);}

/* --- service chooser (the 4 modules) --- */
.th-chooser__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.th-service-card{
  position:relative;display:flex;flex-direction:column;background:#fff;border:1px solid var(--th-line);
  border-radius:var(--th-radius);overflow:hidden;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  height:100%;
}
.th-service-card:hover{transform:translateY(-6px);box-shadow:var(--th-shadow-lg);border-color:transparent;}
.th-service-card__media{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--th-bg-soft);}
.th-service-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.th-service-card:hover .th-service-card__media img{transform:scale(1.05);}
.th-service-card__badge{
  position:absolute;left:14px;top:14px;background:rgba(255,255,255,.94);color:var(--th-dark);
  font-size:.7rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;padding:.35rem .7rem;border-radius:100px;
}
.th-service-card__body{padding:24px;display:flex;flex-direction:column;flex:1;}
.th-service-card__icon{
  width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:var(--th-bg-soft);color:var(--th-primary);margin-bottom:14px;flex-shrink:0;
}
.th-service-card__icon svg{width:26px;height:26px;}
.th-service-card h3{font-size:1.22rem;margin-bottom:.45rem;}
.th-service-card p{font-size:.95rem;color:var(--th-muted);margin-bottom:1rem;}
.th-service-card__list{list-style:none;padding:0;margin:0 0 1.2rem;font-size:.9rem;}
.th-service-card__list li{position:relative;padding-left:20px;margin-bottom:.4rem;color:var(--th-body);}
.th-service-card__list li::before{content:"";position:absolute;left:0;top:.5em;width:10px;height:6px;border-left:2px solid var(--th-secondary);border-bottom:2px solid var(--th-secondary);transform:rotate(-45deg);}
.th-service-card__cta{margin-top:auto;}
.th-service-card__strip{height:5px;background:var(--th-primary);}

/* --- how it works --- */
.th-steps{counter-reset:step;display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.th-step{position:relative;padding:32px 26px;background:#fff;border:1px solid var(--th-line);border-radius:var(--th-radius);}
.th-step__num{
  display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;
  background:var(--th-primary);color:#fff;font-weight:800;font-size:1.05rem;margin-bottom:1rem;
}
.th-step h3{font-size:1.12rem;}
.th-step p{font-size:.95rem;color:var(--th-muted);margin:0;}
.th-section--dark .th-step{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.12);}
.th-section--dark .th-step p{color:#9FB3CC;}

/* --- feature grid --- */
.th-feature{padding:28px;background:#fff;border:1px solid var(--th-line);border-radius:var(--th-radius);height:100%;}
.th-feature__icon{width:48px;height:48px;border-radius:12px;background:var(--th-bg-soft);color:var(--th-primary);display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.th-feature__icon svg{width:26px;height:26px;}
.th-feature h3{font-size:1.1rem;margin-bottom:.4rem;}
.th-feature p{font-size:.94rem;color:var(--th-muted);margin:0;}

/* --- GEO / AEO key facts panel --- */
.th-keyfacts{
  border:1px solid var(--th-line);border-left:5px solid var(--th-secondary);
  background:var(--th-bg-soft);border-radius:var(--th-radius);padding:28px 30px;
}
.th-keyfacts h2,.th-keyfacts h3{font-size:1.12rem;margin-bottom:1rem;}
.th-keyfacts dl{margin:0;display:grid;grid-template-columns:auto 1fr;gap:.55rem 1.4rem;font-size:.95rem;}
.th-keyfacts dt{font-weight:700;color:var(--th-dark);}
.th-keyfacts dd{margin:0;color:var(--th-body);}
.th-answer-box{
  background:#fff;border:1px solid var(--th-line);border-radius:var(--th-radius);
  padding:26px 30px;box-shadow:var(--th-shadow);
}
.th-answer-box__label{font-size:.74rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--th-secondary);display:block;margin-bottom:.6rem;}
.th-answer-box p{font-size:1.05rem;color:var(--th-dark);margin:0;}

/* --- FAQ / accordion (AEO) --- */
.th-faq{max-width:860px;margin:0 auto;}
.th-faq__item{border:1px solid var(--th-line);border-radius:var(--th-radius-sm);background:#fff;margin-bottom:12px;overflow:hidden;}
.th-faq__q{
  width:100%;display:flex;align-items:flex-start;justify-content:space-between;gap:18px;
  padding:20px 24px;background:none;border:0;cursor:pointer;text-align:left;
  font-family:inherit;font-size:1.04rem;font-weight:700;color:var(--th-dark);line-height:1.4;
}
.th-faq__q:hover{background:var(--th-bg-soft);}
.th-faq__icon{flex-shrink:0;width:22px;height:22px;position:relative;margin-top:3px;}
.th-faq__icon::before,.th-faq__icon::after{content:"";position:absolute;background:var(--th-secondary);border-radius:2px;transition:transform .22s ease;}
.th-faq__icon::before{left:0;top:10px;width:22px;height:2px;}
.th-faq__icon::after{left:10px;top:0;width:2px;height:22px;}
.th-faq__q[aria-expanded="true"] .th-faq__icon::after{transform:scaleY(0);}
.th-faq__a{padding:0 24px 22px;color:var(--th-body);font-size:.99rem;}
.th-faq__a[hidden]{display:none;}
.th-faq__a p:last-child{margin-bottom:0;}

/* --- testimonials --- */
.th-testimonial{background:#fff;border:1px solid var(--th-line);border-radius:var(--th-radius);padding:28px;height:100%;display:flex;flex-direction:column;}
.th-testimonial__stars{color:#F5A623;letter-spacing:2px;margin-bottom:12px;font-size:1rem;}
.th-testimonial blockquote{margin:0 0 18px;padding:0;border:0;background:none;font-size:1rem;color:var(--th-dark);}
.th-testimonial__who{display:flex;align-items:center;gap:12px;margin-top:auto;}
.th-testimonial__who img{width:46px;height:46px;border-radius:50%;object-fit:cover;}
.th-testimonial__name{font-weight:700;color:var(--th-dark);font-size:.95rem;line-height:1.3;}
.th-testimonial__role{font-size:.84rem;color:var(--th-muted);}

/* --- partners --- */
.th-partners{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;align-items:center;}
.th-partners img{opacity:.65;transition:opacity .2s ease;margin:0 auto;max-height:64px;width:auto;}
.th-partners img:hover{opacity:1;}

/* --- quote / lead form --- */
.th-quote-form{background:#fff;border:1px solid var(--th-line);border-radius:var(--th-radius);padding:clamp(24px,3vw,36px);box-shadow:var(--th-shadow);}
.th-quote-form h3{margin-bottom:.35rem;}
.th-quote-form__sub{font-size:.94rem;color:var(--th-muted);margin-bottom:1.4rem;}
.th-field{margin-bottom:16px;}
.th-field label{display:block;font-size:.85rem;font-weight:700;color:var(--th-dark);margin-bottom:.4rem;}
.th-field input,.th-field select,.th-field textarea,
input[type=text],input[type=email],input[type=tel],input[type=url],input[type=search],input[type=number],input[type=password],select,textarea{
  width:100%;padding:.8rem 1rem;border:1px solid var(--th-line);border-radius:var(--th-radius-sm);
  font-family:inherit;font-size:.97rem;color:var(--th-dark);background:#fff;transition:border-color .18s ease,box-shadow .18s ease;
}
.th-field input:focus,.th-field select:focus,.th-field textarea:focus,
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--th-primary);box-shadow:0 0 0 3px rgba(31,60,136,.12);}
.th-field--row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.th-form-note{font-size:.82rem;color:var(--th-muted);margin-top:.9rem;}
.th-notice{padding:14px 18px;border-radius:var(--th-radius-sm);margin-bottom:18px;font-size:.94rem;}
.th-notice--ok{background:#E8F7F2;color:#0F7B6C;border:1px solid #B7E6D9;}
.th-notice--err{background:#FDECEC;color:#B42318;border:1px solid #F6C9C6;}

/* --- CTA band --- */
.th-cta-band{
  background:linear-gradient(120deg,var(--th-primary) 0%,var(--th-dark) 100%);
  color:#D9E4F2;border-radius:var(--th-radius);padding:clamp(36px,5vw,64px);
  display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;
}
.th-cta-band h2{color:#fff;margin-bottom:.5rem;}
.th-cta-band p{margin:0;max-width:560px;color:#B9CBE2;}

/* --- breadcrumbs --- */
.th-breadcrumbs{font-size:.85rem;color:var(--th-muted);padding:14px 0;}
.th-breadcrumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:.4rem;margin:0;padding:0;}
.th-breadcrumbs li+li::before{content:"/";margin-right:.4rem;color:var(--th-line);}
.th-hero .th-breadcrumbs,.th-hero .th-breadcrumbs a{color:#A9BFD9;}
.th-hero .th-breadcrumbs a:hover{color:#fff;}

/* --- blog --- */
.th-post-card{background:#fff;border:1px solid var(--th-line);border-radius:var(--th-radius);overflow:hidden;display:flex;flex-direction:column;height:100%;transition:transform .2s ease,box-shadow .2s ease;}
.th-post-card:hover{transform:translateY(-4px);box-shadow:var(--th-shadow);}
.th-post-card__media{aspect-ratio:16/10;overflow:hidden;background:var(--th-bg-soft);}
.th-post-card__media img{width:100%;height:100%;object-fit:cover;}
.th-post-card__body{padding:22px;display:flex;flex-direction:column;flex:1;}
.th-post-card__meta{font-size:.8rem;color:var(--th-muted);text-transform:uppercase;letter-spacing:.07em;font-weight:700;margin-bottom:.5rem;}
.th-post-card h3{font-size:1.14rem;margin-bottom:.5rem;}
.th-post-card h3 a{color:var(--th-dark);}
.th-post-card h3 a:hover{color:var(--th-primary);}
.th-post-card p{font-size:.94rem;color:var(--th-muted);}
.th-post-card__more{margin-top:auto;font-weight:700;font-size:.9rem;}

.th-entry{max-width:800px;}
.th-entry__meta{font-size:.9rem;color:var(--th-muted);margin-bottom:1.6rem;}
.th-entry img{border-radius:var(--th-radius);}
.th-entry .wp-caption{max-width:100%;}
.th-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:clamp(32px,4vw,60px);align-items:start;}
.th-sidebar .widget{background:#fff;border:1px solid var(--th-line);border-radius:var(--th-radius);padding:24px;margin-bottom:24px;}
.th-sidebar .widget-title{font-size:1.02rem;margin-bottom:1rem;}
.th-sidebar ul{list-style:none;padding:0;margin:0;}
.th-sidebar li{padding:.4rem 0;border-bottom:1px solid var(--th-line);font-size:.94rem;}
.th-sidebar li:last-child{border-bottom:0;}

.th-pagination{display:flex;gap:8px;justify-content:center;margin-top:44px;flex-wrap:wrap;}
.th-pagination .page-numbers{
  display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:44px;padding:0 12px;
  border:1px solid var(--th-line);border-radius:10px;font-weight:700;font-size:.94rem;color:var(--th-dark);background:#fff;
}
.th-pagination .page-numbers.current,.th-pagination .page-numbers:hover{background:var(--th-primary);color:#fff;border-color:var(--th-primary);}

/* --- tabs (industries) --- */
.th-tabs__nav{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-bottom:32px;}
.th-tabs__btn{
  padding:.65rem 1.3rem;border-radius:100px;border:1px solid var(--th-line);background:#fff;
  font-family:inherit;font-weight:700;font-size:.92rem;color:var(--th-dark);cursor:pointer;transition:.18s;
}
.th-tabs__btn[aria-selected="true"]{background:var(--th-primary);color:#fff;border-color:var(--th-primary);}
.th-tabs__panel[hidden]{display:none;}

/* --- footer --- */
.th-footer{background:var(--th-dark);color:#9FB3CC;padding-top:clamp(48px,6vw,80px);font-size:.95rem;}
.th-footer h4{color:#fff;font-size:.95rem;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1.1rem;}
.th-footer a{color:#C3D3E6;}
.th-footer a:hover{color:var(--th-secondary);}
.th-footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1.4fr;gap:36px;padding-bottom:48px;}
.th-footer ul{list-style:none;padding:0;margin:0;}
.th-footer li{margin-bottom:.6rem;}
.th-footer__brand img{max-height:56px;margin-bottom:18px;}
.th-footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding:22px 0;display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;font-size:.87rem;}
.th-footer__bottom ul{display:flex;gap:20px;flex-wrap:wrap;}
.th-social{display:flex;gap:12px;}
.th-social a{
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;color:#DCE6F3;
}
.th-social a:hover{background:var(--th-secondary);color:#fff;}
.th-social svg{width:17px;height:17px;fill:currentColor;}
.th-newsletter{display:flex;gap:8px;margin-top:14px;}
.th-newsletter input{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.15);color:#fff;}
.th-newsletter input::placeholder{color:#8FA6C2;}

/* --- 404 / empty --- */
.th-empty{text-align:center;padding:clamp(48px,8vw,110px) 0;}
.th-empty__code{font-size:clamp(4rem,14vw,10rem);font-weight:900;line-height:1;color:var(--th-bg-soft);letter-spacing:-.05em;}

/* --- utilities --- */
.th-mb-0{margin-bottom:0!important;}
.th-mt-3{margin-top:24px;}
.th-text-center{text-align:center;}
.alignwide{max-width:1200px;margin-left:auto;margin-right:auto;}
.alignfull{max-width:100%;}
.aligncenter{margin-left:auto;margin-right:auto;}
.alignleft{float:left;margin:0 1.5em 1em 0;}
.alignright{float:right;margin:0 0 1em 1.5em;}
.js .th-reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.js .th-reveal.is-visible{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){
  .js .th-reveal,.js .th-reveal.is-visible{opacity:1;transform:none;transition:none;}
  *{scroll-behavior:auto!important;}
}

/* --- responsive --- */
@media (max-width:1080px){
  .th-chooser__grid{grid-template-columns:repeat(2,1fr);}
  .th-footer__grid{grid-template-columns:1fr 1fr 1fr;}
  .th-layout{grid-template-columns:1fr;}
}
@media (max-width:960px){
  .th-nav,.th-header__actions .th-btn--ghost{display:none;}
  .th-burger{display:flex;}
  .th-grid--4{grid-template-columns:repeat(2,1fr);}
  .th-grid--3{grid-template-columns:repeat(2,1fr);}
  .th-steps{grid-template-columns:1fr;}
  .th-split{grid-template-columns:1fr;}
  .th-split--flip .th-split__media{order:0;}
  .th-partners{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:680px){
  body{font-size:16px;}
  .th-container{padding:0 18px;}
  .th-stats{grid-template-columns:repeat(2,1fr);}
  .th-stats--onhero{margin-top:0;}
  .th-chooser__grid,.th-grid--2,.th-grid--3,.th-grid--4{grid-template-columns:1fr;}
  .th-partners{grid-template-columns:repeat(2,1fr);}
  .th-footer__grid{grid-template-columns:1fr;gap:28px;}
  .th-field--row{grid-template-columns:1fr;}
  .th-cta-band{flex-direction:column;align-items:flex-start;}
  .th-topbar__left{display:none;}
}

/* --- print --- */
@media print{
  .th-header,.th-footer,.th-topbar,.th-cta-band,.th-burger{display:none!important;}
  body{font-size:12pt;color:#000;}
}

/* =========================================================
   Platform Entry Gate — first thing a visitor sees
   ========================================================= */
.th-gate{
  position:fixed;inset:0;z-index:9000;background:rgba(11,31,58,.97);
  display:flex;align-items:center;justify-content:center;padding:24px;overflow-y:auto;
  opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;
}
.th-gate.is-open{opacity:1;visibility:visible;}
.th-gate__inner{width:100%;max-width:1080px;text-align:center;color:#C9D6E8;}
.th-gate__logo{max-height:56px;width:auto;margin:0 auto 26px;}
.th-gate h2{color:#fff;margin-bottom:.5rem;font-size:clamp(1.6rem,3.4vw,2.5rem);}
.th-gate__sub{color:#9FB3CC;margin-bottom:34px;font-size:1.02rem;}
.th-gate__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:26px;}
.th-gate__card{
  display:flex;flex-direction:column;align-items:center;gap:10px;padding:26px 18px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  border-radius:var(--th-radius);color:#fff;transition:.2s;text-align:center;
}
.th-gate__card:hover{background:rgba(255,255,255,.13);transform:translateY(-4px);color:#fff;border-color:var(--th-secondary);}
.th-gate__card svg{width:34px;height:34px;}
.th-gate__card strong{font-size:1.02rem;font-weight:800;letter-spacing:-.01em;}
.th-gate__card span{font-size:.85rem;color:#A8BCD6;line-height:1.45;}
.th-gate__skip{background:none;border:0;color:#8FA6C2;font-family:inherit;font-size:.9rem;cursor:pointer;text-decoration:underline;}
.th-gate__skip:hover{color:#fff;}
@media (max-width:900px){.th-gate__grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.th-gate__grid{grid-template-columns:1fr;}.th-gate__card{flex-direction:row;text-align:left;align-items:flex-start;}}

/* --- inline chooser (top of homepage) --- */
.th-chooser{position:relative;}
.th-chooser--hero{background:var(--th-bg-soft);}
.th-chooser__lead{max-width:720px;margin:0 auto 42px;text-align:center;}
.th-chooser__lead h2 span{color:var(--th-primary);}
.th-chooser__switch{
  display:inline-flex;background:#fff;border:1px solid var(--th-line);border-radius:100px;padding:5px;gap:4px;margin-bottom:34px;
}
.th-chooser__switch button{
  border:0;background:none;font-family:inherit;font-weight:700;font-size:.9rem;color:var(--th-muted);
  padding:.55rem 1.25rem;border-radius:100px;cursor:pointer;transition:.18s;
}
.th-chooser__switch button[aria-selected="true"]{background:var(--th-primary);color:#fff;}

/* --- mini meta list (jobs, events, coverage) --- */
.th-minimeta{display:grid;grid-template-columns:auto 1fr;gap:.3rem 1rem;font-size:.86rem;margin:0 0 .9rem;}
.th-minimeta dt{font-weight:700;color:var(--th-muted);}
.th-minimeta dd{margin:0;color:var(--th-dark);}

/* --- coverage checker --- */
.th-checker{display:flex;gap:10px;max-width:520px;margin:0 auto 18px;}
.th-checker input{flex:1;}
.th-checker__result{max-width:520px;margin:0 auto;}

/* --- tracking form --- */
.th-track{max-width:560px;margin:0 auto;}
.th-track__steps{display:grid;gap:0;margin-top:28px;}
.th-track__step{display:flex;gap:16px;padding:16px 0;border-bottom:1px solid var(--th-line);}
.th-track__dot{width:14px;height:14px;border-radius:50%;background:var(--th-line);flex-shrink:0;margin-top:5px;}
.th-track__step.is-done .th-track__dot{background:var(--th-secondary);}
.th-track__step h4{margin:0 0 .2rem;font-size:1rem;}
.th-track__step p{margin:0;font-size:.88rem;color:var(--th-muted);}

/* --- sitemap --- */
.th-sitemap{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;}
.th-sitemap h3{font-size:1.02rem;border-bottom:1px solid var(--th-line);padding-bottom:.5rem;}
.th-sitemap ul{list-style:none;padding:0;}
.th-sitemap li{padding:.3rem 0;font-size:.94rem;}
@media (max-width:900px){.th-sitemap{grid-template-columns:1fr 1fr;}}
@media (max-width:600px){.th-sitemap{grid-template-columns:1fr;}}
