/*
Theme Name:  Detax Consultants
Theme URI:   https://detaxconsultants.com.au
Author:      Detax Consultants
Author URI:  https://detaxconsultants.com.au
Description: Corporate WordPress theme for Detax Consultants — tax, accounting and advisory services.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: detax
Tags: corporate, business, accounting, tax, one-column, two-columns, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* ─────────────────────────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────────────────────────── */
:root {
  --navy:           #060E1E;
  --navy-mid:       #0D1B33;
  --navy-soft:      #152040;
  --gold:           #C8921A;
  --gold2:          #F0B535;
  --gold3:          #FFD470;
  --white:          #FFFFFF;
  --off:            #F5F3EE;
  --text-body:      #CBD5E1;
  --text-dim:       #94A3B8;
  --text-light:     #F5F3EE;
  --green:          #4ade80;
  --border:         rgba(255,255,255,0.10);
  --border2:        rgba(255,255,255,0.06);
  --glass-bg:       rgba(255,255,255,0.05);
  --glass-bg2:      rgba(255,255,255,0.08);
  --serif:          'Playfair Display', Georgia, serif;
  --sans:           'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:         6px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --shadow-sm:      0 4px 12px rgba(0,0,0,.1);
  --shadow-md:      0 8px 40px rgba(0,0,0,.2);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.4);
  --transition:     .2s ease;
}

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* WordPress core alignment classes */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--muted); margin-top: 6px; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  background: var(--white); border-radius: 3px; border: 2px solid var(--navy);
  clip: auto; color: var(--navy); display: block; font-size: 14px;
  font-weight: 700; height: auto; left: 5px; line-height: normal;
  padding: 15px 23px 14px; text-decoration: none; top: 5px;
  width: auto; z-index: 100000;
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--white);
}
h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 80px);
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: var(--white);
}

.entry-content h2 { margin: 2rem 0 1rem; }
.entry-content h3 { margin: 1.75rem 0 0.75rem; }
.entry-content h4 { margin: 1.5rem 0 0.5rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5rem; font-size: 15px; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(200,146,26,0.1);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.entry-content blockquote p { margin: 0; font-style: italic; }
.entry-content a {
  color: var(--gold2);
  text-decoration: underline;
  transition: color var(--transition);
}
.entry-content a:hover { color: var(--gold3); }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 14px; }
.entry-content th {
  background: var(--navy-mid);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
  border: 1px solid var(--border);
}
.entry-content td { padding: 10px 14px; border: 1px solid var(--border); }
.entry-content tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.entry-content code {
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: var(--gold2);
}
.entry-content pre  { background: var(--navy); color: #cdd6f4; padding: 1.5rem; border-radius: var(--radius-lg); overflow-x: auto; margin-bottom: 1.5rem; }

/* ─────────────────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.tag { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow-centered { justify-content: center; }
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-head { margin-bottom: 60px; }
.section-head.centered { text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 15px; color: var(--muted); max-width: 480px; }
.section-head.centered p { margin: 0 auto; }

/* ─────────────────────────────────────────────────────────────
   UTILITY & BUTTONS
───────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad {
  padding: 110px 0;
}
.section-pad-sm {
  padding: 60px 0;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 700;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow-line {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  flex-shrink: 0;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  box-shadow: 0 8px 32px rgba(200, 146, 26, 0.45);
  transform: translateY(-1px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold2);
  border: 2px solid var(--gold2);
}

.btn-outline-gold:hover {
  background: var(--gold2);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: var(--navy-soft);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 13px;
}

/* Glass effects */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.glass2 {
  background: var(--glass-bg2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

/* ─────────────────────────────────────────────────────────────
   ANNOUNCEMENT BAR
───────────────────────────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #0a1628, #16284a, #0a1628);
  border-bottom: 1px solid rgba(200, 146, 26, 0.25);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.announce-bar .highlight {
  color: var(--gold2);
  font-weight: 700;
}

.announce-bar a {
  color: var(--gold2);
  border-bottom: 1px solid rgba(240, 181, 53, 0.4);
  font-weight: 700;
  transition: color 0.2s;
}

.announce-bar a:hover {
  color: var(--gold3);
}

.announce-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold2);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 14, 30, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold2);
  display: block;
  margin-top: 1px;
  font-weight: 600;
}

/* Primary nav */
#primary-navigation {
  display: flex;
  align-items: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='currentColor' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
}

.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s;
  z-index: 200;
  padding: 8px;
  backdrop-filter: blur(24px);
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s;
}

.sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--glass-bg);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-phone { font-size: 13px; color: var(--muted); white-space: nowrap; }
.nav-phone:hover { color: var(--navy); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; border-radius: var(--radius);
  border: 1px solid var(--border); background: transparent; cursor: pointer;
  transition: all var(--transition);
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--navy);
  transition: all .3s ease; transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   HERO (HOMEPAGE)
───────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy); min-height: calc(100vh - 105px);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-split {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: rgba(255,255,255,.015);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 0; position: relative; z-index: 2;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--gold2); font-style: italic; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 440px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 20px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 9px; }
.hero-trust-icon { color: var(--gold); flex-shrink: 0; }
.trust-text-label { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.35; }
.trust-text-label strong { color: rgba(255,255,255,.8); font-weight: 500; display: block; }
.hero-divider { width: 1px; height: 28px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; z-index: 2; }
.hero-panel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); width: 320px; overflow: hidden;
}
.hero-panel-head {
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
}
.hero-panel-title { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; letter-spacing: .04em; }
.hero-panel-badge { font-size: 10px; background: rgba(196,149,42,.2); color: var(--gold2); padding: 3px 10px; border-radius: 20px; }
.hero-panel-body { padding: 20px; }
.refund-label { font-size: 11px; color: rgba(255,255,255,.3); margin-bottom: 8px; letter-spacing: .06em; text-transform: uppercase; }
.refund-num { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.refund-num sup { font-size: 22px; }
.refund-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; }
.refund-badge { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--green); background: rgba(94,197,135,.1); padding: 5px 10px; border-radius: 20px; }
.refund-bar-track { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; margin-bottom: 6px; }
.refund-bar-fill { height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.refund-bar-labels { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.check-list-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 13px; color: rgba(255,255,255,.6); }
.check-list-item:last-child { border-bottom: none; }
.check-circle { width: 20px; height: 20px; border-radius: 50%; background: rgba(94,197,135,.15); border: 1px solid rgba(94,197,135,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-badge {
  position: absolute; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; z-index: 3;
  animation: fadeUpIn .6s ease both;
}
.floating-badge.badge-a { bottom: 30%; left: -20px; animation-delay: .5s; }
.floating-badge.badge-b { top: 30%; right: -20px; animation-delay: .7s; }
.fb-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fb-label { font-size: 11px; color: var(--muted); }
.fb-value { font-size: 15px; font-weight: 500; color: var(--text); margin-top: 1px; }

/* ─────────────────────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────────────────────── */
.trust-strip { background: var(--offwhite); border-bottom: 1px solid var(--border); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1180px; margin: 0 auto; }
.trust-strip-item { display: flex; align-items: center; gap: 16px; padding: 24px 32px; border-right: 1px solid var(--border); }
.trust-strip-item:last-child { border-right: none; }
.trust-strip-icon { color: var(--gold); flex-shrink: 0; }
.trust-strip-text strong { font-size: 14px; font-weight: 500; color: var(--navy); display: block; margin-bottom: 2px; }
.trust-strip-text span  { font-size: 12px; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────────────────────────── */
.services-section { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.service-card { background: var(--white); padding: 40px 36px; position: relative; overflow: hidden; transition: background var(--transition); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { background: var(--offwhite); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--gold); }
.service-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 12px; color: var(--gold); font-weight: 500; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* ─────────────────────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────────────────────── */
.stats-strip { background: var(--gold); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1180px; margin: 0 auto; }
.stat-item { padding: 48px 40px; border-right: 1px solid rgba(255,255,255,.25); }
.stat-item:last-child { border-right: none; }
.stat-num  { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--white); line-height: 1; letter-spacing: -.02em; margin-bottom: 8px; }
.stat-num sup { font-size: 26px; vertical-align: super; }
.stat-desc { font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .05em; text-transform: uppercase; font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   JOURNEY SPLIT
───────────────────────────────────────────────────────────── */
.journey-split { display: grid; grid-template-columns: 1fr 1fr; }
.journey-panel { padding: 90px 70px; position: relative; overflow: hidden; }
.journey-panel.jp-personal { background: var(--navy); }
.journey-panel.jp-business  { background: var(--offwhite); }
.journey-bignumber {
  position: absolute; right: 40px; top: 30px;
  font-family: var(--serif); font-size: 140px; font-weight: 300;
  line-height: 1; opacity: .05; pointer-events: none; user-select: none;
}
.jp-personal .journey-bignumber { color: var(--white); }
.jp-business .journey-bignumber  { color: var(--navy); }
.journey-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.journey-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.jp-personal h2 { color: var(--white); margin-bottom: 16px; }
.jp-business  h2 { color: var(--navy); margin-bottom: 16px; }
.jp-personal .journey-desc { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 32px; }
.jp-business  .journey-desc { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.journey-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.journey-list-item { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.jp-personal .journey-list-item { color: rgba(255,255,255,.7); }
.jp-business  .journey-list-item { color: #4A5870; }
.j-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────────── */
.how-section { padding: 100px 0; background: var(--offwhite); }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 36px;
  left: calc(50% / 3); right: calc(50% / 3);
  height: 1px; background: var(--border);
}
.step { text-align: center; padding: 0 40px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--navy);
  position: relative;
}
.step-circle::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px dashed rgba(196,149,42,.4);
}
.step h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials-section { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testi-card { padding: 36px 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: box-shadow var(--transition), border-color var(--transition); }
.testi-card:hover { border-color: rgba(196,149,42,.4); box-shadow: 0 8px 40px rgba(196,149,42,.08); }
.star-row { display: flex; gap: 3px; margin-bottom: 16px; }
.star-row svg { color: var(--gold); }
.quote-glyph { font-family: var(--serif); font-size: 72px; color: var(--gold); line-height: .6; margin-bottom: 18px; opacity: .3; }
.testi-card blockquote { font-size: 14px; line-height: 1.75; color: #4A5870; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; color: var(--gold2); flex-shrink: 0; }
.testi-name   { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.testi-role   { font-size: 11px; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────
   RESOURCES / BLOG
───────────────────────────────────────────────────────────── */
.resources-section { padding: 100px 0; background: var(--navy); }
.resources-section .section-head h2 { color: var(--white); }
.resources-section .section-head p  { color: rgba(255,255,255,.4); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); overflow: hidden; margin-top: 60px; }
.resource-card { background: var(--navy2); padding: 36px 30px; transition: background var(--transition); }
.resource-card:hover { background: rgba(255,255,255,.04); }
.resource-card-tag { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 500; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.resource-card-tag-line { width: 20px; height: 1px; background: var(--gold); }
.resource-card h3 { font-size: 18px; color: var(--white); font-family: var(--serif); font-weight: 400; line-height: 1.35; margin-bottom: 12px; }
.resource-card p  { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 22px; }
.resource-link { font-size: 12px; color: var(--gold); font-weight: 500; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.resource-link:hover { gap: 10px; }

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────────── */
.cta-section { padding: 120px 0; background: var(--offwhite); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-left h2 { margin-bottom: 16px; }
.cta-left p  { color: var(--muted); margin-bottom: 32px; max-width: 440px; }
.cta-features { display: flex; flex-direction: column; gap: 14px; }
.cta-feature { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #4A5870; }
.cta-feature-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(196,149,42,.1); border: 1px solid rgba(196,149,42,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-title { font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.form-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--sans); font-size: 14px;
  color: var(--text); background: var(--white); outline: none; transition: border var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,149,42,.08); }
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238B9BB4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.btn-block { width: 100%; justify-content: center; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────
   INNER PAGE HERO (all service/content pages)
───────────────────────────────────────────────────────────── */
.page-hero { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 54px); color: var(--white); margin-bottom: 18px; }
.page-hero .hero-lead { font-size: 17px; color: rgba(255,255,255,.55); max-width: 580px; line-height: 1.7; margin-bottom: 32px; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 24px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.35); }
.breadcrumb a:hover { color: rgba(255,255,255,.65); }
.breadcrumb span.sep { color: rgba(255,255,255,.2); }

/* ─────────────────────────────────────────────────────────────
   SERVICE DETAIL PAGE
───────────────────────────────────────────────────────────── */
.service-detail { padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.service-content h2 { font-size: 28px; margin-bottom: 16px; }
.service-content h3 { font-size: 20px; margin-bottom: 12px; margin-top: 32px; }
.service-content p  { margin-bottom: 1.25rem; }
.service-includes { background: var(--offwhite); border-radius: var(--radius-lg); padding: 32px; margin-top: 32px; }
.service-includes h3 { margin-top: 0; }
.service-includes ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.service-includes ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #4A5870; }
.service-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
.sidebar-cta-box { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; }
.sidebar-cta-box h3 { color: var(--white); margin-bottom: 10px; font-size: 18px; }
.sidebar-cta-box p  { color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 20px; }
.sidebar-info-box { background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-info-box h4 { font-size: 13px; margin-bottom: 14px; }
.sidebar-info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #4A5870; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-info-item:last-child { border-bottom: none; }
.sidebar-info-item strong { color: var(--navy); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────────────── */
.about-intro { padding: 80px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-image { border-radius: var(--radius-lg); overflow: hidden; background: var(--smoke); min-height: 400px; }
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.values-section { padding: 80px 0; background: var(--offwhite); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.value-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(196,149,42,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold); }
.value-card h3 { font-size: 15px; margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--muted); }
.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card-image { background: var(--smoke); height: 240px; position: relative; overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); }
.team-avatar-lg { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--gold2); opacity: .6; }
.team-card-body { padding: 24px; }
.team-card h3 { font-size: 17px; margin-bottom: 4px; }
.team-card-role { font-size: 12px; color: var(--gold); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.team-card p   { font-size: 13px; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────── */
.contact-page { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 22px; margin-bottom: 8px; }
.contact-info > p { margin-bottom: 32px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-detail-item:first-child { border-top: 1px solid var(--border); }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(196,149,42,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-detail-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.contact-detail-value { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-detail-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }
.contact-map { margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden; height: 220px; background: var(--smoke); border: 1px solid var(--border); }

/* ─────────────────────────────────────────────────────────────
   BLOG / ARCHIVE
───────────────────────────────────────────────────────────── */
.blog-page { padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.posts-list { display: flex; flex-direction: column; gap: 36px; }
.post-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); display: grid; grid-template-columns: 280px 1fr; }
.post-card:hover { box-shadow: var(--shadow-md); }
.post-thumbnail { background: var(--smoke); min-height: 200px; overflow: hidden; position: relative; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-thumbnail img { transform: scale(1.03); }
.post-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.post-cat { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.post-date { font-size: 12px; color: var(--muted); }
.post-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.post-card h2 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 10px; font-weight: 400; line-height: 1.3; }
.post-card h2 a { color: inherit; }
.post-card h2 a:hover { color: var(--gold); }
.post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.read-more { font-size: 12px; color: var(--gold); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: #4A5870; transition: all var(--transition); text-decoration: none; }
.pagination a:hover { border-color: var(--navy); color: var(--navy); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Blog sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }
.sidebar-widget { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.widget-title { font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.widget-search { display: flex; gap: 0; }
.widget-search input { flex: 1; border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.widget-search button { padding: 11px 14px; background: var(--navy); color: var(--white); border: 1px solid var(--navy); border-radius: 0 var(--radius) var(--radius) 0; }
.recent-posts-list { display: flex; flex-direction: column; gap: 14px; }
.recent-post-item { display: flex; gap: 12px; align-items: flex-start; }
.recent-post-thumb { width: 64px; height: 48px; border-radius: var(--radius); background: var(--smoke); flex-shrink: 0; overflow: hidden; }
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title { font-size: 13px; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.recent-post-title a { color: inherit; }
.recent-post-title a:hover { color: var(--gold); }
.recent-post-date { font-size: 11px; color: var(--muted); }
.cat-list { display: flex; flex-direction: column; gap: 0; }
.cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: #4A5870; transition: color var(--transition); }
.cat-list a:last-child { border-bottom: none; }
.cat-list a:hover { color: var(--gold); }
.cat-count { font-size: 11px; background: var(--smoke); padding: 2px 8px; border-radius: 10px; color: var(--muted); }

/* Single post */
.single-post { padding: 60px 0 80px; }
.single-header { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.single-header h1 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 16px; }
.single-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.single-cat { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.single-author { font-size: 13px; color: var(--muted); }
.single-date   { font-size: 13px; color: var(--muted); }
.post-featured-image { width: 100%; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; max-height: 480px; }
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.single-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }

/* ─────────────────────────────────────────────────────────────
   404 PAGE
───────────────────────────────────────────────────────────── */
.error-page { padding: 120px 0; text-align: center; }
.error-code { font-family: var(--serif); font-size: 140px; font-weight: 300; color: var(--navy); line-height: 1; opacity: .08; margin-bottom: -20px; }
.error-page h2 { font-size: 32px; margin-bottom: 16px; }
.error-page p  { color: var(--muted); max-width: 400px; margin: 0 auto 32px; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
#site-footer { background: var(--navy); }
.footer-main { padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 280px; margin: 18px 0 24px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-contact-list a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold2); }
.social-links { display: flex; gap: 8px; margin-top: 22px; }
.social-link { width: 36px; height: 36px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: all var(--transition); }
.social-link:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.footer-col h4 { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.footer-menu { display: flex; flex-direction: column; gap: 0; }
.footer-menu a { display: block; font-size: 13px; color: rgba(255,255,255,.4); padding: 7px 0; transition: color var(--transition); border-bottom: none; }
.footer-menu a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.footer-copy  { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.2); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────────────── */
@keyframes fadeUpIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
.anim-fade-up { opacity:0; transform:translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.anim-fade-up.in-view { opacity:1; transform:translateY(0); }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — 1200px
───────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container, .container-sm { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }
  .hero-content { padding: 60px 40px 60px 0; }
  .footer-grid  { gap: 40px; }
  .cta-grid     { gap: 50px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET 992px
───────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  /* Nav → hamburger */
  .menu-toggle { display: flex; }
  #primary-navigation {
    position: fixed; top: 105px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 24px 28px; overflow-y: auto;
    transform: translateX(-100%); transition: transform .3s ease;
    border-top: 1px solid var(--border); z-index: 999;
  }
  #primary-navigation.nav-open { transform: translateX(0); }
  .primary-menu { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .primary-menu > li { width: 100%; border-bottom: 1px solid var(--border); }
  .primary-menu > li > a { padding: 14px 0; border-radius: 0; font-size: 15px; width: 100%; justify-content: space-between; }
  .sub-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; border-radius: 0; background: var(--offwhite); padding: 4px 0 4px 12px; display: none; }
  .sub-menu.open { display: block; }
  .sub-menu li a { padding: 10px 12px; font-size: 14px; }
  .nav-phone { display: none; }
  .nav-actions .btn-sm { padding: 9px 16px; font-size: 12px; }

  /* Hero → stacked */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 28px; }
  .hero h1 { font-size: clamp(36px, 6vw, 52px); }

  /* Grids */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
  .stats-grid .stat-item:last-child,
  .stats-grid .stat-item:nth-last-child(2) { border-bottom: none; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-item:nth-child(2) { border-right: none; }
  .trust-strip-item:nth-child(3) { border-top: 1px solid var(--border); }
  .trust-strip-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }

  /* Journey */
  .journey-split { grid-template-columns: 1fr; }
  .journey-panel { padding: 60px 40px; }

  /* Steps */
  .steps-row::before { display: none; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step { text-align: left; padding: 0; display: flex; flex-direction: column; align-items: flex-start; }
  .step-circle { margin: 0 0 20px; }

  /* Service detail */
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

  /* About */
  .about-intro-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .single-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Post cards */
  .post-card { grid-template-columns: 1fr; }
  .post-thumbnail { height: 220px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE 768px
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .container, .container-sm { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }

  .announce-bar { font-size: 11px; padding: 8px 16px; }
  .announce-dot { display: none; }

  /* Hero */
  .hero-content { padding: 50px 20px; }
  .hero h1 { font-size: clamp(32px, 7vw, 46px); }
  .hero-desc { font-size: 14px; }
  .hero-trust { gap: 14px; }
  .hero-divider { display: none; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 12px; }

  /* Services → 1 col */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* Stats → 2 col */
  .stat-item { padding: 32px 24px; }
  .stat-num { font-size: 40px; }

  /* Journey */
  .journey-panel { padding: 50px 24px; }
  .journey-bignumber { font-size: 100px; }

  /* How */
  .how-section { padding: 60px 0; }

  /* Testimonials → 1 col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Trust strip → 1 col */
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-item { border-right: none; border-bottom: 1px solid var(--border); padding: 18px 24px; }
  .trust-strip-item:last-child { border-bottom: none; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* CTA form */
  .cta-section { padding: 60px 0; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }

  /* Page hero */
  .page-hero { padding: 50px 0; }
  .page-hero h1 { font-size: clamp(26px, 6vw, 40px); }

  /* Resources */
  .resources-section { padding: 60px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; }
  .footer-main { padding: 48px 0 0; }

  /* Blog */
  .posts-list { gap: 24px; }

  /* Section head */
  .section-head { margin-bottom: 36px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE 480px
───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 34px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
  .stats-grid .stat-item { border-bottom: none; }
  .journey-bignumber { display: none; }
  .btn { padding: 12px 18px; }
}
