/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  --primary: #0f1f2e;
  --primary-2: #17354d;
  --gold: #caa868;
  --gold-deep: #a9844c;
  --gold-soft: #f4ead4;
  --text: #1d2d3f;
  --muted: #5c6977;
  --light: #f7f4ee;
  --white: #ffffff;
  --border: #e9e0d0;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --radius: 12px;
}

/* ========================================
   RESET
   ======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f9f5f0;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-deep);
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-contact a {
  color: #fff;
}

.topbar-contact a:hover {
  color: var(--gold);
}

.topbar i {
  color: var(--gold);
  margin-right: 6px;
}

.topbar-hours {
  color: rgba(255,255,255,0.8);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

/* ========================================
   LOGO
   ======================================== */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  white-space: nowrap;
}

.brand-tag {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 5px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--gold-deep);
  background: var(--light);
}

/* ========================================
   DROPDOWN - DESKTOP
   ======================================== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0;
  z-index: 1000;
}

.menu-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text);
  background: transparent !important;
  border-radius: 0 !important;
}

.dropdown-menu a:hover {
  background: var(--light) !important;
  color: var(--gold-deep) !important;
}

/* ========================================
   HEADER ACTIONS
   ======================================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--gold-deep);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--gold-deep);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #ffffff;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 11px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #0f1f2e 0%, #17354d 50%, #1d4965 100%);
  color: #ffffff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.page-kicker {
  display: inline-block;
  background: rgba(202,168,104,0.2);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(202,168,104,0.3);
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  max-width: 700px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero Background Effects */
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(202,168,104,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(202,168,104,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 60px 0;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
}

/* ========================================
   GRIDS
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}

.card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ========================================
   PRACTICE AREAS
   ======================================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.practice-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.practice-card .practice-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.practice-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.practice-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.practice-card ul li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: 14px;
}

.practice-card ul li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ========================================
   FAQ
   ======================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}

.faq-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}


/* ========================================
   FAQ PAGE SPECIFIC STYLES
   ======================================== */

/* FAQ Hero */
.faq-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f2e 40%, #17354d 70%, #1d4965 100%);
  min-height: 480px;
  padding: 90px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-hero .page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero .page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-hero h1 {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

.faq-hero h1 span {
  color: var(--gold);
}

.faq-hero p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.faq-hero p strong {
  color: #ffffff;
}

/* FAQ Search */
.faq-search-container {
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-search-form {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.faq-search-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: inherit;
}

.faq-search-form input::placeholder {
  color: var(--muted);
}

.faq-search-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--primary);
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.faq-search-form button:hover {
  background: var(--gold-deep);
  color: #ffffff;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
}

.faq-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq-category-btn:hover,
.faq-category-btn:focus {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.faq-category-btn i {
  font-size: 14px;
}

/* FAQ Category Section */
.faq-category-section {
  margin-bottom: 50px;
}

.faq-category-header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.faq-category-header h3 {
  font-size: 24px;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 4px;
}

.faq-category-header p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.faq-accordion-btn {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.3s ease;
  gap: 16px;
}

.faq-accordion-btn:hover {
  background: var(--light);
}

.faq-accordion-btn span {
  flex: 1;
}

.faq-accordion-btn i {
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-accordion-btn i {
  transform: rotate(180deg);
}

.faq-accordion-content {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-accordion-item.active .faq-accordion-content {
  display: block;
}

.faq-accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.faq-accordion-content ul li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.faq-accordion-content ul li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.faq-accordion-content p {
  margin: 0 0 12px;
}

.faq-accordion-content a {
  color: var(--gold-deep);
  font-weight: 600;
}

.faq-accordion-content a:hover {
  text-decoration: underline;
}

/* FAQ Contact Section */
.faq-contact-section {
  margin-top: 40px;
}

.faq-contact-box {
  background: #ffffff;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.faq-contact-box h3 {
  font-size: 26px;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}

.faq-contact-box p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.faq-contact-box p a {
  color: var(--gold-deep);
  font-weight: 600;
}

.faq-contact-box p a:hover {
  text-decoration: underline;
}

/* ========================================
   RESPONSIVE - FAQ PAGE
   ======================================== */

@media (max-width: 768px) {
  .faq-hero {
    min-height: 350px;
    padding: 60px 0 40px;
  }

  .faq-hero h1 {
    font-size: 28px;
  }

  .faq-hero p {
    font-size: 16px;
  }

  .faq-search-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .faq-search-form input {
    padding: 12px 16px;
  }

  .faq-search-form button {
    padding: 12px 20px;
    border-radius: 0;
  }

  .faq-categories {
    gap: 8px;
  }

  .faq-category-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  .faq-accordion-btn {
    padding: 14px 16px;
    font-size: 14px;
  }

  .faq-accordion-content {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .faq-contact-box {
    padding: 30px 20px;
  }

  .faq-contact-box h3 {
    font-size: 22px;
  }

  .faq-category-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .faq-hero h1 {
    font-size: 24px;
  }

  .faq-hero p {
    font-size: 14px;
  }

  .faq-category-btn {
    font-size: 11px;
    padding: 5px 12px;
  }

  .faq-category-btn i {
    font-size: 12px;
  }

  .faq-accordion-btn {
    font-size: 13px;
    padding: 12px 14px;
  }

  .faq-accordion-content {
    font-size: 13px;
    padding: 0 14px 14px;
  }

  .faq-contact-box {
    padding: 24px 16px;
  }

  .faq-contact-box h3 {
    font-size: 20px;
  }
}

/* ========================================
   STATS
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 24px;
}

.stat-box strong {
  display: block;
  font-size: 32px;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
}

.stat-box span {
  color: var(--muted);
  font-size: 14px;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trust-item i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
}

.trust-item h4 {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
}

.trust-item p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}


/* ========================================
   JUDGEMENTS PAGE SPECIFIC STYLES
   ======================================== */

/* Hero Section */
.judgements-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f2e 40%, #17354d 70%, #1d4965 100%);
  min-height: 480px;
  padding: 90px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.judgements-hero .page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.judgements-hero .page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.judgements-hero h1 {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

.judgements-hero h1 span {
  color: var(--gold);
}

.judgements-hero p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.judgements-hero p strong {
  color: #ffffff;
}

/* Search Box */
.judgement-search-container {
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.judgement-search-form {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.judgement-search-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: inherit;
}

.judgement-search-form input::placeholder {
  color: var(--muted);
}

.judgement-search-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--primary);
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.judgement-search-form button:hover {
  background: var(--gold-deep);
  color: #ffffff;
}

/* Judgement Categories */
.judgement-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
}

.judgement-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.judgement-category-btn:hover,
.judgement-category-btn.active {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.judgement-category-btn i {
  font-size: 14px;
}

/* Judgement Grid */
.judgement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.judgement-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.judgement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.judgement-card.hidden {
  display: none;
}

.judgement-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.judgement-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.judgement-tags .tag {
  font-size: 11px;
  padding: 3px 10px;
}

.court-tag {
  background: var(--primary);
  color: #ffffff;
}

.judgement-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.judgement-date i {
  margin-right: 4px;
}

.judgement-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.3;
}

.judgement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.judgement-meta i {
  margin-right: 4px;
  color: var(--gold);
}

.judgement-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.6;
}

.judgement-card .btn {
  align-self: flex-start;
}

/* Judgement Modal */
.judgement-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.judgement-modal.open {
  display: flex;
}

.judgement-modal-content {
  background: #ffffff;
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.judgement-modal-close {
  position: sticky;
  top: 10px;
  right: 10px;
  float: right;
  background: var(--light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  transition: all 0.3s ease;
  z-index: 10;
  margin: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.judgement-modal-close:hover {
  background: var(--error);
  color: #ffffff;
}

.judgement-modal-body {
  padding: 30px 35px 35px;
}

.judgement-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.judgement-modal-header .tag {
  font-size: 12px;
}

.modal-citation {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
}

.judgement-modal-body h3 {
  font-size: 26px;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.modal-meta i {
  color: var(--gold);
  margin-right: 6px;
}

.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

#modalContent p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.modal-footer {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.modal-footer p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Judgement Disclaimer */
.judgement-disclaimer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 20px;
}

.judgement-disclaimer-icon {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.judgement-disclaimer h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
}

.judgement-disclaimer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .judgements-hero {
    min-height: 350px;
    padding: 60px 0 40px;
  }

  .judgements-hero h1 {
    font-size: 28px;
  }

  .judgements-hero p {
    font-size: 16px;
  }

  .judgement-search-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .judgement-search-form input {
    padding: 12px 16px;
  }

  .judgement-search-form button {
    padding: 12px 20px;
    border-radius: 0;
  }

  .judgement-grid {
    grid-template-columns: 1fr;
  }

  .judgement-categories {
    gap: 8px;
  }

  .judgement-category-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  .judgement-modal-body {
    padding: 20px;
  }

  .judgement-modal-body h3 {
    font-size: 22px;
  }

  .judgement-disclaimer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .judgements-hero h1 {
    font-size: 24px;
  }

  .judgements-hero p {
    font-size: 14px;
  }

  .judgement-card {
    padding: 18px 16px;
  }

  .judgement-card h3 {
    font-size: 16px;
  }

  .judgement-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-meta {
    flex-direction: column;
    gap: 6px;
  }

  .judgement-modal-body h3 {
    font-size: 20px;
  }

  .judgement-disclaimer {
    padding: 16px;
  }
}
/* ========================================
   ARTICLE / JUDGEMENT GRIDS
   ======================================== */
.article-grid,
.judgement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card,
.judgement-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.article-card:hover,
.judgement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.article-card .meta,
.judgement-card .meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.article-card h3,
.judgement-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
}

.article-card p,
.judgement-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ========================================
   SPLIT LAYOUT
   ======================================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.highlight-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.highlight-box h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 24px;
}

/* ========================================
   CTA STRIP
   ======================================== */
.cta-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ========================================
   LISTS
   ======================================== */
.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.bullet-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 18px;
}

/* ========================================
   READ MORE
   ======================================== */
.read-more {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 14px;
}

.read-more:hover {
  text-decoration: underline;
}

/* ========================================
   FORMS
   ======================================== */
.site-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--primary);
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(202,168,104,0.2);
}

/* ========================================
   DISCLAIMER
   ======================================== */
.disclaimer-panel {
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.disclaimer-panel h3 {
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
}

/* ========================================
   DISCLAIMER PAGE SPECIFIC STYLES
   ======================================== */

/* Hero Section - Disclaimer - CENTERED */
.disclaimer-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f2e 40%, #17354d 70%, #1d4965 100%);
  min-height: 480px;
  padding: 90px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.disclaimer-hero .page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-hero .page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer-hero h1 {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

.disclaimer-hero h1 span {
  color: var(--gold);
}

.disclaimer-hero p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.disclaimer-hero p strong {
  color: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 12px;
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.hero-stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-deep);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

/* BCI Compliance Grid */
.bci-compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.bci-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.bci-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.bci-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}

.bci-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.bci-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Disclaimer Grid */
.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.disclaimer-item {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.disclaimer-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.disclaimer-item h4 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.disclaimer-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* Rule Grid */
.rule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.rule-box {
  border-radius: var(--radius);
  padding: 28px 24px;
}

.rule-box.allowed {
  background: rgba(26,111,72,0.06);
  border: 1px solid rgba(26,111,72,0.2);
}

.rule-box.prohibited {
  background: rgba(180,35,24,0.06);
  border: 1px solid rgba(180,35,24,0.2);
}

.rule-box h4 {
  font-size: 20px;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
}

.rule-box ul {
  list-style: none;
  padding: 0;
}

.rule-box ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rule-box ul li i {
  width: 18px;
  font-size: 14px;
}

.rule-box.allowed ul li i.fa-check {
  color: #1a6f48;
}

.rule-box.prohibited ul li i.fa-xmark {
  color: #b42318;
}

.rule-note {
  margin-top: 24px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
}

.rule-note p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Contact Notice */
.contact-notice {
  display: grid;
  gap: 20px;
}

.notice-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.notice-item:hover {
  box-shadow: var(--shadow);
}

.notice-item i {
  font-size: 22px;
  color: var(--gold);
  margin-top: 2px;
  width: 30px;
  text-align: center;
}

.notice-item h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
}

.notice-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Full Notice */
.full-notice {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.full-notice h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
}

.full-notice .notice-content p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.8;
}

/* ========================================
   RESPONSIVE - DISCLAIMER PAGE
   ======================================== */

@media (max-width: 1024px) {
  .bci-compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .disclaimer-hero {
    min-height: 350px;
    padding: 60px 0 40px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bci-compliance-grid {
    grid-template-columns: 1fr;
  }
  
  .disclaimer-grid {
    grid-template-columns: 1fr;
  }
  
  .rule-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-badge-group {
    flex-direction: column;
    align-items: center;
  }
  
  .full-notice {
    padding: 20px;
  }
  
  .disclaimer-hero h1 {
    font-size: 28px;
  }
  
  .disclaimer-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .hero-stat {
    padding: 12px 8px;
  }
  
  .hero-stat-number {
    font-size: 18px;
  }
  
  .bci-card {
    padding: 18px 16px;
  }
  
  .notice-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .disclaimer-hero h1 {
    font-size: 24px;
  }
  
  .disclaimer-hero p {
    font-size: 14px;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  padding: 4px 0;
}

.site-footer a {
  color: rgba(255,255,255,0.7);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.legal-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FLOATING CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.floating-cta a:hover {
  transform: scale(1.1);
}

.floating-cta .cta-call {
  background: #1a6f48;
}

.floating-cta .cta-whatsapp {
  background: #25d366;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero h1 {
    font-size: 34px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* Header */
  .header-inner {
    padding: 10px 16px;
    min-height: 60px;
    position: relative;
  }

  .brand-logo {
    height: 38px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-tag {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .header-actions {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  /* Main Nav - Hidden by default */
  .main-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto;
  }

  .main-nav.open {
    display: block !important;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin: 0;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 6px;
    background: transparent;
    color: var(--primary);
    width: 100%;
  }

  .main-nav ul li a:hover {
    background: var(--light);
  }

  .main-nav ul li a .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
  }

  /* Dropdown - Mobile */
  .menu-dropdown {
    position: relative;
    width: 100%;
  }

  .dropdown-menu {
    display: none !important;
    position: static !important;
    background: var(--light) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    padding: 0 !important;
    margin: 4px 0 0 16px !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .menu-dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu a {
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    background: transparent !important;
    justify-content: flex-start !important;
  }

  .dropdown-menu a:hover {
    background: var(--gold-soft) !important;
  }

  .menu-dropdown.open > a .fa-chevron-down {
    transform: rotate(180deg);
  }

  /* Hero */
  .page-hero {
    padding: 50px 0 40px;
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .page-kicker {
    font-size: 10px;
    padding: 4px 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .page-hero::before,
  .page-hero::after {
    display: none;
  }

  /* Grids */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .article-grid,
  .judgement-grid {
    grid-template-columns: 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0;
  }

  .section-heading h2 {
    font-size: 26px;
  }
}

/* ========================================
   RESPONSIVE - SMALL PHONE
   ======================================== */
@media (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
  }

  .topbar-contact {
    justify-content: center;
    gap: 10px;
  }

  .header-inner {
    padding: 8px 12px;
    min-height: 54px;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-tag {
    font-size: 7px;
    letter-spacing: 0.5px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2.5px;
  }

  .page-hero {
    padding: 40px 0 30px;
    min-height: 250px;
  }

  .page-hero h1 {
    font-size: 22px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .main-nav {
    padding: 12px;
  }

  .main-nav ul li a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .dropdown-menu {
    margin-left: 12px !important;
  }

  .dropdown-menu a {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
  }

  .cta-strip .btn {
    width: 100%;
    text-align: center;
  }

  .floating-cta a {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  .site-header,
  .topbar,
  .floating-cta,
  .menu-toggle {
    display: none !important;
  }

  .section {
    padding: 20px 0 !important;
  }

  body {
    background: white !important;
  }
}