:root{
  --c-red:#DB1A1A;
  --c-rose:#FFF6F6;
  --c-teal:#8CC7C4;
  --c-moss:#2C687B;
  --bg:var(--c-rose);
  --text:rgba(18,40,55,.92);
  --muted:rgba(18,40,55,.72);
  --card:rgba(255,255,255,.72);
  --stroke:rgba(44,104,123,.22);
  --stroke-2:rgba(219,26,26,.22);
  --shadow:0 18px 45px rgba(44,104,123,.16);
  --shadow-soft:0 10px 28px rgba(44,104,123,.10);
  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-sm:10px;
  --space-1:8px;
  --space-2:12px;
  --space-3:16px;
  --space-4:22px;
  --space-5:30px;
  --space-6:44px;
  --max:1120px;
  --font:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --font-display:Georgia,"Times New Roman",serif;
  --ease-out:cubic-bezier(.22,1,.36,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:radial-gradient(1000px 600px at 20% -10%, rgba(140,199,196,.35), transparent 60%),
             radial-gradient(950px 520px at 90% 10%, rgba(219,26,26,.14), transparent 55%),
             var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.45;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--space-4);
}

.skip-link{
  position:absolute;
  top:10px;
  left:10px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--stroke);
  box-shadow:var(--shadow-soft);
  transform:translateY(-150%);
  transition:transform .2s ease;
  z-index:9999;
}
.skip-link:focus{transform:translateY(0)}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,246,246,.78);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(44,104,123,.18);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-3);
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}
.brand-mark{
  width:40px;
  height:40px;
  border-radius:14px;
  background:linear-gradient(145deg, rgba(219,26,26,.22), rgba(140,199,196,.22));
  border:1px solid rgba(219,26,26,.25);
  box-shadow:0 10px 26px rgba(219,26,26,.10);
  display:grid;
  place-items:center;
}
.brand-mark i{color:var(--c-red);font-size:18px}
.brand-name{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-name strong{
  font-size:14px;
  letter-spacing:.02em;
}
.brand-name span{
  font-size:12px;
  color:var(--muted);
}

.top-nav{
  display:none;
  gap:18px;
  align-items:center;
}
.top-nav a{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color:rgba(18,40,55,.85);
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.top-nav a:hover{
  background:rgba(255,255,255,.65);
  border-color:rgba(44,104,123,.18);
  transform:translateY(-1px);
}

.menu-toggle{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.22);
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.menu-toggle:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.75);
  border-color:rgba(219,26,26,.25);
}
.menu-toggle .label{
  font-size:13px;
  color:rgba(18,40,55,.88);
}
.hamburger{
  width:22px;
  height:14px;
  position:relative;
}
.hamburger span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:rgba(44,104,123,.9);
  border-radius:2px;
  transition:transform .25s ease,top .25s ease,opacity .25s ease;
}
.hamburger span:nth-child(1){top:0}
.hamburger span:nth-child(2){top:6px}
.hamburger span:nth-child(3){top:12px}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1){top:6px;transform:rotate(45deg)}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3){top:6px;transform:rotate(-45deg)}

.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(10,18,24,.35);
  backdrop-filter:blur(3px);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:60;
}
.drawer{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:min(420px, 92vw);
  background:rgba(255,246,246,.95);
  border-left:1px solid rgba(44,104,123,.22);
  box-shadow:var(--shadow);
  transform:translateX(104%);
  transition:transform .25s ease;
  z-index:70;
  display:flex;
  flex-direction:column;
}
.drawer.is-open{transform:translateX(0)}
.drawer-overlay.is-open{opacity:1;pointer-events:auto}
.drawer-head{
  padding:18px 18px 10px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.drawer-head .title{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.drawer-head .title strong{
  font-size:14px;
}
.drawer-head .title span{
  font-size:12px;
  color:var(--muted);
}
.drawer-close{
  width:42px;
  height:42px;
  border-radius:16px;
  border:1px solid rgba(44,104,123,.22);
  background:rgba(255,255,255,.65);
  cursor:pointer;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.drawer-close:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.82);
  border-color:rgba(219,26,26,.25);
}
.drawer-close i{color:rgba(44,104,123,.95);font-size:18px}

.drawer-nav{
  padding:8px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.menu-tiles{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.menu-tile{
  aspect-ratio:1 / 1;
  border-radius:18px;
  border:1px solid rgba(44,104,123,.20);
  background:rgba(255,255,255,.62);
  box-shadow:0 10px 22px rgba(44,104,123,.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:12px;
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.menu-tile:hover{
  transform:translateY(-2px);
  border-color:rgba(219,26,26,.30);
  background:rgba(255,255,255,.86);
}
.menu-tile i{
  font-size:22px;
  color:var(--c-moss);
}
.menu-tile span{
  font-size:13px;
  text-align:center;
  color:rgba(18,40,55,.88);
}

.drawer-foot{
  margin-top:auto;
  padding:14px 18px 18px;
  border-top:1px solid rgba(44,104,123,.16);
}
.drawer-foot .mini{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mini-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(18,40,55,.88);
  font-size:13px;
}
.mini-row i{
  color:var(--c-red);
  font-size:16px;
  margin-top:2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.20);
  background:rgba(255,255,255,.65);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.88);
  border-color:rgba(219,26,26,.25);
}
.btn.primary{
  background:linear-gradient(180deg, rgba(219,26,26,.18), rgba(219,26,26,.10));
  border-color:rgba(219,26,26,.32);
}
.btn.primary:hover{
  border-color:rgba(219,26,26,.48);
}
.btn .bi{font-size:18px}

main{padding:var(--space-4) 0}

.hero{
  margin:10px auto 0;
  max-width:var(--max);
  padding:0 var(--space-4);
}
.hero-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:linear-gradient(145deg, rgba(255,255,255,.6), rgba(255,255,255,.25));
  border:1px solid rgba(44,104,123,.18);
  box-shadow:var(--shadow-soft);
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:74vh;
}
.hero-left{
  padding:44px 34px;
  background:
    radial-gradient(680px 420px at 20% 10%, rgba(140,199,196,.40), transparent 55%),
    rgba(255,246,246,.92);
}
.hero-right{
  padding:28px 26px;
  background:
    radial-gradient(520px 360px at 80% 10%, rgba(219,26,26,.16), transparent 55%),
    linear-gradient(180deg, rgba(140,199,196,.22), rgba(255,255,255,.20));
  border-left:1px solid rgba(44,104,123,.16);
}
.hero-title{
  margin:0;
  font-size:44px;
  letter-spacing:-.02em;
  line-height:1.08;
  font-family:var(--font-display);
  font-weight:600;
}
.hero-sub{
  margin:14px 0 0;
  color:var(--muted);
  font-size:16px;
  max-width:54ch;
}
.hero-cta{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.20);
  background:rgba(255,255,255,.56);
  margin-top:22px;
  color:rgba(18,40,55,.86);
  font-size:13px;
}
.hero-pill i{color:var(--c-moss)}
.hero-media{
  margin-top:26px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.hero-img{
  border-radius:22px;
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.55);
  overflow:hidden;
  box-shadow:0 14px 34px rgba(44,104,123,.10);
}
.hero-img img{width:100%;height:auto}
.hero-right .card-stack{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.micro-card{
  border-radius:22px;
  border:1px solid rgba(44,104,123,.20);
  background:rgba(255,255,255,.62);
  padding:16px 16px;
  box-shadow:0 12px 26px rgba(44,104,123,.08);
}
.micro-card h3{
  margin:0;
  font-size:14px;
  letter-spacing:.02em;
}
.micro-card p{
  margin:10px 0 0;
  color:rgba(18,40,55,.78);
  font-size:13px;
}
.info-lines{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.info-line{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(18,40,55,.86);
  font-size:13px;
}
.info-line i{
  color:var(--c-red);
  font-size:16px;
  margin-top:2px;
}
.hero-keys{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.key-tag{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(219,26,26,.22);
  background:rgba(255,255,255,.58);
  font-size:12px;
  color:rgba(18,40,55,.86);
}

.section{
  padding:var(--space-6) 0;
}
.section.compact{
  padding:var(--space-5) 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.01em;
  font-family:var(--font-display);
  font-weight:600;
}
.section-head p{
  margin:0;
  max-width:58ch;
  color:var(--muted);
}

.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:start;
}

.panel{
  border-radius:var(--radius-xl);
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.58);
  box-shadow:0 18px 40px rgba(44,104,123,.10);
  padding:22px;
}

.reveal{
  opacity:1;
  transform:none;
}
html.js-reveal .reveal:not(.is-visible){
  opacity:0;
  transform:translateY(14px);
  transition:opacity .65s ease, transform .65s ease;
}
html.js-reveal .reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

.tabs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.tab-btn{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.20);
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.tab-btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.85);border-color:rgba(219,26,26,.24)}
.tab-btn[aria-selected="true"]{
  background:linear-gradient(180deg, rgba(219,26,26,.16), rgba(255,255,255,.65));
  border-color:rgba(219,26,26,.40);
}
.tab-btn i{color:var(--c-moss);font-size:16px}
.tab-panel{
  margin-top:16px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,246,246,.55);
  padding:18px;
}
.tab-panel h3{margin:0;font-size:16px}
.tab-panel p{margin:10px 0 0;color:var(--muted)}

.steps{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.step{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.54);
  transition:transform .2s ease,border-color .2s ease, background .2s ease;
}
.step:hover{
  transform:translateY(-2px);
  border-color:rgba(219,26,26,.26);
  background:rgba(255,255,255,.72);
}
.step-num{
  width:38px;
  height:38px;
  border-radius:15px;
  background:rgba(219,26,26,.14);
  border:1px solid rgba(219,26,26,.22);
  display:grid;
  place-items:center;
  color:var(--c-red);
  font-weight:700;
  flex:0 0 auto;
}
.step-body strong{
  display:block;
  font-size:14px;
}
.step-body span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.56);
  padding:18px;
  box-shadow:0 14px 28px rgba(44,104,123,.08);
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(219,26,26,.24);
  background:rgba(255,255,255,.82);
}
.card .top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.20);
  background:rgba(255,246,246,.55);
  font-size:12px;
  color:rgba(18,40,55,.84);
}
.badge i{color:var(--c-moss);font-size:14px}
.card h3{
  margin:14px 0 0;
  font-size:16px;
}
.card p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
}

.accordion{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.acc-item{
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.55);
  overflow:hidden;
}
.acc-btn{
  width:100%;
  text-align:left;
  padding:16px 18px;
  border:0;
  background:transparent;
  cursor:pointer;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.acc-btn strong{font-size:14px}
.acc-btn span{
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}
.acc-icon{
  width:36px;
  height:36px;
  border-radius:14px;
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,246,246,.55);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  transition:transform .2s ease,border-color .2s ease;
}
.acc-item[aria-expanded="true"] .acc-icon{
  transform:rotate(45deg);
  border-color:rgba(219,26,26,.28);
}
.acc-panel{
  padding:0 18px 0;
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.acc-panel .inner{
  padding:0 0 16px;
  color:var(--muted);
  font-size:13px;
}
.acc-item[aria-expanded="true"] .acc-panel{
  max-height:260px;
}

.list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.list a{
  padding:14px 16px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.55);
  transition:transform .2s ease,border-color .2s ease, background .2s ease;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.list a:hover{
  transform:translateY(-2px);
  border-color:rgba(219,26,26,.24);
  background:rgba(255,255,255,.82);
}
.list a strong{font-size:14px}
.list a span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}
.list a i{color:var(--c-moss);font-size:18px;margin-top:2px}

.cta-footer{
  padding:30px var(--space-4) 50px;
}
.footer-card{
  border-radius:var(--radius-xl);
  padding:22px;
  border:1px solid rgba(44,104,123,.18);
  background:
    radial-gradient(800px 420px at 10% 20%, rgba(140,199,196,.30), transparent 55%),
    radial-gradient(620px 360px at 90% 10%, rgba(219,26,26,.16), transparent 55%),
    rgba(255,255,255,.56);
  box-shadow:var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-card .copy{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-card .copy strong{font-size:18px}
.footer-card .copy span{color:var(--muted);font-size:13px;max-width:60ch}
footer{
  padding:22px 0 40px;
  color:rgba(18,40,55,.76);
}
.footer-links{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.footer-links a{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.42);
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
  font-size:13px;
}
.footer-links a:hover{
  transform:translateY(-1px);
  border-color:rgba(219,26,26,.24);
  background:rgba(255,255,255,.70);
}

.page-title{
  margin:0;
  font-size:36px;
  letter-spacing:-.02em;
  font-family:var(--font-display);
  font-weight:600;
}
.lead{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  max-width:70ch;
}
.breadcrumbs{
  margin-top:10px;
  color:rgba(18,40,55,.72);
  font-size:13px;
}
.breadcrumbs a{
  border-bottom:1px solid rgba(44,104,123,.25);
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field label{
  font-size:13px;
  color:rgba(18,40,55,.86);
}
.control{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(44,104,123,.20);
  background:rgba(255,255,255,.58);
  padding:12px 14px;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.control:focus{
  outline:none;
  border-color:rgba(219,26,26,.38);
  box-shadow:0 0 0 4px rgba(219,26,26,.12);
  background:rgba(255,255,255,.88);
}
.field-error{
  min-height:18px;
  font-size:12.5px;
  color:rgba(219,26,26,.95);
}
.control[aria-invalid="true"]{
  border-color:rgba(219,26,26,.50);
  box-shadow:0 0 0 4px rgba(219,26,26,.10);
}
.gdpr{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,246,246,.55);
}
.gdpr input{margin-top:4px; accent-color:var(--c-red)}
.gdpr span{font-size:13px;color:var(--muted)}
.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.submit-status{
  font-size:13px;
  color:var(--muted);
}

.map-wrap{
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.55);
}
.map-wrap iframe{
  width:100%;
  height:360px;
  border:0;
}

.note{
  color:var(--muted);
  font-size:13px;
  margin:10px 0 0;
}
.hr{
  margin:12px 0;
  height:1px;
  background:rgba(44,104,123,.14);
  border:0;
}

.quote{
  border-radius:var(--radius-xl);
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.56);
  padding:22px;
  box-shadow:0 18px 40px rgba(44,104,123,.09);
}
.quote p{
  margin:0;
  color:rgba(18,40,55,.82);
  font-size:15px;
}
.quote .by{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
  font-size:13px;
}
.carousel-controls{
  display:flex;
  gap:10px;
}
.dot-btn{
  width:44px;
  height:44px;
  border-radius:18px;
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.60);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.dot-btn:hover{transform:translateY(-1px);border-color:rgba(219,26,26,.25);background:rgba(255,255,255,.86)}
.dot-btn i{color:var(--c-moss)}

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:transform .2s ease,border-color .2s ease, background .2s ease;
  font-size:13px;
  color:rgba(18,40,55,.86);
}
.chip:hover{transform:translateY(-1px);border-color:rgba(219,26,26,.24);background:rgba(255,255,255,.85)}
.chip[aria-pressed="true"]{
  border-color:rgba(219,26,26,.40);
  background:linear-gradient(180deg, rgba(219,26,26,.14), rgba(255,255,255,.64));
}
.guide-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.guide{
  border-radius:var(--radius-xl);
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.56);
  padding:18px;
  box-shadow:0 14px 28px rgba(44,104,123,.08);
  transition:transform .2s ease,border-color .2s ease, background .2s ease;
}
.guide:hover{transform:translateY(-2px);border-color:rgba(219,26,26,.24);background:rgba(255,255,255,.84)}
.guide h3{margin:0;font-size:16px}
.guide .meta{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.tag{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,246,246,.55);
}
.guide p{margin:12px 0 0;color:var(--muted);font-size:13px}
.guide .takeaway{
  margin-top:12px;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid rgba(44,104,123,.14);
  background:rgba(255,255,255,.50);
  color:rgba(18,40,55,.82);
  font-size:13px;
}

.cookie-banner{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:200;
  display:none;
}
.cookie-banner.is-visible{display:block}
.cookie-card{
  border-radius:var(--radius-xl);
  border:1px solid rgba(44,104,123,.22);
  background:rgba(255,246,246,.95);
  box-shadow:var(--shadow);
  padding:14px;
}
.cookie-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cookie-copy{
  max-width:70ch;
}
.cookie-copy strong{display:block;font-size:14px}
.cookie-copy p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
}
.cookie-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.cookie-actions .btn{padding:10px 14px}
.cookie-settings-btn{
  border-color:rgba(44,104,123,.20);
  background:rgba(255,255,255,.52);
}

.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(10,18,24,.40);
  backdrop-filter:blur(4px);
  z-index:220;
  display:none;
}
.modal-overlay.is-open{display:block}
.modal{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(720px, 92vw);
  border-radius:var(--radius-xl);
  border:1px solid rgba(44,104,123,.22);
  background:rgba(255,246,246,.98);
  box-shadow:var(--shadow);
  padding:16px;
}
.modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.modal-head strong{font-size:15px}
.modal-head span{display:block;margin-top:6px;color:var(--muted);font-size:13px}
.modal-close{
  width:42px;
  height:42px;
  border-radius:16px;
  border:1px solid rgba(44,104,123,.22);
  background:rgba(255,255,255,.65);
  cursor:pointer;
  transition:transform .2s ease,border-color .2s ease, background .2s ease;
}
.modal-close:hover{transform:translateY(-1px);border-color:rgba(219,26,26,.25);background:rgba(255,255,255,.86)}
.modal-close i{color:rgba(44,104,123,.95);font-size:18px}
.modal-body{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.cookie-opt{
  border-radius:var(--radius-xl);
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.56);
  padding:14px;
}
.cookie-opt h4{
  margin:0;
  font-size:14px;
}
.cookie-opt p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
}
.cookie-opt .row{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.cookie-opt input{accent-color:var(--c-red)}
.cookie-opt .must{
  font-size:12.5px;
  color:rgba(18,40,55,.74);
}
.modal-foot{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

@media (min-width: 980px){
  .top-nav{display:flex}
  .menu-toggle{display:none}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-right{border-left:0;border-top:1px solid rgba(44,104,123,.16)}
  .hero-title{font-size:36px}
  .grid-2{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .guide-grid{grid-template-columns:1fr}
  .modal-body{grid-template-columns:1fr}
  .hero-left{padding:34px 20px}
  .hero-right{padding:20px}
  .trust-strip{flex-direction:column;align-items:flex-start}
  .values-grid{grid-template-columns:1fr}
  .compare-grid{grid-template-columns:1fr}
  .stat-row{grid-template-columns:1fr}
  .footer-legal{flex-direction:column}
}

.trust-strip{
  margin:12px auto 0;
  max-width:var(--max);
  padding:0 var(--space-4);
}
.trust-strip-inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.62);
  box-shadow:0 8px 22px rgba(44,104,123,.08);
  font-size:12.5px;
  color:rgba(18,40,55,.82);
}
.trust-strip-inner strong{font-size:13px}
.trust-items{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}
.trust-items span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.trust-items i{color:var(--c-moss);font-size:14px}

.band-spotlight{
  border-radius:var(--radius-xl);
  padding:28px 24px;
  border:1px solid rgba(44,104,123,.18);
  background:
    linear-gradient(135deg, rgba(140,199,196,.22), rgba(255,255,255,.55)),
    rgba(255,246,246,.75);
  box-shadow:var(--shadow-soft);
}
.band-spotlight h2{
  margin:0;
  font-family:var(--font-display);
  font-size:26px;
  font-weight:600;
}
.band-spotlight p{
  margin:12px 0 0;
  color:var(--muted);
  max-width:62ch;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.value-tile{
  border-radius:var(--radius-xl);
  padding:20px;
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.58);
  transition:transform .25s var(--ease-out),border-color .25s ease,box-shadow .25s ease;
}
.value-tile:hover{
  transform:translateY(-3px);
  border-color:rgba(219,26,26,.26);
  box-shadow:0 16px 34px rgba(44,104,123,.12);
}
.value-tile i{
  font-size:22px;
  color:var(--c-red);
}
.value-tile h3{
  margin:12px 0 0;
  font-size:16px;
}
.value-tile p{
  margin:8px 0 0;
  font-size:13px;
  color:var(--muted);
}

.rhythm-panel{
  border-radius:var(--radius-xl);
  border:1px solid rgba(44,104,123,.18);
  background:rgba(255,255,255,.58);
  padding:22px;
  box-shadow:var(--shadow-soft);
}
.rhythm-meter{
  margin-top:16px;
  height:12px;
  border-radius:999px;
  background:rgba(44,104,123,.12);
  overflow:hidden;
}
.rhythm-meter-fill{
  height:100%;
  width:35%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--c-teal), var(--c-red));
  transition:width .6s var(--ease-out);
}
.rhythm-choices{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.rhythm-choices .chip{
  border:0;
  font-family:inherit;
}

.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.compare-card{
  border-radius:var(--radius-xl);
  padding:20px;
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.55);
  transition:opacity .35s ease,transform .35s var(--ease-out);
}
.compare-card.is-dim{
  opacity:.72;
  transform:scale(.99);
  border-color:rgba(44,104,123,.10);
}
.compare-card h3{
  margin:0;
  font-size:16px;
  display:flex;
  align-items:center;
  gap:10px;
}
.compare-card h3 i{font-size:18px;color:var(--c-moss)}
.compare-card ul{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:13px;
}
.compare-toggle{
  margin-top:14px;
  display:flex;
  gap:10px;
}

.transparency-box{
  border-radius:var(--radius-xl);
  border:1px dashed rgba(219,26,26,.28);
  background:rgba(255,246,246,.72);
  padding:18px 20px;
}
.transparency-box h3{
  margin:0;
  font-size:15px;
  display:flex;
  align-items:center;
  gap:10px;
}
.transparency-box h3 i{color:var(--c-red)}
.transparency-box p{
  margin:10px 0 0;
  font-size:13px;
  color:var(--muted);
}
.transparency-box ul{
  margin:10px 0 0;
  padding-left:18px;
  font-size:13px;
  color:rgba(18,40,55,.82);
}

.planner{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.planner-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.14);
  background:rgba(255,255,255,.55);
  transition:background .2s ease,border-color .2s ease;
}
.planner-row.is-done{
  background:rgba(140,199,196,.18);
  border-color:rgba(44,104,123,.22);
}
.planner-row input{
  margin-top:3px;
  accent-color:var(--c-red);
  width:18px;
  height:18px;
}
.planner-row label{
  font-size:13px;
  color:rgba(18,40,55,.88);
  cursor:pointer;
}

.stat-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.stat,
.stat-box{
  text-align:center;
  padding:18px 12px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.16);
  background:rgba(255,255,255,.58);
}
.stat strong,
.stat-box strong{
  display:block;
  font-size:26px;
  color:var(--c-moss);
  font-family:var(--font-display);
}
.stat span,
.stat-box span{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
}

.ads-note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(44,104,123,.14);
  background:rgba(255,255,255,.45);
  font-size:12px;
  color:rgba(18,40,55,.76);
  line-height:1.5;
}

.footer-legal{
  display:flex;
  flex-wrap:wrap;
  gap:8px 10px;
  margin-top:10px;
}
.footer-legal a{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(44,104,123,.14);
  background:rgba(255,255,255,.38);
}
footer .container > div > .ads-note{
  flex-basis:100%;
  width:100%;
  margin-top:12px;
}

.float-soft{
  animation:floatSoft 5s ease-in-out infinite;
}
@keyframes floatSoft{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

.reveal[data-reveal-delay="1"]{transition-delay:.12s}
.reveal[data-reveal-delay="2"]{transition-delay:.24s}
.reveal[data-reveal-delay="3"]{transition-delay:.36s}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  html.js-reveal .reveal:not(.is-visible),
  .reveal,.reveal.is-visible{transition:none;opacity:1;transform:none}
  .float-soft{animation:none}
  .rhythm-meter-fill{transition:none}
  .compare-card{transition:none}
}

