/* ================================================================
   ROAMING SIM THEME - main.css
   Palette: Navy #1b2d42 | Orange #e87020
   Fonts:   Montserrat (headings) | Open Sans (body)
================================================================ */

/* ---- RESET & ROOT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem; line-height: 1.75;
  color: #2d3748; background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: #e87020; text-decoration: none; }
a:hover { color: #c95e18; text-decoration: underline; }
ul, ol { padding-left: 1.4rem; }

/* ---- CSS VARIABLES ---- */
:root {
  --navy:        #1b2d42;
  --navy-deep:   #131f2e;
  --navy-mid:    #243550;
  --navy-light:  #2e4265;
  --orange:      #e87020;
  --orange-dark: #c95e18;
  --orange-pale: #fdf0e6;
  --off-white:   #f8fafc;
  --grey-pale:   #f1f4f8;
  --grey-border: #dde3ec;
  --text-body:   #2d3748;
  --text-muted:  #5a6a80;
  --text-hint:   #94a3b8;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 2px 16px rgba(27,45,66,.08);
  --shadow-lg:   0 8px 36px rgba(27,45,66,.14);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15; color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
p  { color: var(--text-body); margin-bottom: .5rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); }
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin: 2rem 0 .75rem; }
.entry-content p,
.entry-content ul,
.entry-content ol { margin-bottom: 1.1rem; }
.entry-content ul,
.entry-content ol { padding-left: 1.4rem; }
.entry-content li { color: var(--text-muted); margin-bottom: .35rem; }
.entry-content blockquote {
  border-left: 3px solid var(--orange); margin: 1.5rem 0;
  padding: .75rem 1.25rem; background: var(--orange-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.entry-content blockquote p { color: var(--navy); font-style: italic; }
.entry-content a { color: var(--orange); }
.entry-content a:hover { color: var(--orange-dark); }
.entry-content code {
  font-family: 'Courier New', monospace; font-size: .9em;
  background: var(--grey-pale); padding: 2px 6px; border-radius: 4px;
}
.entry-content pre {
  background: var(--navy); color: rgba(255,255,255,.85);
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  overflow-x: auto; margin: 1.5rem 0; font-size: .9rem;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th { background: var(--navy); color: #fff; padding: 10px 14px; font-family: 'Montserrat', sans-serif; font-size: 13px; text-align: left; }
.entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--grey-border); font-size: 14px; color: var(--text-muted); }
.entry-content tr:nth-child(even) td { background: var(--grey-pale); }

/* ---- LAYOUT ---- */
.container  { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-dark { background: var(--navy); }
.section-grey { background: var(--grey-pale); }
.section-divider { height: 3px; background: linear-gradient(90deg, var(--orange), transparent); }
.section-header           { margin-bottom: 48px; }
.section-header .label    { margin-bottom: 14px; }
.section-header h2        { margin-bottom: 14px; }
.section-header p         { max-width: 560px; color: var(--text-muted); font-size: 1.05rem; }
.section-header.center    { text-align: center; }
.section-header.center p  { margin: 0 auto; }

/* ---- SKIP LINK ---- */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 6px; top: 6px; background: var(--orange); color: #fff; padding: 6px 12px; border-radius: var(--radius); z-index: 9999; }

/* ---- LABELS / BADGES ---- */
.label {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 4px;
}
.label-orange { background: var(--orange-pale); color: var(--orange-dark); }
.label-navy   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.label-white  { background: rgba(255,255,255,.15); color: #fff; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: .02em; cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: all .18s ease; line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--grey-border); }
.btn-outline-navy:hover { border-color: var(--orange); color: var(--orange); }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: 64px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.site-logo img { height: 38px; width: auto; }
.site-logo .logo-text-fallback {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: #fff;
}

/* ---- PRIMARY NAV ---- */
.nav-list { list-style: none; display: flex; align-items: center; gap: 2px; padding: 0; margin: 0; }
.nav-list li { position: relative; }
.nav-link {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.75); text-decoration: none;
  padding: 7px 13px; border-radius: 5px; display: block; transition: all .15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); text-decoration: none; }
.nav-link.has-drop::after { content: ' ▾'; font-size: 10px; opacity: .5; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 8px 0; min-width: 200px;
  box-shadow: var(--shadow-lg); z-index: 300; list-style: none;
}
.nav-list li:hover > .sub-menu { display: block; }
.sub-link {
  font-size: 13px; color: rgba(255,255,255,.7); padding: 8px 16px;
  display: block; transition: color .15s;
}
.sub-link:hover { color: var(--orange); text-decoration: none; }
.nav-cta { margin-left: 8px; }

/* ---- MOBILE NAV TOGGLE ---- */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  background: var(--navy); padding: 120px 0 80px;
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(232,112,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,112,32,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero::after {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 520px; height: 520px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(232,112,32,.12) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 64px; align-items: center;
}
.hero-label { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-live {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: blink 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-label-text {
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.6); margin-bottom: 34px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.15);
  padding: 4px 12px; border-radius: 20px; letter-spacing: .04em;
  transition: all .15s; text-decoration: none;
}
.hero-pill:hover {
  color: var(--orange); border-color: var(--orange);
  background: rgba(232,112,32,.08); text-decoration: none;
}

/* ---- HERO WIDGET ---- */
.hero-widget {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden;
}
.widget-titlebar {
  background: var(--navy-deep); padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.widget-title { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.widget-status { display: flex; align-items: center; gap: 6px; font-family: 'Montserrat', sans-serif; font-size: 11px; color: #22c55e; font-weight: 600; }
.widget-body { padding: 18px; }
.sim-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.sim-row:last-child { border-bottom: none; padding-bottom: 0; }
.sim-name { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 500; font-family: 'Montserrat', sans-serif; }
.sim-iccid { font-size: 10px; color: rgba(255,255,255,.3); font-family: monospace; margin-top: 2px; }
.sim-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.netbadge { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 3px; }
.nb-ee    { background: rgba(59,130,246,.2); color: #7dd3fc; }
.nb-vf    { background: rgba(220,38,38,.2);  color: #fca5a5; }
.nb-o2    { background: rgba(99,102,241,.2); color: #c7d2fe; }
.nb-3     { background: rgba(139,92,246,.2); color: #ddd6fe; }
.nb-multi { background: rgba(232,112,32,.2); color: #fdba74; }
.bars { display: flex; gap: 2px; align-items: flex-end; }
.bar { width: 4px; border-radius: 2px; }
.bar.on  { background: var(--orange); }
.bar.off { background: rgba(255,255,255,.1); }
.widget-footer {
  border-top: 1px solid rgba(255,255,255,.07); padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,.15);
}
.widget-meta-label { font-size: 10px; color: rgba(255,255,255,.3); font-family: 'Montserrat', sans-serif; margin-bottom: 4px; }
.ip-tag { font-family: monospace; font-size: 11px; color: var(--orange); background: rgba(232,112,32,.1); border: 1px solid rgba(232,112,32,.25); padding: 3px 9px; border-radius: 4px; }
.widget-meta { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,.3); text-align: right; }
.widget-meta span { display: block; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600; }
.widget-router { border-top: 1px solid rgba(255,255,255,.07); padding: 14px 18px; display: flex; align-items: center; gap: 14px; }
.widget-router img { width: 68px; height: auto; border-radius: 6px; background: rgba(255,255,255,.04); padding: 3px; }
.widget-router-info strong { display: block; font-size: 13px; color: rgba(255,255,255,.8); font-family: 'Montserrat', sans-serif; font-weight: 600; }
.widget-router-info span { font-size: 11px; color: rgba(255,255,255,.35); }
.widget-router a { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: var(--orange); text-decoration: none; margin-left: auto; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--grey-border); }
.trust-list { display: flex; flex-wrap: wrap; align-items: center; padding: 0; margin: 0; list-style: none; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 18px 28px 18px 0; font-size: 13px; font-weight: 600; font-family: 'Montserrat', sans-serif; color: var(--navy); border-right: 1px solid var(--grey-border); margin-right: 28px; }
.trust-item:last-child { border-right: none; margin-right: 0; }
.trust-ico { width: 28px; height: 28px; border-radius: 6px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-ico svg { width: 14px; height: 14px; }

/* ---- HUB GRID ---- */
.hub-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.hub-card {
  border: 1.5px solid var(--grey-border); border-radius: var(--radius-lg);
  padding: 24px 20px; text-decoration: none; color: inherit;
  transition: all .2s; display: flex; flex-direction: column; background: #fff;
}
.hub-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.hub-card.featured { border-color: var(--orange); background: var(--orange-pale); }
.hub-card.featured .hub-icon { background: var(--orange); }
.hub-card.featured h4 { color: var(--orange-dark); }
.hub-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; flex-shrink: 0; }
.hub-icon svg { width: 22px; height: 22px; }
.hub-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; line-height: 1.3; }
.hub-card p  { font-size: 13px; color: var(--text-muted); flex: 1; }
.hub-arrow   { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: var(--orange); margin-top: 12px; }

/* ---- NETWORKS ---- */
.network-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.net-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }
.net-name { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.net-name.ee { color: #7dd3fc; }
.net-name.vf { color: #fca5a5; }
.net-name.o2 { color: #c7d2fe; }
.net-name.th { color: #ddd6fe; }
.net-operator { font-size: 13px; color: rgba(255,255,255,.5); }
.net-cov { font-size: 12px; color: rgba(255,255,255,.35); font-family: 'Montserrat', sans-serif; margin-top: 8px; }
.net-bar  { height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 10px; }
.net-fill { height: 100%; border-radius: 2px; background: var(--orange); }

/* ---- TOPIC SECTIONS ---- */
.topic-section { border-top: 3px solid var(--grey-border); padding: 64px 0; }
.topic-section:nth-child(even) { background: var(--grey-pale); }
.topic-inner { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.topic-content h3 { margin-bottom: 14px; }
.topic-content .orange { color: var(--orange); }
.topic-content p  { margin-bottom: 16px; color: var(--text-muted); }
.topic-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.topic-tag  { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; color: var(--orange-dark); background: var(--orange-pale); padding: 3px 10px; border-radius: 4px; letter-spacing: .04em; }

/* ---- TOPIC META CARD ---- */
.topic-meta { background: var(--navy); border-radius: var(--radius-lg); padding: 24px; color: rgba(255,255,255,.7); font-size: 14px; }
.topic-meta h5 { color: rgba(255,255,255,.4); margin-bottom: 14px; }
.meta-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.meta-row:last-child { border-bottom: none; }
.meta-key { color: rgba(255,255,255,.4); font-size: 12px; font-family: 'Montserrat', sans-serif; }
.meta-val { font-family: monospace; font-size: 12px; color: rgba(255,255,255,.7); text-align: right; }
.meta-val.hi { color: var(--orange); }
.also-see { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.also-see span { font-size: 11px; color: rgba(255,255,255,.3); font-family: 'Montserrat', sans-serif; display: block; margin-bottom: 8px; }
.also-see a { font-size: 13px; color: var(--orange); display: block; margin-bottom: 4px; }
.also-see a:hover { color: #fff; text-decoration: none; }

/* ---- VIS CARD (fixed-ip) ---- */
.vis-card { background: var(--navy); border-radius: var(--radius-lg); padding: 24px; border: 1px solid rgba(255,255,255,.08); }
.vis-section-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 10px; }
.vis-card-inner { background: var(--navy-mid); border-radius: var(--radius); padding: 16px; border: 1px solid rgba(255,255,255,.08); margin-bottom: 16px; }
.vis-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.vis-row:last-child { border-bottom: none; }
.vis-label { font-family: 'Montserrat', sans-serif; font-size: 11px; color: rgba(255,255,255,.4); }
.vis-value { font-family: monospace; font-size: 12px; color: rgba(255,255,255,.7); }
.vis-value.orange { color: var(--orange); }

/* ---- PRICING ---- */
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card { background: #fff; border: 2px solid var(--grey-border); border-radius: var(--radius-lg); padding: 32px; position: relative; transition: all .2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--orange); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-tier   { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.price-amount { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-period { font-size: 12px; color: var(--text-hint); font-family: 'Montserrat', sans-serif; margin-top: 4px; }
.price-data   { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--orange-dark); background: var(--orange-pale); padding: 5px 13px; border-radius: 5px; margin: 14px 0; }
.price-features { list-style: none; margin: 16px 0 24px; padding: 0; }
.price-features li { font-size: 14px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--grey-border); display: flex; align-items: center; gap: 10px; }
.price-features li:last-child { border-bottom: none; }
.check { flex-shrink: 0; }
.check svg { width: 15px; height: 15px; display: block; }

/* ---- APPLICATIONS ---- */
.app-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.app-card { display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 18px; text-decoration: none; color: inherit; transition: all .18s; }
.app-card:hover { border-color: var(--orange); background: var(--orange-pale); text-decoration: none; }
.app-card-all { border-style: dashed; justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 8px; }
.app-ico { width: 38px; height: 38px; border-radius: 9px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-ico svg { width: 18px; height: 18px; }
.app-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.app-card p  { font-size: 13px; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 24px; }
.faq-q { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; padding-left: 14px; border-left: 3px solid var(--orange); }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.faq-a strong { color: var(--navy); }
.faq-a a { color: var(--orange); }

/* ---- BLOG GRID ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { border: 1px solid var(--grey-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: all .2s; }
.blog-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.blog-card-link { display: block; text-decoration: none; }
.blog-thumb { height: 190px; overflow: hidden; background: var(--navy); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.03); }
.blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-cat  { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-dark); background: var(--orange-pale); padding: 2px 8px; border-radius: 3px; text-decoration: none; }
.blog-date { font-size: 12px; color: var(--text-hint); }
.blog-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card h4 a { color: var(--navy); text-decoration: none; }
.blog-card h4 a:hover { color: var(--orange); }
.blog-card p  { font-size: 13px; color: var(--text-muted); flex: 1; margin-bottom: 14px; }
.blog-read    { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--orange); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--navy); padding: 80px 0; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,.55); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions  { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--navy); padding: 100px 0 52px; }
.page-hero-inner h1 { color: #fff; margin-top: 14px; }
.breadcrumbs { font-size: 13px; color: rgba(255,255,255,.4); }
.breadcrumbs a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { margin: 0 6px; }
.page-content-inner { max-width: 820px; }

/* ---- SINGLE POST ---- */
.post-hero { background: var(--navy); padding: 100px 0 52px; }
.post-hero-inner h1 { color: #fff; margin: 14px 0 16px; }
.post-meta-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.post-cat   { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange-dark); background: var(--orange-pale); padding: 3px 10px; border-radius: 4px; text-decoration: none; }
.post-date, .post-read { font-size: 13px; color: rgba(255,255,255,.5); }
.post-excerpt { font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 660px; }
.post-featured-img { padding: 0 0 0; }
.post-featured-img .container { padding-top: 0; }
.post-thumb { width: 100%; max-height: 480px; object-fit: cover; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.post-grid { display: grid; grid-template-columns: 1fr 280px; gap: 48px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--grey-border); }

/* ---- SIDEBAR ---- */
.sidebar-widget { background: var(--grey-pale); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; }
.sidebar-widget .widget-title { color: var(--navy); margin-bottom: 14px; font-size: .8rem; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a { font-size: 14px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--grey-border); }
.sidebar-nav a:hover { color: var(--orange); text-decoration: none; }
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-cta { background: var(--navy); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 24px; }
.sidebar-cta h5 { color: rgba(255,255,255,.5); margin-bottom: 8px; }
.sidebar-cta p  { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px; }

/* ---- ARCHIVE ---- */
.archive-desc { font-size: 1.05rem; color: rgba(255,255,255,.5); margin-top: 10px; }
.pagination-wrap { margin-top: 48px; text-align: center; }
.pagination-wrap .nav-links { display: flex; justify-content: center; gap: 8px; }
.pagination-wrap .page-numbers { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: var(--radius); border: 2px solid var(--grey-border); color: var(--navy); text-decoration: none; transition: all .15s; }
.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---- RELATED POSTS ---- */
.related-posts { padding: 52px 0; }
.related-posts h3 { margin-bottom: 32px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy-deep); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-logo .logo-text-fallback { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; display: block; margin-bottom: 14px; }
.footer-about { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 260px; }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { padding: 0; }
.footer-nav-list a { display: block; font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; padding: 3px 0; transition: color .15s; }
.footer-nav-list a:hover { color: var(--orange); text-decoration: none; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; padding: 3px 0; transition: color .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); font-family: 'Montserrat', sans-serif; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,.2); text-decoration: none; font-family: 'Montserrat', sans-serif; }
.footer-legal a:hover { color: var(--orange); }

/* ---- WOO ARCHIVE ---- */
.woo-main { padding-top: 80px; }
.woo-main .woocommerce { padding: 48px 0; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-widget   { display: none; }
  .hub-grid      { grid-template-columns: repeat(2,1fr); }
  .network-grid  { grid-template-columns: repeat(2,1fr); }
  .pricing-cards { grid-template-columns: repeat(2,1fr); }
  .blog-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .faq-grid      { grid-template-columns: 1fr; }
  .topic-inner   { grid-template-columns: 1fr; }
  .post-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .trust-item    { padding: 14px 18px 14px 0; margin-right: 18px; font-size: 12px; }
  .main-nav      { display: none; flex-direction: column; background: var(--navy-deep); position: absolute; top: 64px; left: 0; right: 0; padding: 16px; border-top: 1px solid rgba(255,255,255,.08); }
  .main-nav.open { display: flex; }
  .nav-list      { flex-direction: column; align-items: stretch; }
  .nav-link      { padding: 10px 14px; }
  .nav-cta       { margin: 8px 0 0; width: 100%; justify-content: center; }
  .nav-toggle    { display: flex; }
  .sub-menu      { display: none !important; } /* simplify on mobile */
  .pricing-cards { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .app-grid      { grid-template-columns: 1fr 1fr; }
  .hub-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hub-grid      { grid-template-columns: 1fr; }
  .network-grid  { grid-template-columns: 1fr 1fr; }
  .app-grid      { grid-template-columns: 1fr; }
  .cta-actions   { flex-direction: column; }
  .hero-actions  { flex-direction: column; }
  .footer-grid   { grid-template-columns: 1fr; }
}

/* ---- PRINT ---- */
@media print {
  .site-header, .hero-widget, .cta-band, .site-footer { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.fade-up.is-visible { opacity: 1; transform: none; }

/* ---- STICKY HEADER STATES ---- */
.site-header { transition: transform .25s ease, box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.site-header.hidden { transform: translateY(-100%); }
