/* =========================================================================
   VIDENT - Crowns & Bridges (pillar service page) - PAGE-SPECIFIC CSS
   Load only on the 3 language URLs of this page via the Site Assets Manager
   "Asset key" field (one shared key, e.g. cb-crowns-bridges, used on all
   three language pages so they compile to one shared, cached file):
     EN  /en/crowns-bridges-antwerp/
     NL  /kronen-bruggen-antwerpen/   (root language)
     FR  /fr/couronnes-bridges/

   Everything is scoped under .cb-page so nothing here can leak onto, or be
   overridden by, any other Elementor widget or page (Master Rule Sec33/34).
   The former page source declared *,*::before,*::after / html / body / h1-h4
   / p / a / ul / img as bare, unscoped selectors - every one of those has
   been rescoped under .cb-page below; that was the single biggest Elementor-
   safety defect found in the audit (see SEO NOTES Sec0 in the audit package).

   Relies on the sitewide global.css for, and intentionally does NOT
   redeclare: the .reveal/.image-reveal scroll-reveal system (incl.
   .reveal-d1..d4 stagger utilities), the body.vd-anim-ready gate, the
   .faq-item/.faq-q/.faq-a accordion (state class "active", driven by
   inline max-height, NOT display:none/block), .btn magnetic-hover host
   classes, the custom cursor, the scroll-progress bar, and .icon-ui /
   .icon-ui-sm (the sitewide "luxury line-icon" sizing utility, used below
   in place of every emoji glyph the old source used for decoration).
   (Master Rule Sec36: no duplicate functionality.)

   Removed as unused/dead weight versus the old page source (verified: zero
   matches in the rendered body of any of the 3 language versions) -
   .trust-bar*, .hero__price-*, .img-compare*, .cost__grid/.cost-card/
   .cost-*, .questions__grid/.q-card, .insurance-note, .consult-box,
   .confidence-box, .who__grid. See SEO NOTES Sec0 / PERFORMANCE NOTES.
   ========================================================================= */

.cb-page,
.cb-page *,
.cb-page *::before,
.cb-page *::after{box-sizing:border-box}

/* Page-local design tokens, prefixed --cb- so they can never collide with
   the sitewide --vd- token set. The palette is deliberately close to, but
   distinct from, --vd-gold/--vd-base (a warmer navy/teal/gold trio used
   consistently across this page); consolidating onto --vd-* directly was
   considered and rejected for this pass to avoid any visible colour shift
   on a page that already reads as a cohesive, finished design - flagged
   for a future design-system pass, not a bug (Master Rule Sec54/58). */
.cb-page{
  --cb-bg:#f9f7f4;
  --cb-white:#ffffff;
  --cb-navy:#1a2e4a;
  --cb-teal:#2a7d7b;
  --cb-teal-light:#3a9a98;
  --cb-gold:#b8965a;
  --cb-gold-light:#c9a96e;
  --cb-gold-ink:#d4b87a;
  --cb-coral:#c0614a;
  --cb-slate:#4a5568;
  --cb-slate-light:#718096;
  --cb-border:#e5dfd6;
  --cb-shadow-sm:0 2px 12px rgba(26,46,74,.07);
  --cb-shadow-md:0 8px 32px rgba(26,46,74,.11);
  --cb-shadow-lg:0 20px 56px rgba(26,46,74,.15);
  --cb-radius-sm:8px;
  --cb-radius-md:16px;
  --cb-radius-lg:24px;
  --cb-radius-xl:36px;
  --cb-font-body:'Inter',sans-serif;
  --cb-font-display:'Playfair Display',serif;
  --cb-ease:all .3s cubic-bezier(.4,0,.2,1);
  font-family:var(--cb-font-body);
  background:var(--cb-bg);
  color:var(--cb-slate);
  line-height:1.72;
  -webkit-font-smoothing:antialiased;
  display:block;
}
.cb-page img{display:block;max-width:100%;height:auto}
.cb-page a{text-decoration:none;color:inherit}
.cb-page ul{list-style:none}
.cb-page :focus-visible{outline:2px solid var(--cb-teal);outline-offset:2px}

/* LAYOUT */
.cb-page .wrap{width:100%;max-width:1120px;margin:0 auto;padding:0 24px}
.cb-page .section{padding:88px 0}
.cb-page .section--white{background:var(--cb-white)}
.cb-page .section--bg{background:var(--cb-bg)}
.cb-page .divider{height:1px;background:linear-gradient(to right,transparent,var(--cb-border),transparent)}

/* TYPOGRAPHY */
.cb-page h1{font-family:var(--cb-font-display);font-weight:700;color:var(--cb-navy);line-height:1.18}
.cb-page h2{font-family:var(--cb-font-display);font-weight:600;color:var(--cb-teal);line-height:1.2}
.cb-page h3{font-size:1.1rem;font-weight:600;color:var(--cb-navy);line-height:1.3}
.cb-page h4{font-size:.95rem;font-weight:600;color:var(--cb-gold);line-height:1.3}
.cb-page p{color:var(--cb-slate);line-height:1.75}
.cb-page .section-headline{font-size:clamp(1.5rem,2.8vw,2.15rem);margin-bottom:18px}
.cb-page .section-label{display:inline-flex;align-items:center;gap:6px;font-size:.7rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--cb-teal);background:rgba(42,125,123,.09);border-radius:50px;padding:5px 14px;margin-bottom:16px}
.cb-page .section-label--gold{color:var(--cb-gold);background:rgba(184,150,90,.1)}
.cb-page .section-label--coral{color:var(--cb-coral);background:rgba(192,97,74,.09)}
.cb-page .eyebrow{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--cb-gold-ink);margin-bottom:12px}

/* Shared inline-icon treatment: every SVG below carries the sitewide
   .icon-ui / .icon-ui-sm sizing class from global.css; these rules only
   add the coloured "chip" background each component originally used the
   emoji glyph inside. */
.cb-page .icon-chip{display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--cb-teal)}

/* BUTTONS (page-scoped double-dash modifiers, distinct from the sitewide
   .btn-primary/.btn-soft/.btn-gold naming so the two systems never collide -
   Master Rule Sec36). */
.cb-page .btn{display:inline-flex;align-items:center;gap:8px;font-family:var(--cb-font-body);font-weight:600;font-size:.9rem;letter-spacing:.01em;border:none;cursor:pointer;transition:var(--cb-ease);text-decoration:none;white-space:nowrap;border-radius:50px}
.cb-page .btn svg{width:17px;height:17px;flex-shrink:0}
.cb-page .btn--teal{background:var(--cb-teal);color:#fff;padding:14px 30px;box-shadow:0 4px 18px rgba(42,125,123,.35)}
.cb-page .btn--teal:hover,.cb-page .btn--teal:focus-visible{background:var(--cb-teal-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(42,125,123,.45)}
.cb-page .btn--gold{background:var(--cb-gold);color:#fff;padding:14px 30px;box-shadow:0 4px 18px rgba(184,150,90,.35)}
.cb-page .btn--gold:hover,.cb-page .btn--gold:focus-visible{background:var(--cb-gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(184,150,90,.45)}
.cb-page .btn--outline-white{background:transparent;color:#fff;padding:13px 28px;border:2px solid rgba(255,255,255,.55)}
.cb-page .btn--outline-white:hover,.cb-page .btn--outline-white:focus-visible{background:rgba(255,255,255,.12);border-color:#fff;transform:translateY(-2px)}

/* HERO */
.cb-page .hero{background:linear-gradient(150deg,#111f32 0%,#1a3a52 50%,#1a3a3a 100%);padding:72px 0 80px;position:relative;overflow:hidden}
.cb-page .hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 55% 65% at 75% 50%,rgba(42,125,123,.16) 0%,transparent 65%),radial-gradient(ellipse 35% 45% at 10% 80%,rgba(184,150,90,.1) 0%,transparent 60%);pointer-events:none}
.cb-page .hero::after{content:'';position:absolute;bottom:-1px;left:0;right:0;height:64px;background:var(--cb-bg);clip-path:ellipse(55% 100% at 50% 100%)}
.cb-page .hero__grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;position:relative;z-index:1}
.cb-page .hero__badge{display:inline-flex;align-items:center;gap:8px;background:rgba(184,150,90,.18);border:1px solid rgba(184,150,90,.3);border-radius:50px;padding:5px 15px;font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--cb-gold-ink);margin-bottom:20px}
.cb-page .hero__dot{width:6px;height:6px;background:var(--cb-gold-ink);border-radius:50%;animation:cb-blink 2s infinite}
@keyframes cb-blink{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(1.5)}}
@media (prefers-reduced-motion:reduce){.cb-page .hero__dot{animation:none}}
.cb-page .hero-headline{font-size:clamp(1.85rem,3.4vw,2.85rem);color:#fff;margin-bottom:18px}
.cb-page .hero-headline span{color:var(--cb-gold-ink)}
.cb-page .hero-subline{font-size:1rem;color:rgba(255,255,255,.75);margin-bottom:32px;max-width:480px}
.cb-page .hero__cta-row{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:36px}
.cb-page .hero__trust{display:flex;align-items:center;flex-wrap:wrap;gap:18px}
.cb-page .hero__stars-badge{display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);border-radius:50px;padding:8px 16px}
.cb-page .hero__stars-badge .stars{color:#fbbf24;font-size:.95rem;letter-spacing:2px}
.cb-page .hero__stars-badge span{font-size:.8rem;color:rgba(255,255,255,.8);font-weight:500}
.cb-page .hero__trust-pill{font-size:.78rem;color:rgba(255,255,255,.62);display:flex;align-items:center;gap:5px}
.cb-page .hero__trust-pill::before{content:"";width:13px;height:13px;flex-shrink:0;background:var(--cb-teal-light);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat}
.cb-page .hero__card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--cb-radius-lg);padding:28px 26px;backdrop-filter:blur(8px)}
.cb-page .hero__card-title{font-size:.68rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--cb-gold-ink);margin-bottom:18px;display:flex;align-items:center;gap:10px}
.cb-page .hero__card-title::after{content:'';flex:1;height:1px;background:rgba(201,168,76,.3)}
.cb-page .hero__summary-list{display:flex;flex-direction:column;gap:0}
.cb-page .hero__summary-list li{display:flex;align-items:flex-start;gap:12px;font-size:.875rem;color:rgba(255,255,255,.85);line-height:1.6;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.07)}
.cb-page .hero__summary-list li:last-child{border-bottom:none;padding-bottom:0}
.cb-page .hero__summary-list li:first-child{padding-top:0}
.cb-page .hero__summary-list li::before{content:'';width:18px;height:18px;min-width:18px;background:var(--cb-teal);border-radius:50%;flex-shrink:0;margin-top:1px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-size:10px;background-position:center;background-repeat:no-repeat}
.cb-page .hero__summary-list li strong{color:var(--cb-gold-ink);font-weight:600}

/* INTRO / TWO-COLUMN WITH DOCTOR CARD */
.cb-page .intro__grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.cb-page .intro__lead{font-size:.97rem;line-height:1.78;margin-bottom:16px}
.cb-page .highlight-box{background:rgba(192,97,74,.07);border:1px solid rgba(192,97,74,.18);border-radius:var(--cb-radius-sm);padding:16px 18px;margin-bottom:14px}
.cb-page .highlight-box__q{font-size:1rem;font-weight:700;color:var(--cb-coral);margin-bottom:6px}
.cb-page .highlight-box__a{font-size:.9rem;color:var(--cb-slate);line-height:1.7;margin:0}
.cb-page .feature-list{display:flex;flex-direction:column;gap:10px}
.cb-page .fl-item{display:flex;align-items:flex-start;gap:13px;padding:14px 16px;background:var(--cb-bg);border-radius:var(--cb-radius-sm);border:1px solid var(--cb-border);transition:var(--cb-ease)}
.cb-page .fl-item:hover,.cb-page .fl-item:focus-within{border-color:var(--cb-teal);box-shadow:var(--cb-shadow-sm);transform:translateX(3px)}
.cb-page .fl-icon{width:34px;height:34px;background:var(--cb-teal);border-radius:7px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#fff}
.cb-page .fl-icon svg{width:16px;height:16px}
.cb-page .fl-title{font-size:.88rem;font-weight:600;color:var(--cb-navy);margin-bottom:1px}
.cb-page .fl-desc{font-size:.79rem;color:var(--cb-slate-light);line-height:1.5}

/* DOCTOR CARD */
.cb-page .doctor-card{background:var(--cb-white);border:1px solid var(--cb-border);border-radius:var(--cb-radius-lg);overflow:hidden;box-shadow:var(--cb-shadow-md);position:sticky;top:20px}
.cb-page .doctor-card__head{background:linear-gradient(140deg,#111f32 0%,#1e3d5a 100%);padding:28px 24px;text-align:center}
.cb-page .doctor-card__photo{width:96px;height:96px;border-radius:50%;object-fit:cover;object-position:center top;border:3px solid rgba(255,255,255,.25);margin:0 auto 14px;display:block}
.cb-page .doctor-card__name{font-family:var(--cb-font-display);font-size:1.2rem;color:#fff;margin-bottom:4px}
.cb-page .doctor-card__role{font-size:.78rem;color:rgba(255,255,255,.65)}
.cb-page .doctor-card__body{padding:22px}
.cb-page .dc-stat{display:flex;align-items:flex-start;gap:11px;padding:11px 0;border-bottom:1px solid var(--cb-border)}
.cb-page .dc-stat:last-of-type{border-bottom:none}
.cb-page .dc-stat__icon{color:var(--cb-teal);flex-shrink:0;margin-top:1px;display:flex}
.cb-page .dc-stat__icon svg{width:18px;height:18px}
.cb-page .dc-stat__label{font-size:.72rem;color:var(--cb-slate-light);margin-bottom:2px}
.cb-page .dc-stat__value{font-size:.87rem;font-weight:600;color:var(--cb-navy);line-height:1.4}
.cb-page .dc-tags{margin-top:16px;padding:14px;background:rgba(42,125,123,.06);border-radius:var(--cb-radius-sm)}
.cb-page .dc-tags__title{font-size:.68rem;font-weight:700;color:var(--cb-teal);text-transform:uppercase;letter-spacing:.09em;margin-bottom:9px}
.cb-page .dc-tags__wrap{display:flex;flex-wrap:wrap;gap:5px}
.cb-page .dc-tag{font-size:.7rem;font-weight:500;color:var(--cb-navy);background:var(--cb-white);border:1px solid var(--cb-border);border-radius:50px;padding:3px 10px}

/* RIGHT-FOR-YOU / CHECKLIST / ASSESS-BOX (crown, bridge, treatment-planning sections) */
.cb-page .rfy__grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.cb-page .checklist{display:flex;flex-direction:column;gap:9px}
.cb-page .cl-item{display:flex;align-items:flex-start;gap:11px;padding:13px 15px;background:var(--cb-white);border-radius:var(--cb-radius-sm);border:1px solid var(--cb-border);font-size:.9rem;color:var(--cb-slate);transition:var(--cb-ease)}
.cb-page .cl-item:hover{border-color:var(--cb-teal);box-shadow:var(--cb-shadow-sm)}
.cb-page .cl-check{width:20px;height:20px;background:var(--cb-teal);border-radius:5px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#fff;font-size:.65rem;font-weight:700}
.cb-page .ps-photo{margin-top:18px;border-radius:var(--cb-radius-md);overflow:hidden;box-shadow:var(--cb-shadow-md);max-width:50%}
.cb-page .ps-photo img{width:100%;display:block;height:auto}
.cb-page .assess-box{background:var(--cb-navy);border-radius:var(--cb-radius-lg);padding:34px 30px}
.cb-page .assess-box h3{color:#fff;font-size:1.1rem;margin-bottom:12px}
.cb-page .assess-box p{color:rgba(255,255,255,.75);font-size:.9rem;margin-bottom:18px;line-height:1.72}
.cb-page .assess-list{display:flex;flex-direction:column;gap:9px;margin-bottom:24px}
.cb-page .assess-list li{display:flex;align-items:flex-start;gap:9px;font-size:.87rem;color:rgba(255,255,255,.82);line-height:1.5}
.cb-page .assess-list li::before{content:'';width:15px;height:15px;background:var(--cb-gold);border-radius:50%;flex-shrink:0;margin-top:2px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-size:9px;background-position:center;background-repeat:no-repeat}

/* PROCESS STEPS */
.cb-page .process-intro{text-align:center;max-width:620px;margin:0 auto 60px}
.cb-page .process-step{display:grid;grid-template-columns:56px 1fr;gap:0;position:relative}
.cb-page .ps-left{display:flex;flex-direction:column;align-items:center}
.cb-page .ps-num{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:700;color:#fff;flex-shrink:0;position:relative;z-index:1;box-shadow:0 4px 14px rgba(42,125,123,.3)}
.cb-page .ps-num--teal{background:var(--cb-teal)}
.cb-page .ps-num--gold{background:var(--cb-gold)}
.cb-page .ps-num--coral{background:var(--cb-coral)}
.cb-page .ps-num--green{background:#4a8a7a}
.cb-page .ps-num--navy{background:var(--cb-navy)}
.cb-page .ps-line{width:2px;flex:1;background:linear-gradient(to bottom,var(--cb-teal),var(--cb-border));margin:6px 0}
.cb-page .process-step:last-child .ps-line{display:none}
.cb-page .ps-content{padding:0 0 48px 20px;min-width:0}
.cb-page .process-step:last-child .ps-content{padding-bottom:0}
.cb-page .ps-label{font-size:.68rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--cb-gold);margin-bottom:5px}
.cb-page .ps-title{font-size:clamp(1rem,2.5vw,1.18rem);font-weight:700;color:var(--cb-navy);margin-bottom:11px;line-height:1.3}
.cb-page .ps-text{font-size:.93rem;color:var(--cb-slate);line-height:1.75;margin-bottom:12px}
.cb-page .ps-intro-label{font-size:.88rem;font-weight:600;color:var(--cb-navy);margin-bottom:8px;margin-top:4px}
.cb-page .ps-bullets{display:flex;flex-direction:column;gap:7px;margin-bottom:14px;padding-left:0}
.cb-page .ps-bullet{display:flex;align-items:flex-start;gap:9px;font-size:.88rem;color:var(--cb-slate);line-height:1.55}
.cb-page .ps-bullet::before{content:'\2192';color:var(--cb-teal);font-weight:700;flex-shrink:0;margin-top:1px;font-size:.88rem}
.cb-page .ps-callout{font-style:italic;font-weight:600;color:var(--cb-teal);font-size:.93rem;border-left:3px solid var(--cb-gold);padding-left:14px;margin-top:14px;line-height:1.6}

/* COMFORT / MATERIALS GRID (reused for the "why precision matters" 6-up grid
   and the 3-up materials grid) */
.cb-page .comfort-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px;margin-bottom:14px}
.cb-page .comfort-card{background:var(--cb-bg);border:1px solid var(--cb-border);border-radius:var(--cb-radius-sm);padding:18px 14px;text-align:center}
.cb-page .comfort-card__icon{display:flex;align-items:center;justify-content:center;margin:0 auto 9px;color:var(--cb-teal)}
.cb-page .comfort-card__icon svg{width:22px;height:22px}
.cb-page .comfort-card__title{font-size:.85rem;font-weight:600;color:var(--cb-navy);margin-bottom:3px}
.cb-page .comfort-card__text{font-size:.76rem;color:var(--cb-slate-light);line-height:1.45}

/* WHO-CARDS (numbered highlight list, reused for "why VIDENT" / longevity factors) */
.cb-page .who-cards{display:flex;flex-direction:column;gap:10px}
.cb-page .who-card{display:flex;align-items:flex-start;gap:12px;padding:16px 18px;background:var(--cb-white);border-radius:var(--cb-radius-sm);border:1px solid var(--cb-border);transition:var(--cb-ease)}
.cb-page .who-card:hover{border-color:var(--cb-gold);transform:translateX(3px)}
.cb-page .who-num{font-size:.72rem;font-weight:700;color:#fff;background:var(--cb-gold);width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cb-page .who-text{font-size:.9rem;color:var(--cb-slate);line-height:1.55}

/* REVIEWS */
.cb-page .reviews__header{text-align:center;margin-bottom:44px}
.cb-page .reviews__grid.single{display:grid;grid-template-columns:1fr;max-width:640px;margin:0 auto}
.cb-page .rating-bar{display:flex;align-items:center;justify-content:center;gap:16px;background:var(--cb-bg);border:1px solid var(--cb-border);border-radius:var(--cb-radius-md);padding:18px 24px;margin-bottom:20px;flex-wrap:wrap}
.cb-page .rating-big{font-size:2.6rem;font-weight:700;color:var(--cb-navy);line-height:1}
.cb-page .rating-stars{color:#f59e0b;font-size:1.05rem;letter-spacing:3px;margin-bottom:2px}
.cb-page .rating-count{font-size:.78rem;color:var(--cb-slate-light)}
.cb-page .google-logo{display:flex;align-items:center;gap:6px;font-size:.74rem;font-weight:600;color:var(--cb-slate)}
.cb-page .google-logo img{width:48px}
.cb-page .gd-review-slider{display:block;max-width:100%;margin:0;position:relative;direction:ltr;padding-bottom:68px;box-sizing:border-box}
.cb-page .gd-review-slider *{box-sizing:border-box}
.cb-page .gd-review-slider .gd-card{position:relative;border-radius:20px;padding:26px;background:#0d1f35;border:2px solid transparent;background-image:linear-gradient(#0d1f35,#0d1f35),linear-gradient(135deg,rgba(42,125,123,1) 0%,rgba(184,150,90,1) 50%,rgba(42,125,123,1) 100%);background-origin:padding-box,border-box;background-clip:padding-box,border-box;box-shadow:0 14px 40px rgba(13,31,53,.5);min-height:240px;display:none;flex-direction:column;justify-content:space-between}
.cb-page .gd-review-slider .gd-card.active{display:flex}
.cb-page .gd-review-slider .gd-quote{font-size:.95rem;line-height:1.72;color:rgba(255,255,255,.88);margin:0 0 22px;font-weight:300}
.cb-page .gd-review-slider .gd-meta{display:flex;align-items:center;gap:11px;border-left:2px solid var(--cb-gold);padding-left:13px}
.cb-page .gd-review-slider .gd-avatar{width:40px;height:40px;background:var(--cb-teal);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:600;font-size:16px}
.cb-page .gd-review-slider .gd-stars{display:flex;gap:2px;color:#f59e0b;font-size:.9rem}
.cb-page .gd-review-slider .gd-name{margin-left:auto;color:var(--cb-gold-light);font-size:.88rem;font-weight:600}
.cb-page .gd-review-slider .gd-google{display:block;margin:14px auto 0;width:42px}
.cb-page .gd-review-slider .gd-arrow{position:absolute;bottom:6px;height:44px;width:44px;border-radius:50%;border:2px solid rgba(255,255,255,.6);background:rgba(42,125,123,.55);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;transition:var(--cb-ease)}
.cb-page .gd-review-slider .gd-arrow:hover,.cb-page .gd-review-slider .gd-arrow:focus-visible{background:var(--cb-teal);border-color:var(--cb-teal)}
.cb-page .gd-review-slider .gd-arrow svg{width:18px;height:18px;stroke:#fff;stroke-width:2.5;fill:none}
.cb-page .gd-review-slider .gd-prev{left:8%}
.cb-page .gd-review-slider .gd-next{right:8%}
@media (prefers-reduced-motion:reduce){.cb-page .gd-review-slider .gd-arrow{transition:none}}

/* BOOK / CONTACT */
.cb-page .book-section{background:linear-gradient(135deg,#0d1f35 0%,#1a3a38 55%,#0d1f35 100%);padding:88px 0}
.cb-page .book__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.cb-page .book__content h2{font-family:var(--cb-font-display);font-size:clamp(1.7rem,3.2vw,2.45rem);color:#fff;margin-bottom:16px;line-height:1.18}
.cb-page .book__content h2 span{color:var(--cb-gold-ink)}
.cb-page .book__content p{color:rgba(255,255,255,.72);font-size:.95rem;margin-bottom:20px;line-height:1.75}
.cb-page .book-clarity{display:flex;flex-direction:column;gap:8px;margin-bottom:30px}
.cb-page .book-clarity li{display:flex;align-items:flex-start;gap:9px;font-size:.88rem;color:rgba(255,255,255,.82);line-height:1.5}
.cb-page .book-clarity li::before{content:'\2192';color:var(--cb-gold-ink);font-weight:700;flex-shrink:0;margin-top:1px}
.cb-page .book-btns{display:flex;flex-wrap:wrap;gap:12px}
.cb-page .contact-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.13);border-radius:var(--cb-radius-lg);padding:32px;backdrop-filter:blur(8px)}
.cb-page .contact-card__label{font-size:.68rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--cb-gold-ink);margin-bottom:18px}
.cb-page .ct-item{display:flex;align-items:flex-start;gap:13px;padding:13px 0;border-bottom:1px solid rgba(255,255,255,.07)}
.cb-page .ct-item:last-of-type{border-bottom:none}
.cb-page .ct-icon{width:36px;height:36px;background:rgba(42,125,123,.25);border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#fff}
.cb-page .ct-icon svg{width:17px;height:17px}
.cb-page .ct-title{font-size:.68rem;color:rgba(255,255,255,.45);font-weight:600;text-transform:uppercase;letter-spacing:.08em;margin-bottom:3px}
.cb-page .ct-value{font-size:.88rem;color:rgba(255,255,255,.86);font-weight:500;line-height:1.5}
.cb-page .ct-value a{color:var(--cb-teal-light)}
.cb-page .ct-value a:hover,.cb-page .ct-value a:focus-visible{color:var(--cb-gold-ink)}
.cb-page .ct-sub{font-size:.73rem;color:rgba(255,255,255,.45);margin-top:2px}
.cb-page .contact-card__footer{margin-top:18px;padding-top:18px;border-top:1px solid rgba(255,255,255,.07);text-align:center}
.cb-page .contact-card__footer .stars{color:#f59e0b;font-size:.9rem;letter-spacing:2px}
.cb-page .contact-card__footer p{font-size:.74rem;color:rgba(255,255,255,.4);margin-top:3px}

/* FAQ (visual styling only - open/close state, icon rotate and content
   height are entirely handled by the sitewide global.css/.js ".active"
   class; this file never redeclares display:none/block or a competing
   max-height default, so the sitewide progressive-enhancement behaviour -
   FAQ answers readable even with no JS - is preserved, not fought). */
.cb-page .faq-header{text-align:center;margin-bottom:52px}
.cb-page .faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:start}
.cb-page .faq-item{background:var(--cb-bg);border:1px solid var(--cb-border);border-radius:var(--cb-radius-md);overflow:hidden;transition:var(--cb-ease)}
.cb-page .faq-item:hover{border-color:var(--cb-teal)}
.cb-page .faq-q{width:100%;background:none;border:none;text-align:left;padding:18px 20px;font-family:var(--cb-font-body);font-size:.92rem;font-weight:600;color:var(--cb-navy);cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:12px;line-height:1.4}
.cb-page .faq-q__icon{width:24px;height:24px;background:var(--cb-teal);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#fff;font-size:.95rem;font-weight:400;transition:var(--cb-ease)}
.cb-page .faq-a{padding:0 20px 18px;font-size:.88rem;color:var(--cb-slate);line-height:1.75;border-top:1px solid var(--cb-border);padding-top:14px}
.cb-page .faq-item.active .faq-q__icon{transform:rotate(45deg);background:var(--cb-coral)}

/* RESPONSIVE - TABLET (<=900px) */
@media(max-width:900px){
  .cb-page .hero__grid{grid-template-columns:1fr;gap:36px}
  .cb-page .hero{padding:60px 0 68px}
  .cb-page .intro__grid{grid-template-columns:1fr;gap:36px}
  .cb-page .doctor-card{position:static}
  .cb-page .reviews__grid.single{grid-template-columns:1fr}
  .cb-page .rfy__grid{grid-template-columns:1fr;gap:28px}
  .cb-page .book__grid{grid-template-columns:1fr;gap:36px}
  .cb-page .faq-grid{grid-template-columns:1fr}
  .cb-page .comfort-grid{grid-template-columns:repeat(2,1fr)}
}

/* RESPONSIVE - MOBILE (<=600px) */
@media(max-width:600px){
  .cb-page .section{padding:60px 0}
  .cb-page .wrap{padding:0 16px}
  .cb-page .book-section{padding:60px 0}
  .cb-page .hero-headline{font-size:1.7rem}
  .cb-page .hero__cta-row{flex-direction:column}
  .cb-page .hero__cta-row .btn{justify-content:center}
  .cb-page .book-btns{flex-direction:column}
  .cb-page .book-btns .btn{justify-content:center}
  .cb-page .process-step{grid-template-columns:44px 1fr}
  .cb-page .ps-num{width:38px;height:38px;font-size:.85rem}
  .cb-page .ps-content{padding:0 0 36px 14px}
  .cb-page .ps-text{font-size:.88rem}
  .cb-page .ps-bullet{font-size:.84rem}
  .cb-page .ps-photo{max-width:100%}
  .cb-page .comfort-grid{grid-template-columns:1fr}
  .cb-page .hero__trust{gap:10px}
}

/* RESPONSIVE - SMALL MOBILE (<=480px) */
@media(max-width:480px){
  .cb-page .assess-box{padding:24px 20px}
  .cb-page .contact-card{padding:22px 18px}
  .cb-page .doctor-card__body{padding:16px}
  .cb-page .rating-bar{flex-wrap:wrap;gap:10px}
}