/* =============================================================
   CROWN WATCH GROUP — MAIN STYLESHEET
   Design System: Luxury Minimalist

   Colors:
     --cwg-black:     #0A0A0A
     --cwg-white:     #FFFFFF
     --cwg-offwhite:  #F7F6F2
     --cwg-lightgray: #E8E6E0
     --cwg-midgray:   #9B9691
     --cwg-darkgray:  #2C2C2C
     --cwg-green:     #1B4332
     --cwg-green-h:   #14352A

   Typography:
     Display: 'Playfair Display', serif
     Body/UI: 'Inter', sans-serif
   ============================================================= */

/* ── 1. CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --cwg-black:      #0A0A0A;
  --cwg-white:      #FFFFFF;
  --cwg-offwhite:   #F7F6F2;
  --cwg-lightgray:  #E8E6E0;
  --cwg-midgray:    #9B9691;
  --cwg-darkgray:   #2C2C2C;
  --cwg-green:      #1B4332;
  --cwg-green-h:    #14352A;
  --cwg-gold:       #C9A84C;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-ui:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:      1200px;
  --gutter:         clamp(20px, 4vw, 60px);
  --section-gap:    clamp(60px, 8vw, 120px);

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;

  --transition:     0.2s ease;
  --transition-md:  0.35s ease;

  --shadow-card:    0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover:   0 8px 40px rgba(0,0,0,0.12);
}

/* ── 2. GLOBAL RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cwg-darkgray);
  background: var(--cwg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cwg-black);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--cwg-green); }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cwg-black);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin: 0 0 1em;
  color: var(--cwg-darkgray);
}

.cwg-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cwg-gold);
  margin-bottom: 16px;
}

.cwg-section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 8px;
}

.cwg-section-sub {
  font-size: 17px;
  color: var(--cwg-midgray);
  max-width: 520px;
  line-height: 1.6;
}

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.cwg-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cwg-section {
  padding: var(--section-gap) 0;
}

.cwg-section--dark {
  background: var(--cwg-black);
  color: var(--cwg-white);
}

.cwg-section--dark h1,
.cwg-section--dark h2,
.cwg-section--dark h3,
.cwg-section--dark p {
  color: var(--cwg-white);
}

.cwg-section--offwhite {
  background: var(--cwg-offwhite);
}

.cwg-section--green {
  background: var(--cwg-green);
  color: var(--cwg-white);
}

.cwg-section--green h2,
.cwg-section--green p { color: var(--cwg-white); }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.cwg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.cwg-btn--primary {
  background: var(--cwg-green);
  color: var(--cwg-white);
  border-color: var(--cwg-green);
}

.cwg-btn--primary:hover {
  background: var(--cwg-green-h);
  border-color: var(--cwg-green-h);
  color: var(--cwg-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(27,67,50,0.3);
}

.cwg-btn--outline {
  background: transparent;
  color: var(--cwg-black);
  border-color: var(--cwg-black);
}

.cwg-btn--outline:hover {
  background: var(--cwg-black);
  color: var(--cwg-white);
  transform: translateY(-1px);
}

.cwg-btn--outline-white {
  background: transparent;
  color: var(--cwg-white);
  border-color: var(--cwg-white);
}

.cwg-btn--outline-white:hover {
  background: var(--cwg-white);
  color: var(--cwg-black);
}

.cwg-btn--whatsapp {
  background: #25D366;
  color: var(--cwg-white);
  border-color: #25D366;
}

.cwg-btn--whatsapp:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  color: var(--cwg-white);
}

.cwg-btn--lg {
  padding: 18px 42px;
  font-size: 15px;
}

.cwg-btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.cwg-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── 6. HEADER / NAVIGATION ────────────────────────────────── */
.cwg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-md), box-shadow var(--transition-md);
}

.cwg-header.scrolled {
  border-color: var(--cwg-lightgray);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.cwg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cwg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cwg-logo__mark {
  width: 36px;
  height: 36px;
  background: var(--cwg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cwg-logo__mark svg {
  width: 18px;
  height: 18px;
  fill: var(--cwg-white);
}

.cwg-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cwg-logo__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--cwg-black);
  letter-spacing: 0.02em;
}

.cwg-logo__tagline {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

.cwg-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.cwg-nav a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cwg-darkgray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.cwg-nav a:hover,
.cwg-nav a.active {
  color: var(--cwg-black);
  background: var(--cwg-offwhite);
}

.cwg-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu toggle */
.cwg-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.cwg-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cwg-black);
  border-radius: 2px;
  transition: all var(--transition-md);
}

/* Mobile menu */
.cwg-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cwg-white);
  z-index: 999;
  padding: 32px var(--gutter);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.cwg-mobile-menu.open { display: flex; }

.cwg-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-family: var(--font-display);
  color: var(--cwg-black);
  border-bottom: 1px solid var(--cwg-lightgray);
}

/* ── 7. HERO ────────────────────────────────────────────────── */
.cwg-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--cwg-black);
  overflow: hidden;
  padding-top: 72px;
}

.cwg-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.cwg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
}

.cwg-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cwg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cwg-midgray);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cwg-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cwg-midgray);
}

.cwg-hero h1 {
  color: var(--cwg-white);
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.08;
}

.cwg-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.cwg-hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.cwg-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  animation: cwg-bounce 2.5s ease-in-out infinite;
}

.cwg-hero__scroll::after {
  content: '↓';
  font-size: 16px;
}

@keyframes cwg-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 8. TRUST STRIP ────────────────────────────────────────── */
.cwg-trust-strip {
  background: var(--cwg-offwhite);
  border-top: 1px solid var(--cwg-lightgray);
  border-bottom: 1px solid var(--cwg-lightgray);
  padding: 20px 0;
}

.cwg-trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

.cwg-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cwg-darkgray);
  letter-spacing: 0.01em;
}

.cwg-trust-item__icon {
  width: 32px;
  height: 32px;
  background: var(--cwg-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cwg-trust-item__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--cwg-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── 9. WATCH GRID ─────────────────────────────────────────── */
.cwg-watches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.cwg-watch-card {
  background: var(--cwg-white);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-md);
  position: relative;
  cursor: pointer;
}

.cwg-watch-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.cwg-watch-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cwg-offwhite);
  overflow: hidden;
}

.cwg-watch-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cwg-watch-card:hover .cwg-watch-card__image img {
  transform: scale(1.04);
}

.cwg-watch-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cwg-green);
  color: var(--cwg-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.cwg-watch-card__badge--sold {
  background: var(--cwg-midgray);
}

.cwg-watch-card__badge--reserved {
  background: #b7791f;
}

.cwg-watch-card__body {
  padding: 20px 22px 22px;
}

.cwg-watch-card__brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 6px;
}

.cwg-watch-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 6px;
  line-height: 1.2;
}

.cwg-watch-card__meta {
  font-size: 13px;
  color: var(--cwg-midgray);
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cwg-watch-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 16px;
}

.cwg-watch-card__price--por {
  font-size: 15px;
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--cwg-midgray);
  letter-spacing: 0.04em;
}

.cwg-watch-card__actions {
  display: flex;
  gap: 8px;
}

/* ── 10. WATCH SINGLE PAGE ─────────────────────────────────── */
.cwg-watch-single {
  padding-top: 72px;
}

.cwg-watch-single__layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
  padding: 60px 0;
}

.cwg-watch-gallery {
  position: sticky;
  top: 90px;
}

.cwg-watch-gallery__main {
  aspect-ratio: 1 / 1;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.cwg-watch-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cwg-watch-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cwg-watch-gallery__thumb {
  aspect-ratio: 1 / 1;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.cwg-watch-gallery__thumb.active,
.cwg-watch-gallery__thumb:hover {
  border-color: var(--cwg-black);
}

.cwg-watch-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Gallery expand icon ── */
.cwg-watch-gallery__main {
  cursor: zoom-in;
}

/* ── Lightbox overlay ──────────────────────────────────────── */
.cwg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cwg-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.cwg-lightbox__inner {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cwg-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease;
}

.cwg-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 9001;
}

.cwg-lightbox__close:hover {
  background: rgba(255,255,255,0.25);
}

.cwg-lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 9001;
  user-select: none;
}

.cwg-lightbox__arrow:hover  { background: rgba(255,255,255,0.25); }
.cwg-lightbox__arrow--prev  { left: 20px; }
.cwg-lightbox__arrow--next  { right: 20px; }

.cwg-lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: var(--font-ui);
  letter-spacing: 0.05em;
  z-index: 9001;
}

.cwg-watch-info__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 10px;
}

.cwg-watch-info h1 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.cwg-watch-info__badge {
  display: inline-block;
  background: rgba(27,67,50,0.1);
  color: var(--cwg-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cwg-watch-info__price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 8px;
}

.cwg-watch-info__sourcing {
  font-size: 13px;
  color: var(--cwg-green);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cwg-watch-info__sourcing::before {
  content: '✓';
  font-weight: 700;
}

.cwg-watch-specs {
  background: var(--cwg-offwhite);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
}

.cwg-watch-specs__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 16px;
}

.cwg-watch-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.cwg-watch-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cwg-watch-spec__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

.cwg-watch-spec__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--cwg-black);
}

.cwg-watch-info__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cwg-watch-info__ctas .cwg-btn {
  justify-content: center;
  width: 100%;
}

.cwg-watch-info__footer {
  font-size: 12px;
  color: var(--cwg-midgray);
  line-height: 1.5;
  border-top: 1px solid var(--cwg-lightgray);
  padding-top: 16px;
}

/* ── 11. HOW IT WORKS ──────────────────────────────────────── */
.cwg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: cwg-steps;
}

.cwg-step {
  position: relative;
  counter-increment: cwg-steps;
}

.cwg-step::before {
  content: counter(cwg-steps, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--cwg-lightgray);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.cwg-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cwg-black);
  margin-bottom: 10px;
}

.cwg-step__text {
  font-size: 15px;
  color: var(--cwg-midgray);
  line-height: 1.65;
}

/* Connector line between steps */
.cwg-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--cwg-lightgray);
  pointer-events: none;
}

.cwg-steps-wrapper { position: relative; }

/* ── 12. SELL / TRADE CARDS ────────────────────────────────── */
.cwg-service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cwg-service-card {
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}

.cwg-service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cwg-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cwg-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-md);
}

.cwg-service-card:hover::before { transform: scaleX(1); }

.cwg-service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cwg-white);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cwg-service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cwg-black);
  stroke-width: 1.5;
  fill: none;
}

.cwg-service-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cwg-service-card p {
  font-size: 15px;
  color: var(--cwg-midgray);
  margin-bottom: 28px;
}

/* ── 13. FORMS ─────────────────────────────────────────────── */
.cwg-form {
  max-width: 640px;
}

.cwg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cwg-form-field {
  margin-bottom: 20px;
}

.cwg-form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cwg-darkgray);
  margin-bottom: 8px;
}

.cwg-form-field input,
.cwg-form-field select,
.cwg-form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cwg-white);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--cwg-black);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.cwg-form-field input:focus,
.cwg-form-field select:focus,
.cwg-form-field textarea:focus {
  border-color: var(--cwg-black);
}

.cwg-form-field input::placeholder,
.cwg-form-field textarea::placeholder {
  color: var(--cwg-midgray);
}

.cwg-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B9691' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.cwg-form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.cwg-form-note {
  font-size: 12px;
  color: var(--cwg-midgray);
  margin-top: 4px;
}

/* Form success state */
.cwg-form-success {
  display: none;
  background: rgba(27,67,50,0.06);
  border: 1px solid rgba(27,67,50,0.2);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  text-align: center;
}

.cwg-form-success.visible { display: block; }

.cwg-form-success__icon {
  width: 52px;
  height: 52px;
  background: var(--cwg-green);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cwg-form-success__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--cwg-white);
  stroke-width: 2.5;
}

.cwg-form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.cwg-form-success p {
  color: var(--cwg-midgray);
  font-size: 15px;
}

.cwg-form-response-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cwg-green);
  margin-top: 12px;
}

/* ── 14. PAGE HERO (inner pages) ───────────────────────────── */
.cwg-page-hero {
  padding: calc(72px + 64px) 0 64px;
  background: var(--cwg-offwhite);
  border-bottom: 1px solid var(--cwg-lightgray);
}

.cwg-page-hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}

.cwg-page-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--cwg-midgray);
  max-width: 560px;
  line-height: 1.65;
}

/* ── 15. FILTERS (Available Watches) ───────────────────────── */
.cwg-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
  margin-bottom: 40px;
}

.cwg-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cwg-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

.cwg-filter-select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-ui);
  color: var(--cwg-darkgray);
  background: var(--cwg-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B9691' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.cwg-filter-select:focus {
  outline: none;
  border-color: var(--cwg-black);
}

/* ── 16. AUTHENTICITY / TRUST SECTION ──────────────────────── */
.cwg-trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cwg-trust-section__image {
  aspect-ratio: 4 / 3;
  background: var(--cwg-offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cwg-trust-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cwg-trust-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.cwg-trust-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cwg-trust-point__icon {
  width: 40px;
  height: 40px;
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cwg-trust-point__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cwg-black);
  stroke-width: 1.5;
  fill: none;
}

.cwg-trust-point__content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cwg-trust-point__content p {
  font-size: 14px;
  color: var(--cwg-midgray);
  margin: 0;
}

/* ── 17. CTA BANNER ────────────────────────────────────────── */
.cwg-cta-banner {
  background: var(--cwg-black);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.cwg-cta-banner h2 {
  color: var(--cwg-white);
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 16px;
}

.cwg-cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ── 18. FOOTER ────────────────────────────────────────────── */
.cwg-footer {
  background: var(--cwg-black);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 32px;
}

.cwg-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.cwg-footer__brand .cwg-logo__name {
  color: var(--cwg-white);
  font-size: 18px;
  margin-bottom: 4px;
  display: block;
}

.cwg-footer__brand .cwg-logo__tagline {
  color: rgba(255,255,255,0.4);
}

.cwg-footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 280px;
}

.cwg-footer__contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cwg-footer__contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.cwg-footer__contact a:hover {
  color: var(--cwg-white);
}

.cwg-footer__col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.cwg-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cwg-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.cwg-footer__links a:hover { color: var(--cwg-white); }

.cwg-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.cwg-footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.cwg-footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  max-width: 560px;
  line-height: 1.5;
  text-align: right;
}

/* ── 19. WHATSAPP FLOATING BUTTON ──────────────────────────── */
.cwg-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all var(--transition);
  animation: cwg-float-in 0.5s ease 1s backwards;
}

.cwg-whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.cwg-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--cwg-white);
}

.cwg-whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--cwg-black);
  color: var(--cwg-white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cwg-whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--cwg-black);
  border-right: none;
}

.cwg-whatsapp-float:hover .cwg-whatsapp-float__tooltip {
  opacity: 1;
}

@keyframes cwg-float-in {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* Mobile sticky CTA */
.cwg-mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--cwg-white);
  border-top: 1px solid var(--cwg-lightgray);
  padding: 12px 16px;
  gap: 10px;
}

.cwg-mobile-sticky-cta .cwg-btn {
  flex: 1;
  justify-content: center;
  padding: 14px 10px;
  font-size: 14px;
}

/* ── 20. ABOUT PAGE ─────────────────────────────────────────── */
.cwg-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cwg-about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cwg-lightgray);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}

.cwg-about-stat {
  background: var(--cwg-white);
  padding: 28px 24px;
  text-align: center;
}

.cwg-about-stat__number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--cwg-black);
  line-height: 1;
  margin-bottom: 6px;
}

.cwg-about-stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
}

/* ── 21. CONTACT PAGE ──────────────────────────────────────── */
.cwg-contact-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.cwg-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cwg-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cwg-contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--cwg-offwhite);
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cwg-contact-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cwg-black);
  stroke-width: 1.5;
  fill: none;
}

.cwg-contact-item__content h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.cwg-contact-item__content p,
.cwg-contact-item__content a {
  font-size: 14px;
  color: var(--cwg-midgray);
}

/* ── 22. LEGAL PAGES ───────────────────────────────────────── */
.cwg-legal-content {
  max-width: 760px;
  padding: 60px 0;
}

.cwg-legal-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.cwg-legal-content h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.cwg-legal-content p,
.cwg-legal-content li {
  font-size: 15px;
  color: var(--cwg-darkgray);
  line-height: 1.75;
}

.cwg-legal-content ul,
.cwg-legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.cwg-legal-content li { margin-bottom: 6px; }

/* ── 23. PAGINATION ─────────────────────────────────────────── */
.cwg-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
}

.cwg-pagination a,
.cwg-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cwg-lightgray);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--cwg-darkgray);
  transition: all var(--transition);
}

.cwg-pagination a:hover {
  background: var(--cwg-black);
  border-color: var(--cwg-black);
  color: var(--cwg-white);
}

.cwg-pagination .current {
  background: var(--cwg-black);
  border-color: var(--cwg-black);
  color: var(--cwg-white);
}

/* ── 24. INQUIRY MODAL ──────────────────────────────────────── */
.cwg-modal-overlay {
  position: fixed;
inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-md);
}

.cwg-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cwg-modal {
  background: var(--cwg-white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-md);
  max-height: 90vh;
  overflow-y: auto;
}

.cwg-modal-overlay.open .cwg-modal {
  transform: translateY(0);
}

.cwg-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--cwg-offwhite);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cwg-midgray);
  transition: all var(--transition);
}

.cwg-modal__close:hover {
  background: var(--cwg-lightgray);
  color: var(--cwg-black);
}

.cwg-modal__watch-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cwg-midgray);
  margin-bottom: 8px;
}

.cwg-modal h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

/* ── 25. DIVIDERS & UTILITIES ──────────────────────────────── */
.cwg-divider {
  height: 1px;
  background: var(--cwg-lightgray);
  margin: var(--section-gap) 0;
}

.cwg-text-center { text-align: center; }
.cwg-text-muted  { color: var(--cwg-midgray); }

.cwg-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cwg-section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.cwg-section-header--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.cwg-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cwg-badge--green { background: rgba(27,67,50,0.1); color: var(--cwg-green); }
.cwg-badge--dark  { background: var(--cwg-black); color: var(--cwg-white); }
.cwg-badge--gray  { background: var(--cwg-lightgray); color: var(--cwg-midgray); }

/* ── 26. EMPTY STATE ────────────────────────────────────────── */
.cwg-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--cwg-midgray);
}

.cwg-empty-state__icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.cwg-empty-state h3 {
  font-size: 22px;
  color: var(--cwg-black);
  margin-bottom: 8px;
}

/* ── 27. ASTRA OVERRIDES ────────────────────────────────────── */

/* Remove Astra default header */
#masthead,
.ast-masthead-custom-menu-items,
.ast-header-break-point { display: none !important; }

/* Full-width layout */
.ast-container,
.site-content .ast-container { max-width: 100% !important; padding: 0 !important; }
.entry-content, .ast-article-post, .site-main { margin: 0 !important; padding: 0 !important; }
.ast-page-builder-template .entry-content { margin: 0 !important; }
.ast-separate-container .site-content { padding: 0 !important; }
body.cwg-site .ast-separate-container { padding-top: 0 !important; }

/* Remove default entry padding */
.ast-article-post, .post-page-single { padding: 0 !important; }
.cwg-site .entry { margin: 0 !important; }

/* ── 28. RESPONSIVE — TABLET ────────────────────────────────── */
@media (max-width: 1024px) {
  .cwg-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cwg-watch-single__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cwg-watch-gallery { position: static; }

  .cwg-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
  }

  .cwg-steps::before { display: none; }

  .cwg-trust-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cwg-about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cwg-contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── 29. RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
    --gutter: 20px;
  }

  .cwg-nav { display: none; }
  .cwg-header__cta .cwg-btn { display: none; }
  .cwg-menu-toggle { display: flex; }

  .cwg-watches-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }

  .cwg-service-cards { grid-template-columns: 1fr; }

  .cwg-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cwg-footer__bottom { flex-direction: column; text-align: center; }
  .cwg-footer__disclaimer { text-align: center; }

  .cwg-form-row { grid-template-columns: 1fr; }

  .cwg-about-stat-grid { grid-template-columns: 1fr; }

  .cwg-mobile-sticky-cta { display: flex; }

  /* Push content above mobile sticky CTA */
  .cwg-watch-single__layout { padding-bottom: 90px; }
  .cwg-home #cwg-main-content,
  .cwg-watch-archive #cwg-main-content { padding-bottom: 80px; }

  /* Filters — horizontal scrollable row on mobile */
  .cwg-filters {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
    align-items: flex-end;
  }
  .cwg-filters::-webkit-scrollbar { display: none; }
  .cwg-filter-group { flex: 0 0 auto; width: auto; }
  .cwg-filter-select { width: 130px; font-size: 13px; }

  .cwg-whatsapp-float {
    bottom: 90px; /* above sticky CTA */
  }

  /* Homepage watch grid — horizontal scroll carousel */
  .cwg-home .cwg-watches-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 4px 0 12px;
  }
  .cwg-home .cwg-watches-grid::-webkit-scrollbar { display: none; }
  .cwg-home .cwg-watches-grid .cwg-watch-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .cwg-btn-group { flex-direction: column; }
  .cwg-btn-group .cwg-btn { width: 100%; justify-content: center; }

  .cwg-trust-strip__inner { gap: 16px; }
  .cwg-trust-item { font-size: 12px; }

  .cwg-hero { min-height: 100svh; }
}

/* ── 30. PRINT ──────────────────────────────────────────────── */
@media print {
  .cwg-header,
  .cwg-whatsapp-float,
  .cwg-mobile-sticky-cta,
  .cwg-footer { display: none !important; }
}

/* ── 31. FOCUS STATES (Accessibility) ──────────────────────── */
:focus-visible {
  outline: 2px solid var(--cwg-green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── 32. REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 33. SCROLL REVEAL ──────────────────────────────────────── */
.cwg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.cwg-reveal.cwg-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .cwg-reveal { opacity: 1; transform: none; }
}

/* ── 34. SECTION HEADER SPLIT LAYOUT ───────────────────────── */
.cwg-section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── 35. WATCH CARD PLACEHOLDER ─────────────────────────────── */
.cwg-watch-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #111 0%, #1f1f1f 50%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cwg-watch-card__placeholder svg {
  width: 52px;
  height: 52px;
  opacity: 0.15;
  fill: none;
  stroke: var(--cwg-gold);
  stroke-width: 1;
}

/* ── 36. TRUST SECTION INTRO TEXT ───────────────────────────── */
.cwg-trust-section__intro {
  color: var(--cwg-midgray);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 16px;
}

/* ── 37. CTA BANNER EYEBROW ─────────────────────────────────── */
.cwg-cta-banner .cwg-eyebrow {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em;
}

/* ── 38. STEPS SECTION CTA ──────────────────────────────────── */
.cwg-steps-cta {
  margin-top: 48px;
}

/* ── 39. EMPTY STATE CTA ────────────────────────────────────── */
.cwg-empty-state .cwg-btn {
  margin-top: 20px;
}

/* ── 40. SKIP TO CONTENT ─────────────────────────────────────── */
.cwg-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 20px;
  background: var(--cwg-green);
  color: var(--cwg-white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
}
.cwg-skip-link:focus {
  top: 0;
  outline: 2px solid var(--cwg-gold);
  outline-offset: 2px;
}
