@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root{
  --background:#fbf8f2;
  --foreground:#3a2030;
  --muted:#f1ece3;
  --muted-fg:#6b5b66;
  --border:#e3dad4;
  --card:#fefcf7;
  --primary:#d99732;
  --primary-fg:#2a1208;
  --secondary:#f0cdb9;
  --secondary-fg:#3a1f2a;
  --accent:#f1d4d8;
  --radius:14px;
  --container:1180px;
  --serif:"Fraunces","Playfair Display",Georgia,serif;
  --sans:"Plus Jakarta Sans","Inter",system-ui,sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--sans);
  color:var(--foreground);
  background:var(--background);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  font-weight:400;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:transparent;color:inherit}

h1,h2,h3,h4,h5,h6{font-family:var(--serif);font-weight:500;letter-spacing:-.015em;color:var(--foreground);margin:0 0 .6em}
h1{font-size:clamp(2.4rem,5vw,4.2rem);line-height:1.05}
h2{font-size:clamp(1.8rem,3.2vw,2.6rem);line-height:1.1}
h3{font-size:1.4rem}
p{margin:0 0 1em}
em,i{font-style:italic}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.narrow{max-width:780px;margin:0 auto;padding:0 20px}
.center{text-align:center}
.muted{color:var(--muted-fg)}

/* ===== Header / Banner ===== */
.warning-banner{
  background:#f5b441;color:#3a2305;
  font-size:13px;font-weight:500;
  padding:8px 16px;text-align:center;line-height:1.4;
}
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(251,248,242,.95);backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(227,218,212,.8);
}
.nav-row{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.brand{
  font-family:var(--serif);font-size:1.6rem;font-weight:700;
  color:var(--primary);letter-spacing:-.02em;
  display:flex;align-items:center;gap:10px;
}
.brand .badge{
  display:none;font-family:var(--sans);font-size:10px;font-weight:600;
  background:rgba(240,205,185,.5);color:var(--secondary-fg);
  padding:3px 8px;border-radius:4px;text-transform:uppercase;letter-spacing:.08em;
}
@media(min-width:768px){.brand .badge{display:inline-flex}}
.nav{display:none;gap:32px;font-size:14px;font-weight:500;align-items:center}
.nav a{color:rgba(58,32,48,.85);transition:color .2s}
.nav a:hover{color:var(--primary)}
.nav .dropdown{position:relative}
.nav .dropdown > button{display:flex;align-items:center;gap:4px;padding:8px 0;font-weight:500;font-size:14px;color:rgba(58,32,48,.85)}
.nav .dropdown-menu{
  position:absolute;top:100%;left:50%;transform:translateX(-50%);
  background:var(--card);border:1px solid var(--border);
  border-radius:14px;padding:8px;min-width:240px;margin-top:6px;
  box-shadow:0 12px 30px rgba(58,32,48,.1);
  display:none;flex-direction:column;
}
.nav .dropdown:hover .dropdown-menu,.nav .dropdown:focus-within .dropdown-menu{display:flex}
.nav .dropdown-menu a{padding:9px 14px;border-radius:8px;font-size:14px}
.nav .dropdown-menu a:hover{background:var(--muted)}
@media(min-width:768px){.nav{display:flex}.menu-btn{display:none}}
.menu-btn{background:transparent;padding:8px;color:var(--foreground)}
.mobile-nav{display:none;border-top:1px solid var(--border);padding:18px 20px;background:var(--background)}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;padding:10px 0;color:rgba(58,32,48,.85);font-weight:500}
.mobile-nav .label{font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:var(--muted-fg);font-weight:700;margin:14px 0 4px;padding:0}
.mobile-nav .sub{padding-left:14px;font-size:14px}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;border-radius:999px;font-weight:500;font-size:16px;
  transition:transform .15s, box-shadow .2s, background .2s;
  border:1px solid transparent;
}
.btn-primary{background:var(--primary);color:var(--primary-fg);box-shadow:0 4px 14px rgba(217,151,50,.25)}
.btn-primary:hover{background:#c4862b;box-shadow:0 8px 22px rgba(217,151,50,.35)}
.btn-outline{background:var(--card);color:var(--foreground);border-color:var(--border)}
.btn-outline:hover{background:var(--muted)}

.tag{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;
  background:rgba(217,151,50,.12);color:var(--primary);
  padding:6px 12px;border-radius:999px;
}

/* ===== Hero ===== */
.hero{padding:80px 0 100px;position:relative;overflow:hidden}
.hero::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(240,205,185,.25),transparent);
}
.hero-grid{display:grid;grid-template-columns:1fr;gap:48px;align-items:center}
@media(min-width:1024px){.hero-grid{grid-template-columns:1fr 1fr;gap:32px}.hero{padding:120px 0 130px}}
.hero h1{margin:18px 0 24px;font-size:clamp(2.6rem,5.5vw,4.6rem)}
.hero h1 .accent{color:var(--primary);font-style:italic}
.hero p.lead{font-size:clamp(1.05rem,1.5vw,1.25rem);color:var(--muted-fg);font-weight:300;line-height:1.65;margin-bottom:36px;max-width:560px}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px}
.hero-visual{display:none;aspect-ratio:4/3;border-radius:28px;
  background:linear-gradient(135deg,rgba(241,212,216,.5),rgba(240,205,185,.55) 50%,rgba(217,151,50,.18));
  border:1px solid rgba(217,151,50,.15);
  position:relative;align-items:center;justify-content:center;
  box-shadow:0 30px 60px -20px rgba(58,32,48,.18);
  padding:40px;
}
.hero-visual .orb{
  width:200px;height:200px;border-radius:50%;
  background:rgba(254,252,247,.85);backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 16px 36px rgba(58,32,48,.15);
  border:1px solid rgba(255,255,255,.6);
  font-size:90px;color:var(--primary);
}
.hero-visual .caption{position:absolute;bottom:42px;left:0;right:0;text-align:center}
.hero-visual .caption h3{font-family:var(--serif);font-size:1.5rem;margin:0 0 4px;font-weight:500}
.hero-visual .caption p{margin:0;color:var(--muted-fg);font-weight:300}
@media(min-width:1024px){.hero-visual{display:flex;flex-direction:column}}

/* ===== Sections ===== */
.section{padding:80px 0}
.section-muted{background:rgba(241,236,227,.5)}
.section-dark{background:var(--foreground);color:var(--background);padding:96px 0}
.section-dark h2,.section-dark h3{color:var(--background)}
.section-head{display:flex;flex-direction:column;gap:24px;margin-bottom:48px;align-items:flex-start}
@media(min-width:768px){.section-head{flex-direction:row;justify-content:space-between;align-items:flex-end}}
.section-head h2{margin:0 0 10px}
.section-head p{margin:0;font-size:1.05rem;color:var(--muted-fg);font-weight:300}

/* ===== Cards ===== */
.guide-grid{display:grid;grid-template-columns:1fr;gap:28px}
@media(min-width:700px){.guide-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.guide-grid.cols-3{grid-template-columns:repeat(3,1fr)}}
.guide-card{
  background:var(--card);border:1px solid rgba(227,218,212,.7);
  border-radius:18px;overflow:hidden;display:flex;flex-direction:column;
  transition:border-color .2s, box-shadow .2s, transform .2s;
}
.guide-card:hover{border-color:rgba(217,151,50,.4);box-shadow:0 12px 28px -10px rgba(58,32,48,.15)}
.guide-card .thumb{
  height:160px;
  background:linear-gradient(135deg,rgba(240,205,185,.5),rgba(241,236,227,.7) 50%,rgba(241,212,216,.4));
  display:flex;align-items:center;justify-content:center;position:relative;
}
.guide-card .thumb svg{width:50px;height:50px;color:rgba(217,151,50,.55);transition:transform .4s}
.guide-card:hover .thumb svg{transform:scale(1.12)}
.guide-card .thumb .cat-tag{
  position:absolute;left:14px;bottom:12px;
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;
  background:rgba(254,252,247,.95);color:var(--foreground);
  padding:5px 10px;border-radius:6px;box-shadow:0 1px 3px rgba(0,0,0,.05);
}
.guide-card .body{padding:24px;display:flex;flex-direction:column;flex:1}
.guide-card h3{font-size:1.2rem;line-height:1.3;margin:0 0 12px;color:var(--foreground);transition:color .2s}
.guide-card:hover h3{color:var(--primary)}
.guide-card .excerpt{color:var(--muted-fg);font-size:14px;font-weight:300;flex:1;margin:0 0 18px;line-height:1.6}
.guide-card .meta{
  display:flex;justify-content:space-between;align-items:center;font-size:12px;
  color:var(--muted-fg);font-weight:500;
  padding-top:16px;border-top:1px solid rgba(227,218,212,.7);
}

/* ===== Browse Cards ===== */
.browse-grid{display:grid;grid-template-columns:1fr;gap:28px}
@media(min-width:768px){.browse-grid{grid-template-columns:repeat(3,1fr)}}
.browse-card{
  background:var(--card);border:1px solid rgba(227,218,212,.6);
  border-radius:24px;padding:32px;
}
.browse-card .icon-circle{
  width:48px;height:48px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;margin-bottom:22px;
}
.browse-card h3{font-size:1.4rem;margin:0 0 22px}
.browse-card .links{display:flex;flex-direction:column;gap:6px}
.browse-card .links a{
  display:flex;justify-content:space-between;align-items:center;
  padding:11px 14px;border-radius:10px;font-size:14px;font-weight:500;
  color:rgba(58,32,48,.8);transition:background .15s, color .15s;
}
.browse-card .links a:hover{background:var(--muted);color:var(--primary)}

/* ===== Trust Section ===== */
.trust{display:grid;grid-template-columns:1fr;gap:48px;text-align:center}
@media(min-width:768px){.trust{grid-template-columns:repeat(3,1fr)}}
.trust .icon{
  width:64px;height:64px;border-radius:50%;
  background:rgba(254,252,247,.1);color:var(--primary);
  display:flex;align-items:center;justify-content:center;margin:0 auto 22px;
}
.trust h3{margin:0 0 14px;color:var(--background);font-size:1.4rem}
.trust p{color:rgba(251,248,242,.75);font-weight:300;line-height:1.65}

/* ===== Page Header ===== */
.page-head{padding:96px 0 60px;text-align:center;border-bottom:1px solid var(--border)}
.page-head.muted{background:rgba(241,236,227,.5)}
.page-head h1{margin-bottom:18px}
.page-head p{font-size:1.15rem;color:var(--muted-fg);max-width:600px;margin:0 auto}

/* ===== Guides Index ===== */
.guides-layout{display:grid;grid-template-columns:1fr;gap:48px;padding:48px 0;align-items:flex-start}
@media(min-width:1024px){.guides-layout{grid-template-columns:240px 1fr;gap:60px}}
.filters{position:sticky;top:96px;display:flex;flex-direction:column;gap:32px}
.filters h2{font-family:var(--serif);font-size:1.2rem;margin:0;font-weight:500}
.filters .filter-head{display:flex;justify-content:space-between;align-items:center}
.filters .clear{font-size:12px;color:var(--muted-fg);font-weight:500}
.filters .clear:hover{color:var(--primary)}
.filters h3{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--muted-fg);margin:0 0 14px}
.filters .opts{display:flex;flex-direction:column;gap:6px}
.filters .opts button{
  text-align:left;font-size:14px;padding:5px 0;
  color:var(--foreground);transition:color .15s;
}
.filters .opts button:hover{color:var(--primary)}
.filters .opts button.active{color:var(--primary);font-weight:500}
.empty{text-align:center;padding:80px 24px;background:rgba(241,236,227,.5);border:1px solid var(--border);border-radius:18px}
.empty h3{margin:0 0 8px}

/* ===== Guide Detail ===== */
.guide-hero{padding:96px 0 64px;background:rgba(241,236,227,.5);border-bottom:1px solid var(--border)}
.guide-hero .back{display:inline-flex;align-items:center;gap:6px;font-size:14px;color:var(--muted-fg);margin-bottom:30px;font-weight:500}
.guide-hero .back:hover{color:var(--primary)}
.guide-hero .tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px}
.guide-hero .tags .tag-cat{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;background:rgba(217,151,50,.12);color:var(--primary);padding:5px 14px;border-radius:999px}
.guide-hero .tags .tag-rec{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;background:rgba(240,205,185,.4);color:var(--secondary-fg);padding:5px 14px;border-radius:999px}
.guide-hero h1{margin-bottom:32px}
.guide-hero .intro{font-size:1.15rem;color:rgba(58,32,48,.8);font-weight:300;line-height:1.8;margin-bottom:36px}
.guide-hero .byline{font-size:14px;color:var(--muted-fg);font-weight:500;border-top:1px solid var(--border);padding-top:20px;display:flex;gap:14px;flex-wrap:wrap}

.items{display:flex;flex-direction:column;gap:48px;padding:64px 0}
.item-card{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:32px;box-shadow:0 1px 3px rgba(0,0,0,.03)}
.item-card .head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.item-card .num{width:34px;height:34px;border-radius:50%;background:rgba(217,151,50,.12);color:var(--primary);font-family:var(--serif);font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center}
.item-card .cat{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--muted-fg)}
.item-card h3{font-size:1.45rem;margin:0 0 16px}
.item-card .desc{font-size:15px;line-height:1.7;color:rgba(58,32,48,.85);margin-bottom:24px}
.item-card .price-row{padding-top:24px;border-top:1px solid rgba(227,218,212,.7)}
.item-card .price-label{font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:var(--muted-fg);display:block}
.item-card .price{font-weight:600}
.item-card .note{font-size:11px;color:var(--muted-fg);margin:12px 0 0;line-height:1.5}

.editorial-note{text-align:center;padding:40px 20px 0;border-top:1px solid var(--border);margin-top:40px}
.editorial-note p{font-size:14px;color:var(--muted-fg);max-width:640px;margin:0 auto}
.editorial-note a{text-decoration:underline;color:var(--foreground)}

/* ===== Categories grid ===== */
.cat-grid{display:grid;grid-template-columns:1fr;gap:24px;padding:64px 0}
@media(min-width:700px){.cat-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.cat-grid{grid-template-columns:repeat(3,1fr)}}
.cat-card{
  aspect-ratio:4/3;background:var(--card);border:1px solid var(--border);
  border-radius:20px;padding:32px;text-align:center;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  transition:border-color .2s, box-shadow .2s;position:relative;overflow:hidden;
}
.cat-card:hover{border-color:rgba(217,151,50,.5);box-shadow:0 8px 22px -10px rgba(58,32,48,.15)}
.cat-card h2{font-size:1.5rem;margin:0;transition:color .2s}
.cat-card:hover h2{color:var(--primary)}
.cat-card .arrow{
  margin-top:22px;width:42px;height:42px;border-radius:50%;
  background:var(--background);border:1px solid var(--border);
  color:var(--muted-fg);display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.cat-card:hover .arrow{background:var(--primary);color:var(--primary-fg);border-color:var(--primary)}

/* ===== Article styles ===== */
.article{padding:64px 0;max-width:760px;margin:0 auto}
.article .lead{font-size:1.2rem;color:var(--muted-fg);font-weight:300;line-height:1.7;text-align:center;margin:0 auto 60px}
.article-content{font-size:1.05rem;line-height:1.8;color:rgba(58,32,48,.85);font-weight:300}
.article-content p{margin:0 0 1.4em}
.article-content h2{margin:60px 0 24px;font-size:1.85rem}
.article-content blockquote{
  border-left:3px solid var(--primary);
  padding:8px 0 8px 24px;margin:48px 0;
}
.article-content blockquote p{
  font-family:var(--serif);font-size:1.55rem;font-style:italic;
  color:var(--foreground);margin:0;line-height:1.4;font-weight:500;
}
.article-content .drop-cap::first-letter{
  font-family:var(--serif);font-size:4em;float:left;
  line-height:.85;margin:6px 12px 0 0;color:var(--primary);font-weight:600;
}
.article-content .ornament{display:flex;justify-content:center;margin:56px 0;color:rgba(217,151,50,.4);font-size:24px}
.article-content ul.styled{list-style:none;padding:0;margin:24px 0}
.article-content ul.styled li{
  border-left:1px solid var(--border);padding:6px 0 6px 20px;
  position:relative;margin-bottom:24px;
}
.article-content ul.styled li::before{content:"";position:absolute;left:-1px;top:8px;width:2px;height:18px;background:var(--primary)}
.article-content ul.styled strong{font-family:var(--serif);font-size:1.2rem;color:var(--foreground);display:block;margin-bottom:6px;font-weight:500}

/* ===== FAQ ===== */
.faq-card{background:var(--card);border:1px solid var(--border);border-radius:24px;padding:24px;margin:48px auto}
@media(min-width:768px){.faq-card{padding:40px}}
.faq-item{border-bottom:1px solid var(--border)}
.faq-item:last-child{border-bottom:0}
.faq-trigger{
  width:100%;text-align:left;padding:18px 0;
  font-family:var(--serif);font-size:1.1rem;color:var(--foreground);
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  font-weight:500;
}
.faq-trigger:hover{color:var(--primary)}
.faq-trigger .chev{transition:transform .2s;flex-shrink:0;color:var(--muted-fg)}
.faq-item.open .faq-trigger .chev{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-item.open .faq-answer{max-height:600px}
.faq-answer .inner{padding:4px 0 22px;font-weight:300;color:rgba(58,32,48,.85);line-height:1.7;font-size:15px}

/* ===== Types page ===== */
.type-section{display:flex;flex-direction:column;gap:32px;margin-bottom:80px}
@media(min-width:768px){.type-section{flex-direction:row;gap:48px}}
.type-section .left{flex:0 0 33%}
.type-section .icon-box{width:64px;height:64px;border-radius:18px;background:rgba(217,151,50,.12);color:var(--primary);display:flex;align-items:center;justify-content:center;margin-bottom:22px}
.type-section h2{font-size:1.7rem;margin:0}
.type-section .right{flex:1}
.type-section .lead-text{font-size:1.15rem;font-weight:500;margin-bottom:24px;color:var(--foreground)}
.type-section .examples{background:var(--card);border:1px solid rgba(227,218,212,.7);padding:24px;border-radius:18px}
.type-section .examples h3{font-family:var(--serif);font-size:1.05rem;margin:0 0 14px;font-weight:500}
.type-section .examples ul{margin:0;padding-left:20px;font-weight:300;color:rgba(58,32,48,.85)}
.type-section .examples li{margin-bottom:10px;line-height:1.6}

.framework-box{margin-top:80px;padding:40px;background:rgba(240,205,185,.25);border:1px solid rgba(240,205,185,.5);border-radius:24px}
.framework-box h2{text-align:center;margin-bottom:18px}
.framework-box .intro{text-align:center;color:rgba(58,32,48,.8);font-weight:300;font-size:1.05rem;max-width:560px;margin:0 auto 36px}
.framework-grid{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:768px){.framework-grid{grid-template-columns:1fr 1fr}}
.framework-grid .item{background:var(--background);border:1px solid var(--border);border-radius:14px;padding:22px}
.framework-grid .item p:first-child{font-weight:500;margin:0 0 6px;color:var(--foreground)}
.framework-grid .item p:last-child{margin:0;font-size:14px;color:var(--muted-fg)}

/* ===== How To Choose / Steps ===== */
.steps{padding:32px 0;display:flex;flex-direction:column;gap:54px;max-width:780px;margin:0 auto}
.step{position:relative;padding-left:48px}
@media(min-width:768px){.step{padding-left:96px}}
.step .num-circle{
  position:absolute;left:0;top:0;width:54px;height:54px;border-radius:50%;
  background:var(--primary);color:var(--primary-fg);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-weight:600;font-size:1.1rem;
  box-shadow:0 4px 14px rgba(217,151,50,.3);
}
@media(min-width:768px){.step .num-circle{left:16px}}
.step .timeline{
  position:absolute;left:27px;top:60px;bottom:-54px;width:1px;
  background:rgba(227,218,212,.6);
}
@media(min-width:768px){.step .timeline{left:43px}}
.step:last-child .timeline{display:none}
.step .body{background:var(--card);border:1px solid rgba(227,218,212,.6);border-radius:24px;padding:32px;box-shadow:0 1px 3px rgba(0,0,0,.03)}
.step .step-head{display:flex;align-items:center;gap:14px;margin-bottom:18px;color:var(--primary)}
.step .step-head h2{margin:0;color:var(--foreground);font-size:1.5rem}
.step p{margin:0;font-size:1.02rem;line-height:1.75;color:rgba(58,32,48,.85);font-weight:300}

/* ===== Contact / About prose ===== */
.prose{max-width:none;font-size:1.05rem;line-height:1.8;color:rgba(58,32,48,.85);font-weight:300}
.prose p{margin:0 0 1.3em}
.prose h2{font-family:var(--serif);font-size:1.7rem;font-weight:500;margin:48px 0 18px;color:var(--foreground)}
.prose a{color:var(--primary);text-decoration:underline}
.prose ul{margin:0 0 1.3em;padding-left:22px}
.prose li{margin-bottom:8px}

.contact-card{
  background:var(--card);border:1px solid var(--border);border-radius:24px;
  padding:40px;display:flex;flex-direction:column;gap:36px;
}
.contact-row{display:flex;gap:18px;align-items:flex-start}
.contact-row .ico{width:42px;height:42px;border-radius:50%;background:rgba(217,151,50,.12);color:var(--primary);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-row h3{font-family:var(--sans);font-size:1rem;margin:0 0 6px;font-weight:600;color:var(--foreground)}
.contact-row p{font-size:14px;color:var(--muted-fg);margin:0;line-height:1.6}
.contact-row a{color:var(--primary);font-weight:500}
.contact-row a:hover{text-decoration:underline}

/* ===== Footer ===== */
.site-footer{
  background:var(--foreground);color:var(--background);
  padding:64px 0 36px;margin-top:96px;
  border-top:1px solid rgba(217,151,50,.18);
}
.footer-biz{padding-bottom:48px;border-bottom:1px solid rgba(251,248,242,.1);margin-bottom:48px}
.footer-biz h2{color:var(--primary);font-size:1.3rem;margin:0 0 28px}
.biz-grid{display:grid;grid-template-columns:1fr;gap:24px;font-size:14px;font-weight:300}
@media(min-width:560px){.biz-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.biz-grid{grid-template-columns:repeat(4,1fr)}}
.biz-item{display:flex;gap:12px;align-items:flex-start}
.biz-item .ico{color:var(--primary);flex-shrink:0;margin-top:2px}
.biz-item p:first-child{color:var(--background);font-weight:500;margin:0 0 4px}
.biz-item p:last-child{margin:0;color:rgba(251,248,242,.7);line-height:1.6}
.biz-item a{color:rgba(251,248,242,.7)}
.biz-item a:hover{color:var(--primary)}

.footer-grid{display:grid;grid-template-columns:1fr;gap:36px;margin-bottom:48px}
@media(min-width:768px){.footer-grid{grid-template-columns:2fr 1fr 1fr;gap:48px}}
.footer-brand-row{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.footer-grid .desc{color:rgba(251,248,242,.7);font-size:14px;line-height:1.7;font-weight:300;max-width:340px}
.footer-grid h3{color:var(--primary);font-family:var(--serif);font-size:1.05rem;font-weight:500;margin:0 0 18px}
.footer-grid ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.footer-grid ul a{color:rgba(251,248,242,.8);font-size:14px;font-weight:300}
.footer-grid ul a:hover{color:var(--primary)}
.footer-bottom{padding-top:32px;border-top:1px solid rgba(251,248,242,.1);font-size:12px;color:rgba(251,248,242,.6);font-weight:300}
.footer-bottom .row{display:flex;flex-direction:column;gap:6px;justify-content:space-between}
@media(min-width:768px){.footer-bottom .row{flex-direction:row;align-items:center}}
.footer-bottom .small{color:rgba(251,248,242,.45);margin-top:10px}

.outline-badge{
  display:inline-flex;align-items:center;font-size:10px;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;
  border:1px solid rgba(251,248,242,.2);color:rgba(251,248,242,.8);
  padding:3px 8px;border-radius:4px;
}

/* ===== Cookie / Secure modal ===== */
.modal-backdrop{
  position:fixed;inset:0;z-index:100;
  display:flex;align-items:center;justify-content:center;padding:16px;
  background:radial-gradient(ellipse at 20% 110%, rgba(99,102,241,.45) 0%, rgba(99,102,241,.15) 30%, rgba(255,255,255,.95) 65%, #ffffff 100%),
             linear-gradient(135deg,#f8fafc 0%,#ffffff 50%,#eef2ff 100%);
  backdrop-filter:blur(2px);
}
.modal-card{
  background:#fff;border-radius:28px;width:100%;max-width:460px;
  padding:34px;box-shadow:0 25px 60px -15px rgba(30,41,99,.25);
  font-family:var(--sans);
}
.modal-card h2{font-family:var(--sans);font-size:1.85rem;font-weight:800;color:#0b1736;margin:0 0 18px;letter-spacing:-.02em}
.modal-card p{color:#1f2a4a;font-size:15px;line-height:1.6;margin:0 0 22px}
.modal-card .check{display:flex;align-items:flex-start;gap:12px;margin-bottom:26px;cursor:pointer;user-select:none}
.modal-card .check input{width:20px;height:20px;margin-top:2px;accent-color:#1f43e6;cursor:pointer}
.modal-card .check span{font-size:14px;color:#1f2a4a;line-height:1.5}
.modal-card .actions{display:flex;gap:14px}
.modal-card .actions button{
  flex:1;padding:15px;border-radius:16px;font-size:15px;font-weight:600;
  transition:opacity .15s;
}
.modal-card .actions button:disabled{opacity:.5;cursor:not-allowed}
.modal-card .btn-out{background:#e8ecf4;color:#0b1736}
.modal-card .btn-acc{background:#1f43e6;color:#fff}

/* ===== utilities ===== */
.fade-up{opacity:0;transform:translateY(16px);animation:fadeUp .6s ease forwards}
.fade-up.d1{animation-delay:.08s}
.fade-up.d2{animation-delay:.16s}
.fade-up.d3{animation-delay:.24s}
@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}
