/* ==========================================================================
   NASSEF & ASSOCIATES CONSULTANCY GROUP — SHARED BRAND STYLESHEET
   Navy / Ivory / Gold system, with a single accent colour per product line.
   Used by every page on the site. Edit once here — every page picks it up.
   ========================================================================== */

:root{
  --navy:#06243D;
  --navy-2:#0C3457;
  --ivory:#F6F4EF;
  --gold:#FFB703;
  --white:#FFFFFF;
  --ink-soft:#57626F;
  --hairline:rgba(6,36,61,0.12);
  --hairline-light:rgba(255,255,255,0.16);

  /* per-product accent colours, sampled directly from the catalogue's own palette */
  --acc-meridian:#6740D9;
  --acc-vantage:#0FB8A6;
  --acc-charter:#1769AA;
  --acc-ascent:#FF5A4F;
  --acc-governova:#FFB703;

  --maxw:1160px;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter','TeX Gyre Heros','Helvetica Neue',Helvetica,Arial,sans-serif;
  color:var(--navy);
  background:var(--ivory);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Poppins','Liberation Serif',Georgia,sans-serif;
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--navy);
  line-height:1.15;
}
p{color:var(--ink-soft);}
a{color:inherit;text-decoration:none;}
img{display:block;max-width:100%;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px;}

.eyebrow{
  font-size:12px;letter-spacing:0.14em;text-transform:uppercase;font-weight:700;
  display:flex;align-items:center;gap:10px;color:var(--gold);
}
.eyebrow::before{content:'';width:20px;height:1px;background:currentColor;}

.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 26px;border-radius:10px;
  font-weight:600;font-size:14.5px;font-family:inherit;
  border:1px solid transparent;cursor:pointer;
  background:none; /* <button> elements get a UA-default grey fill otherwise — this was showing through on .btn-outline-light/.btn-outline-navy */
  transition:transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover{transform:translateY(-1px);}
.btn-gold{background:var(--gold);color:var(--navy);}
.btn-gold:hover{background:#d4b378;}
.btn-outline-light{border-color:rgba(255,255,255,0.4);color:var(--white);}
.btn-outline-light:hover{border-color:var(--white);}
.btn-outline-navy{border-color:var(--navy);color:var(--navy);}
.btn-outline-navy:hover{background:var(--navy);color:var(--white);}
.btn-text{background:none;border:none;color:var(--ink-soft);font-weight:600;font-size:14px;cursor:pointer;}
.btn-text:hover{color:var(--navy);}
.btn:disabled{opacity:0.65;cursor:not-allowed;transform:none;}

/* ---------------- NAV ---------------- */
nav.sitenav{
  position:sticky;top:0;z-index:80;
  background:rgba(11,31,58,0.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--hairline-light);
}
.navwrap{max-width:var(--maxw);margin:0 auto;padding:14px 28px;display:flex;align-items:center;justify-content:space-between;gap:20px;}
.navwrap .logo img{height:34px;width:auto;}
.navlinks{display:flex;gap:28px;align-items:center;flex-wrap:wrap;}
.navlinks a{color:rgba(255,255,255,0.72);font-size:13.5px;font-weight:600;letter-spacing:0.01em;transition:color .2s;}
.navlinks a:hover, .navlinks a.active{color:var(--white);}
.navcta{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.demo-icon-btn{
  display:inline-flex;align-items:center;gap:7px;
  background:transparent;border:1px solid rgba(255,255,255,0.35);color:var(--white);
  padding:9px 16px;border-radius:10px;font-size:13px;font-weight:600;cursor:pointer;
  transition:border-color .2s, background .2s;
}
.demo-icon-btn:hover{border-color:var(--gold);background:rgba(195,162,96,0.12);}
.demo-icon-btn svg{width:15px;height:15px;flex-shrink:0;}

/* ---------------- PRODUCTS NAV DROPDOWN ---------------- */
.nav-dropdown{position:relative;}
.nav-dropdown-trigger{
  display:inline-flex;align-items:center;gap:6px;background:none;border:none;cursor:pointer;
  color:rgba(255,255,255,0.72);font-size:13.5px;font-weight:600;letter-spacing:0.01em;font-family:inherit;
  transition:color .2s;padding:0;
}
.nav-dropdown-trigger:hover,.nav-dropdown-trigger.active{color:var(--white);}
.nav-dropdown-chev{width:14px;height:14px;flex-shrink:0;transition:transform .2s ease;}
.nav-dropdown.open .nav-dropdown-chev{transform:rotate(180deg);}
.nav-dropdown-menu{
  display:none;position:absolute;top:calc(100% + 18px);left:50%;transform:translateX(-50%);
  min-width:290px;background:var(--navy-2);border:1px solid rgba(255,255,255,0.14);border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);padding:10px;z-index:90;
}
.nav-dropdown.open .nav-dropdown-menu{display:block;}
.nav-dropdown-menu a{
  display:flex;flex-direction:column;gap:2px;padding:11px 14px;border-radius:10px;
  color:rgba(255,255,255,0.85);transition:background .15s;
}
.nav-dropdown-menu a:hover{background:rgba(255,255,255,0.08);color:var(--white);}
.nav-dropdown-menu a .dname{font-size:13.5px;font-weight:700;}
.nav-dropdown-menu a .dtag{font-size:11.5px;color:rgba(255,255,255,0.5);}

/* mobile nav toggle (hidden on desktop) */
.nav-toggle{
  display:none;background:none;border:none;color:var(--white);cursor:pointer;
  width:38px;height:38px;align-items:center;justify-content:center;flex-shrink:0;
}
.nav-toggle svg{width:22px;height:22px;}

/* ---------------- HERO ---------------- */
.hero{
  background:linear-gradient(180deg,var(--navy) 0%, var(--navy-2) 100%);
  color:var(--white);
  padding:84px 0 64px;
  position:relative;
  overflow:hidden;
}
.hero-corner{position:absolute;z-index:0;}
.hero-corner.c-gold{top:0;left:0;width:90px;height:16px;background:var(--gold);}
.hero-corner.c-coral{top:0;right:0;width:90px;height:90px;background:var(--acc-ascent);clip-path:polygon(100% 0,100% 100%,0 0);}
.hero-corner.c-blue{top:36px;right:52px;width:70px;height:70px;background:var(--acc-charter);clip-path:polygon(0 0,100% 100%,0 100%);}
.hero-corner.c-purple{bottom:0;left:0;width:64px;height:96px;background:var(--acc-meridian);}
.hero-corner.c-teal{bottom:0;right:0;width:96px;height:96px;background:var(--acc-vantage);}
.hero .wrap{position:relative;z-index:1;}
.hero-logo{height:76px;width:auto;margin-bottom:26px;}
.hero .eyebrow{color:var(--gold);}
.hero h1{color:var(--white);font-size:clamp(34px,5vw,52px);margin:16px 0 18px;max-width:760px;}
.hero p.lead{color:rgba(255,255,255,0.68);font-size:17px;max-width:560px;margin-bottom:30px;}
.hero .herobtns{display:flex;gap:14px;flex-wrap:wrap;}

/* subpage hero, shorter */
.subhero{padding:56px 0 48px;}
.subhero .tag{
  display:inline-block;font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  padding:5px 12px;border-radius:20px;margin-bottom:18px;color:var(--navy);
}

/* ---------------- SECTIONS ---------------- */
section{padding:80px 0;}
.section-head{max-width:640px;margin-bottom:44px;}
.section-head h2{font-size:clamp(26px,3.6vw,36px);margin-top:12px;}
.section-head p{margin-top:14px;font-size:15.5px;}
.section-dark{background:var(--navy);color:var(--white);}
.section-dark h2, .section-dark h3{color:var(--white);}
.section-dark p{color:rgba(255,255,255,0.62);}
.section-dark .eyebrow{color:var(--gold);}
.hr{height:1px;background:var(--hairline);border:none;margin:0;}

/* ---------------- CARDS / GRIDS ---------------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.card{background:var(--ivory);padding:30px 26px;border-radius:14px;border:1px solid var(--hairline);}
.card h3{font-size:18px;margin:12px 0 8px;}
.card p{font-size:14px;}
.card .num{font-size:12px;color:var(--gold);font-weight:700;letter-spacing:0.08em;}

.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:16px;}
.product-card{
  display:flex;gap:0;align-items:stretch;
  border:1px solid var(--hairline);border-radius:16px;overflow:hidden;
  border-top:4px solid var(--accent,var(--gold));
  transition:transform .2s, box-shadow .2s;background:var(--white);
}
.product-card:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(6,36,61,0.1);}
.product-card .pleft{
  flex:0 0 128px;padding:24px 16px;display:flex;flex-direction:column;
  align-items:flex-start;justify-content:flex-start;gap:12px;
  border-right:1px solid var(--hairline);background:var(--ivory);
}
.product-card .pleft .picon{width:56px;height:56px;margin-bottom:0;}
.product-card .pleft .plabel{font-size:13px;font-weight:800;letter-spacing:0.04em;color:var(--accent,var(--gold));text-transform:uppercase;line-height:1.25;}
.product-card .pright{flex:1;padding:24px 22px;}
.product-card h3{font-size:18px;margin-bottom:8px;}
.product-card p{font-size:13.5px;margin-bottom:16px;}
.product-card .learnmore{font-size:13px;font-weight:700;color:var(--navy);}

.service-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
.service-card{border:1px solid var(--hairline);border-radius:14px;padding:24px 22px;background:var(--white);}
.service-card .stag{font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--accent,var(--gold));margin-bottom:10px;}
.service-card h3{font-size:16.5px;margin-bottom:8px;}
.service-card p{font-size:13.5px;}

.industry-row{display:flex;flex-wrap:wrap;gap:10px;}
.industry-tag{
  border:1px solid var(--hairline);border-radius:20px;padding:8px 18px;
  font-size:13px;font-weight:600;color:var(--navy);background:var(--white);
}

/* ---------------- FLOW / METHOD ---------------- */
.flow{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;position:relative;}
.flow::before{content:'';position:absolute;top:21px;left:6%;right:6%;height:1px;background:rgba(255,255,255,0.14);}
.section:not(.section-dark) .flow::before{background:var(--hairline);}
.flow-step .marker{
  width:42px;height:42px;border-radius:50%;
  background:var(--navy-2);border:1px solid rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;color:var(--gold);font-weight:700;
  margin-bottom:18px;position:relative;z-index:2;
}
.section:not(.section-dark) .flow-step .marker{background:var(--white);border-color:var(--hairline);color:var(--gold);}
.flow-step h3{font-size:16.5px;margin-bottom:6px;}
.flow-step p{font-size:13.5px;}
.section:not(.section-dark) .flow-step h3{color:var(--navy);}

/* ---------------- CTA BAND ---------------- */
.ctaband{
  background:linear-gradient(120deg,var(--navy),var(--navy-2) 70%);
  color:var(--white);text-align:center;padding:76px 28px;border-radius:18px;
  margin:0 auto;max-width:var(--maxw);position:relative;overflow:hidden;
}
.ctaband::before{content:'';position:absolute;left:0;top:0;width:5px;height:100%;background:var(--gold);}
.ctaband h2{color:var(--white);margin-bottom:14px;}
.ctaband p{color:rgba(255,255,255,0.68);max-width:480px;margin:0 auto 30px;}
.ctaband .herobtns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* ---------------- FOOTER ---------------- */
footer{background:var(--navy);color:rgba(255,255,255,0.5);padding:50px 0 28px;font-size:13px;}
.footwrap{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:30px;padding-bottom:28px;border-bottom:1px solid var(--hairline-light);margin-bottom:22px;}
.footwrap img{height:30px;width:auto;margin-bottom:12px;}
.footlinks{display:flex;gap:26px;flex-wrap:wrap;}
.footlinks a{color:rgba(255,255,255,0.55);}
.footlinks a:hover{color:var(--white);}
.footcontact{font-size:12.5px;color:rgba(255,255,255,0.45);line-height:1.9;}
.footcontact a{color:inherit;}
.footcontact a:hover{color:var(--white);}
.footsocial{display:flex;gap:10px;margin-top:14px;}
.footsocial a{
  width:32px;height:32px;border-radius:50%;border:1px solid var(--hairline-light);
  display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.6);
  transition:border-color .2s, color .2s;
}
.footsocial a:hover{border-color:var(--gold);color:var(--white);}
.footsocial svg{width:16px;height:16px;}
.foottag{color:rgba(255,255,255,0.35);font-size:11.5px;letter-spacing:0.04em;}

/* ---------------- MODAL (demo request + assessment) ---------------- */
.modal-overlay{
  position:fixed;inset:0;z-index:300;background:rgba(11,31,58,0.72);
  backdrop-filter:blur(4px);display:none;align-items:center;justify-content:center;padding:24px;
}
.modal-overlay.open{display:flex;}
.modal{
  background:var(--white);width:100%;max-width:460px;border-radius:16px;
  position:relative;box-shadow:0 24px 60px rgba(0,0,0,0.35);
  animation:modalIn .22s ease;
  max-height:90vh;overflow-y:auto;
}
@keyframes modalIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;}}
@media (prefers-reduced-motion: reduce){.modal{animation:none;}}
.modal-body{padding:36px 32px;}
.modal-close{
  position:absolute;top:12px;right:14px;background:none;border:none;
  font-size:22px;color:var(--ink-soft);cursor:pointer;width:32px;height:32px;border-radius:50%;
}
.modal-close:hover{background:var(--ivory);color:var(--navy);}
.modal .eyebrow{margin-bottom:12px;}
.modal h2{font-size:22px;margin-bottom:10px;}
.modal p.msub{font-size:14px;margin-bottom:22px;}
.field{margin-bottom:14px;}
.field label{display:block;font-size:12.5px;font-weight:700;color:var(--navy);margin-bottom:6px;}
.field input{width:100%;padding:11px 13px;border:1px solid var(--hairline);border-radius:10px;font-family:inherit;font-size:14px;color:var(--navy);}
.field input:focus{outline:none;border-color:var(--gold);}
.modal-foot{margin-top:6px;font-size:11.5px;color:var(--ink-soft);}
.modal-success{text-align:center;padding:10px 0;}
.modal-success .checkicon{width:44px;height:44px;border-radius:50%;background:rgba(24,169,153,0.14);color:var(--acc-vantage);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:22px;}
.modal-error{
  display:none;align-items:flex-start;gap:10px;background:rgba(224,101,63,0.1);
  border:1px solid rgba(224,101,63,0.35);border-radius:10px;padding:12px 14px;
  font-size:12.5px;color:#8a3417;margin-bottom:14px;line-height:1.55;
}
.modal-error.show{display:flex;}
.modal-error a{font-weight:700;text-decoration:underline;}

@media (max-width:900px){
  .navlinks{
    display:none;position:absolute;top:100%;left:0;right:0;
    flex-direction:column;gap:0;background:var(--navy);
    border-bottom:1px solid var(--hairline-light);
    box-shadow:0 12px 24px rgba(0,0,0,0.25);
  }
  .navlinks.open{display:flex;}
  .navlinks a{padding:14px 28px;border-top:1px solid var(--hairline-light);width:100%;}
  .navcta .demo-icon-btn span.btnlabel-full{display:none;}
  .nav-toggle{display:flex;}

  .grid-3,.grid-4,.service-grid{grid-template-columns:1fr;}
  .product-grid{grid-template-columns:repeat(2,1fr);}
  .flow{grid-template-columns:1fr;gap:26px;}
  .flow::before{display:none;}

  .nav-dropdown{width:100%;}
  .nav-dropdown-trigger{width:100%;justify-content:space-between;padding:14px 28px;border-top:1px solid var(--hairline-light);}
  .navlinks .nav-dropdown-menu{
    display:none;position:static;transform:none;width:100%;min-width:0;
    background:rgba(255,255,255,0.04);border:none;border-radius:0;box-shadow:none;padding:0;
  }
  .nav-dropdown.open .navlinks .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu{display:block;}
  .navlinks .nav-dropdown-menu a{padding:10px 40px;border-top:none;}
}
@media (max-width:560px){
  section{padding:56px 0;}
  .product-grid{grid-template-columns:1fr;}
  .ctaband{padding:54px 22px;}
  .navcta{gap:6px;}
  .demo-icon-btn{padding:9px 12px;}
}

/* ---------------- PRODUCT ICONS (homepage + product pages) ---------------- */
.picon{width:40px;height:40px;margin-bottom:14px;}
.picon svg{width:100%;height:100%;}
.product-card .picon{color:var(--accent,var(--gold));}
.product-card p.pdesc{font-size:13px;color:var(--ink-soft);margin-bottom:16px;line-height:1.55;}
.hero-picon{width:58px;height:58px;margin-bottom:16px;color:var(--white);}
.hero-picon svg{width:100%;height:100%;}

/* inline demo prompt inserted after the 3rd service card */
.inline-demo-prompt{
  grid-column:1/-1;border:1px dashed rgba(255,255,255,0.25);border-radius:14px;
  padding:22px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  background:rgba(255,255,255,0.04);
}
.inline-demo-prompt p{color:rgba(255,255,255,0.7);font-size:14px;margin:0;max-width:420px;}
.inline-demo-prompt .btn{flex-shrink:0;}

/* ---------------- CONTACT MODAL fields ---------------- */
.field select{width:100%;padding:11px 13px;border:1px solid var(--hairline);border-radius:10px;font-family:inherit;font-size:14px;color:var(--navy);background:var(--white);}
.field select:focus{outline:none;border-color:var(--gold);}
.field textarea{width:100%;padding:11px 13px;border:1px solid var(--hairline);border-radius:10px;font-family:inherit;font-size:14px;color:var(--navy);resize:vertical;min-height:90px;}
.field textarea:focus{outline:none;border-color:var(--gold);}

/* ---------------- LEGAL / INFO MODALS ---------------- */
.modal.modal-legal{max-width:640px;max-height:82vh;display:flex;flex-direction:column;}
.modal-legal .modal-body{overflow-y:auto;padding:38px 34px;}
.modal-legal h2{font-size:22px;margin-bottom:6px;}
.modal-legal .legal-updated{font-size:12px;color:var(--ink-soft);margin-bottom:22px;}
.modal-legal .legal-disclaimer{
  background:var(--ivory);border-left:3px solid var(--gold);padding:12px 16px;
  font-size:12.5px;color:var(--ink-soft);margin-bottom:24px;border-radius:10px;
}
.modal-legal h3{font-size:15px;margin:22px 0 8px;color:var(--navy);}
.modal-legal p, .modal-legal li{font-size:13.5px;color:var(--ink-soft);margin-bottom:10px;line-height:1.65;}
.modal-legal ul{padding-left:20px;}
.footlinks-legal{display:flex;gap:22px;flex-wrap:wrap;margin-top:6px;}
.footlinks-legal button{background:none;border:none;color:rgba(255,255,255,0.5);font-size:12.5px;cursor:pointer;font-family:inherit;}
.footlinks-legal button:hover{color:var(--white);}

/* ---------------- FAQ ACCORDION ---------------- */
.faq-list{display:flex;flex-direction:column;gap:12px;max-width:820px;margin:0 auto;}
.faq-item{background:var(--white);border:1px solid var(--hairline);border-radius:14px;overflow:hidden;}
.faq-item summary{
  list-style:none;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 24px;font-family:'Poppins','Liberation Serif',Georgia,sans-serif;
  font-weight:600;font-size:15.5px;color:var(--navy);
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::marker{content:'';}
.faq-item summary .chev{flex-shrink:0;width:20px;height:20px;color:var(--gold);transition:transform .2s ease;}
.faq-item[open] summary .chev{transform:rotate(180deg);}
.faq-item[open] summary{border-bottom:1px solid var(--hairline);}
.faq-item .faq-answer{padding:2px 24px 22px;}
.faq-item .faq-answer p{font-size:14px;}

/* ---------------- ASSESSMENT LOADING ANIMATION ---------------- */
.assess-loading{text-align:center;padding:30px 10px 10px;}
.assess-loading .loadicon{width:56px;height:56px;margin:0 auto 22px;position:relative;}
.assess-loading .loadicon svg{width:100%;height:100%;animation:spin 2.8s linear infinite;}
@keyframes spin{to{transform:rotate(360deg);}}
.assess-loading h3{font-family:'Poppins',Georgia,sans-serif;font-size:19px;color:var(--navy);margin-bottom:8px;}
.assess-loading .loadstatus{font-size:13.5px;color:var(--ink-soft);min-height:20px;margin-bottom:24px;transition:opacity .3s ease;}
.assess-loading .loadbar-track{height:5px;background:var(--hairline);border-radius:10px;overflow:hidden;max-width:320px;margin:0 auto;}
.assess-loading .loadbar-fill{height:100%;background:var(--gold);width:0%;transition:width .1s linear;border-radius:10px;}
@media (prefers-reduced-motion: reduce){
  .assess-loading .loadicon svg{animation:none;}
}

/* ---------------- ABOUT PAGE ---------------- */
.founder-block{display:flex;gap:32px;align-items:flex-start;flex-wrap:wrap;}
.founder-block .card{flex:1;min-width:280px;}
.quote-line{font-family:'Poppins','Liberation Serif',Georgia,sans-serif;font-weight:600;font-size:19px;color:var(--navy);margin-top:8px;}

/* ---------------- TESTIMONIALS CAROUSEL ---------------- */
.testimonial-carousel-section{background:var(--navy);padding:64px 0;}
.test-carousel{display:flex;align-items:center;justify-content:center;gap:20px;max-width:760px;margin:0 auto;}
.test-arrow{
  flex-shrink:0;width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.25);color:var(--white);
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.test-arrow:hover{background:rgba(255,255,255,0.14);border-color:var(--gold);}
.test-arrow svg{width:20px;height:20px;}
.test-viewport{flex:1;overflow:hidden;min-height:200px;display:flex;align-items:center;}
.t-card{
  width:100%;background:var(--navy-2);border:1px solid rgba(255,255,255,0.12);border-radius:16px;
  padding:32px 34px;border-top:4px solid var(--gold);
}
.t-card.slide-in{animation:testSlideIn .5s ease;}
@keyframes testSlideIn{
  from{opacity:0;transform:translateX(48px);}
  to{opacity:1;transform:translateX(0);}
}
.t-card p.quote{color:#fff;font-size:16px;line-height:1.6;font-style:italic;}
.t-card p.quote::before{content:"\201C";}
.t-card p.quote::after{content:"\201D";}
.t-card .attrib{margin-top:18px;font-size:12.5px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;color:var(--gold);}
.test-dots{display:flex;justify-content:center;gap:8px;margin-top:26px;}
.test-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.25);border:none;cursor:pointer;padding:0;transition:background .2s ease,transform .2s ease;}
.test-dot.active{background:var(--gold);transform:scale(1.2);}
@media (prefers-reduced-motion: reduce){
  .t-card.slide-in{animation:none;}
}
@media (max-width:640px){
  .test-carousel{gap:10px;}
  .test-arrow{width:38px;height:38px;}
  .t-card{padding:26px 22px;}
}

/* ---------------- COOKIE CONSENT POPUP (homepage) ---------------- */
.cookie-banner{
  position:fixed;left:0;right:0;bottom:0;z-index:400;
  background:var(--navy);border-top:3px solid var(--gold);
  padding:22px 28px;box-shadow:0 -14px 34px rgba(0,0,0,0.28);
  transform:translateY(120%);transition:transform .45s ease;
}
.cookie-banner.show{transform:translateY(0);}
.cookie-banner-wrap{
  max-width:var(--maxw);margin:0 auto;display:flex;align-items:center;
  justify-content:space-between;gap:26px;flex-wrap:wrap;
}
.cookie-banner-text{flex:1;min-width:260px;font-size:13.5px;line-height:1.65;color:rgba(255,255,255,0.7);}
.cookie-banner-text strong{display:block;font-size:15px;color:var(--white);margin-bottom:4px;font-family:'Poppins','Liberation Serif',Georgia,sans-serif;}
.cookie-banner-link{
  background:none;border:none;padding:0;font:inherit;cursor:pointer;
  color:var(--gold);font-weight:600;text-decoration:underline;
}
.cookie-banner-btns{display:flex;gap:10px;flex-shrink:0;flex-wrap:wrap;}
@media (max-width:560px){
  .cookie-banner{padding:18px 20px;}
  .cookie-banner-btns{width:100%;}
  .cookie-banner-btns .btn{flex:1;justify-content:center;}
}
@media (prefers-reduced-motion: reduce){.cookie-banner{transition:none;}}
