/*
Theme Name:  SwiftNet
Theme URI:   https://yoursite.com
Description: SwiftNet broadband website theme — Unifi Malaysia colour palette.
Author:      Your Name
Version:     1.0.0
Text Domain: swiftnet
*/

/* ── RESET & VARIABLES ── */
:root {
  --brand:      #ff6600;
  --brand-dark: #cc4400;
  --blue:       #0050a0;
  --blue-dark:  #003f7f;
  --blue-light: #e8f0fb;
  --dark:       #1a1a1a;
  --dark2:      #333333;
  --muted:      #666666;
  --light:      #f5f7fa;
  --white:      #ffffff;
  --border:     #e0e0e0;
  --card:       #ffffff;
  --radius:     14px;
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --text:       #1a1a1a;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #ffffff;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(90deg, #ff6600, #cc4400);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 2rem; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-cta {
  background: var(--brand);
  color: #fff; font-weight: 700; font-size: 0.85rem;
  padding: 0.5rem 1.25rem; border-radius: 50px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--brand-dark); }

/* ── PAGE WRAPPER ── */
.page { display: block; padding-top: 68px; min-height: 100vh; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 6rem 5%;
  background: linear-gradient(135deg, #fff8f4 0%, #eef4ff 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 50%, rgba(0,80,160,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,102,0,0.07) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.03;
  background-image:
    linear-gradient(var(--blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,102,0,0.1); border: 1px solid rgba(255,102,0,0.3);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--brand);
  margin-bottom: 1.5rem; letter-spacing: 0.5px;
}
.hero-badge .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse 1.5s infinite; flex-shrink: 0; display: inline-block; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 1.5rem;
  color: var(--blue-dark);
}
.hero h1 .hl {
  background: linear-gradient(135deg, #ff6600, #cc4400);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.05rem; color: var(--muted); max-width: 480px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,102,0,0.3);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(255,102,0,0.45); color: #fff; }
.btn-outline {
  background: transparent; border: 2px solid var(--blue);
  color: var(--blue); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  cursor: pointer; transition: all .2s; display: inline-block;
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  z-index: 0; overflow: hidden;
}
.hero-visual svg { width: 100%; height: 100%; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.stat-val { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: -4px; }

/* ── SECTIONS ── */
section { padding: 5rem 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brand); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 1rem; color: var(--blue-dark);
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 500px; }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.why-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,102,0,0.12); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,102,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.why-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--blue-dark); }
.why-card p { font-size: 0.9rem; color: var(--muted); }

/* ── STEPS ── */
.steps-section { background: var(--light); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 0; margin-top: 3rem; }
.step-card { padding: 2.5rem 2rem; position: relative; border-right: 1px solid var(--border); }
.step-card:last-child { border-right: none; }
.step-num { font-family: var(--font-head); font-size: 4rem; font-weight: 800; color: rgba(255,102,0,0.12); line-height: 1; margin-bottom: 1rem; }
.step-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--muted); }

/* ── PRICING ── */
.tab-row { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; }
.tab-btn {
  background: #fff; border: 1.5px solid var(--border);
  color: var(--muted); font-size: 0.9rem; font-weight: 600;
  padding: 0.6rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all .2s;
}
.tab-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.tab-btn:hover:not(.active) { border-color: var(--brand); color: var(--brand); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.plan-tab { display: none; }
.plan-tab.active { display: block; }
.plan-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative; transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: var(--brand); }
.plan-card.popular {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(255,102,0,0.15);
}
.popular-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--brand); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
  padding: 0.25rem 0.7rem; border-radius: 50px; text-transform: uppercase;
}
.plan-speed { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--brand); line-height: 1; }
.plan-speed span { font-size: 1rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.plan-desc { font-size: 0.85rem; color: var(--muted); margin: 0.5rem 0 1.2rem; }
.plan-price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 0.25rem; }
.plan-price .currency { font-size: 1rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-price .mo { font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.plan-original { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; margin-bottom: 1.5rem; min-height: 1.2em; }
.plan-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features li { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.6rem; color: var(--dark2); }
.plan-features li::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.plan-btn, a.plan-btn {
  width: 100%; padding: 0.8rem; border-radius: 50px; display: block; text-align: center;
  font-weight: 700; font-size: 0.9rem; cursor: pointer; border: 2px solid var(--brand);
  background: transparent; color: var(--brand); transition: all .2s;
}
.plan-btn:hover, a.plan-btn:hover { background: var(--brand); color: #fff; }
.plan-card.popular .plan-btn, .plan-card.popular a.plan-btn { background: var(--brand); color: #fff; }
.plan-card.popular .plan-btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

/* ── PROMO ── */
.promo-section { background: linear-gradient(135deg, #003f7f 0%, #0050a0 100%); color: #fff; }
.promo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.promo-visual {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.promo-tag {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.promo-value { font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.75rem; color: #fff; }
.promo-value span { color: rgba(255,255,255,0.8); font-size: 1.2rem; }
.promo-desc { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.09); }
.stars { color: var(--brand); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--muted); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.author-loc { font-size: 0.8rem; color: var(--muted); }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; margin-top: 2.5rem; }
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, box-shadow .3s; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.blog-thumb { height: 200px; position: relative; overflow: hidden; background: var(--light); }
.blog-thumb svg { width: 100%; height: 100%; }
.blog-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--brand); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 50px;
}
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.6rem; }
.blog-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; color: var(--blue-dark); }
.blog-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-read { font-size: 0.82rem; font-weight: 700; color: var(--brand); display: flex; align-items: center; gap: 0.4rem; }

/* ── BLOG PAGE ── */
.blog-hero {
  background: linear-gradient(135deg, #003f7f 0%, #0050a0 100%);
  padding: 5rem 5% 4rem; border-bottom: none; text-align: center; color: #fff;
}
.blog-hero .section-label { color: rgba(255,255,255,0.7); }
.blog-hero .section-title { color: #fff; }
.blog-hero p { color: rgba(255,255,255,0.75); }
.blog-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.filter-btn {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500;
  padding: 0.5rem 1.25rem; border-radius: 50px; cursor: pointer; transition: all .2s;
}
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.filter-btn:hover:not(.active) { background: rgba(255,255,255,0.25); color: #fff; }
.blog-full-grid { padding: 4rem 5%; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 2rem; }
.featured-blog {
  grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: #fff; cursor: pointer; transition: box-shadow .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.featured-blog:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.featured-thumb { min-height: 320px; background: var(--light); }
.featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-tag {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 1rem;
}
.featured-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--blue-dark); }
.featured-excerpt { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* ── REGISTER ── */
.register-section { background: var(--light); }
.register-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.form-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--blue-dark); }
.form-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted);
  margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group textarea {
  width: 100%; background: #fff;
  border: 1.5px solid var(--border); border-radius: 10px;
  color: var(--dark); font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.75rem 1rem; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--brand); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 0.9rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,102,0,0.3);
  transition: box-shadow .2s, transform .2s;
}
.form-submit:hover { box-shadow: 0 6px 30px rgba(255,102,0,0.45); transform: translateY(-2px); }
.form-message { padding: 0.85rem 1.25rem; border-radius: 10px; font-size: 0.9rem; margin-bottom: 1.25rem; }
.form-message.success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.form-message.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.faq-q {
  padding: 1.25rem 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 0.95rem; color: var(--dark);
  transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-q .chevron { transition: transform .3s; font-size: 0.8rem; color: var(--muted); }
.faq-item.open .faq-q { color: var(--brand); }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 5% 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo {
  background: linear-gradient(90deg, #ff6600, #ff9944);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 1rem; max-width: 260px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 1rem; }
.footer-contact a { color: var(--brand); }

/* ── CUSTOM DROPDOWN ── */
.sn-select { position: relative; width: 100%; user-select: none; }
.sn-select-trigger {
  width: 100%; background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--dark); font-family: var(--font-body);
  font-size: 0.9rem; padding: 0.75rem 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color .2s;
}
.sn-select-trigger:hover, .sn-select.open .sn-select-trigger { border-color: var(--brand); }
.sn-select-arrow {
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid #aaa; transition: transform .2s; flex-shrink: 0; margin-left: 0.5rem;
}
.sn-select.open .sn-select-arrow { transform: rotate(180deg); border-top-color: var(--brand); }
.sn-select-dropdown {
  display: none; position: absolute; top: calc(100% + 4px);
  left: 0; right: 0; background: #fff; border: 1.5px solid var(--brand);
  border-radius: 10px; z-index: 999; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.sn-select.open .sn-select-dropdown { display: block; }
.sn-select-option {
  padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--muted);
  cursor: pointer; transition: background .15s, color .15s;
  border-bottom: 1px solid var(--border);
}
.sn-select-option:last-child { border-bottom: none; }
.sn-select-option:hover { background: rgba(255,102,0,0.06); color: var(--dark); }
.sn-select-option.selected { background: rgba(255,102,0,0.08); color: var(--brand); font-weight: 600; }
.sn-select-option.placeholder { color: #bbb; font-style: italic; }
.sn-select-text { color: #bbbbbb !important; }
.sn-select.has-value .sn-select-text { color: #1a1a1a !important; font-weight: 500 !important; }

/* ── SINGLE POST ── */
.post-content h2,.post-content h3 { font-family: var(--font-head); font-weight: 700; margin: 2rem 0 1rem; color: var(--blue-dark); }
.post-content h2 { font-size: 1.6rem; }
.post-content h3 { font-size: 1.25rem; }
.post-content p { margin-bottom: 1.25rem; color: var(--dark2); }
.post-content ul,.post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: 0.4rem; color: var(--dark2); }
.post-content blockquote { border-left: 3px solid var(--brand); padding: 1rem 1.5rem; margin: 2rem 0; background: rgba(255,102,0,0.04); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--muted); }
.post-content a { color: var(--brand); text-decoration: underline; }
.post-content img { max-width: 100%; border-radius: var(--radius); margin: 1rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-visual { display: none; }
  .promo-inner, .register-inner, .featured-blog { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .step-card { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── WP SPECIFICS ── */
body { margin: 0; }
img.wp-post-image { max-width: 100%; height: auto; }
.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.no-posts { color: var(--muted); grid-column: 1/-1; text-align: center; padding: 3rem; }
