
:root{
  --primary:#2f6b5e;
  --accent:#c9713f;
  --ink:#23302d;
  --paper:#f8f4ec;
  --paper-alt:#efe6d3;

  --primary-light: color-mix(in oklch, var(--primary), white 35%);
  --primary-dark: color-mix(in oklch, var(--primary), black 22%);
  --primary-soft: color-mix(in oklch, var(--primary), white 82%);
  --accent-light: color-mix(in oklch, var(--accent), white 38%);
  --accent-dark: color-mix(in oklch, var(--accent), black 15%);
  --accent-soft: color-mix(in oklch, var(--accent), white 85%);

  --surface: color-mix(in oklch, var(--paper), white 35%);
  --surface-alt: color-mix(in oklch, var(--paper-alt), white 8%);
  --surface-deep: color-mix(in oklch, var(--paper), black 4%);

  --text-body: color-mix(in oklch, var(--ink), white 8%);
  --text-muted: color-mix(in oklch, var(--ink), white 42%);
  --text-faint: color-mix(in oklch, var(--ink), white 60%);

  --border-soft: color-mix(in oklch, var(--ink), transparent 88%);
  --border-med: color-mix(in oklch, var(--ink), transparent 78%);

  --shadow-sm: 0 1px 2px color-mix(in oklch, var(--ink), transparent 90%), 0 1px 1px color-mix(in oklch, var(--ink), transparent 94%);
  --shadow-md: 0 10px 24px -10px color-mix(in oklch, var(--ink), transparent 76%), 0 3px 8px -2px color-mix(in oklch, var(--ink), transparent 86%);
  --shadow-lg: 0 28px 54px -22px color-mix(in oklch, var(--ink), transparent 70%), 0 10px 20px -8px color-mix(in oklch, var(--ink), transparent 82%);
  --shadow-stack: 0 -14px 30px -22px color-mix(in oklch, var(--ink), transparent 68%), 0 26px 46px -30px color-mix(in oklch, var(--ink), transparent 78%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --ease-out: cubic-bezier(.16,.8,.3,1);
  --ease-in: cubic-bezier(.7,0,.84,0);
  --dur: .28s;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'DM Sans', sans-serif;
  color:var(--text-body);
  background:var(--surface-deep);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:var(--primary-dark);text-decoration:none;transition:color var(--dur) var(--ease-out);}
h1,h2,h3,h4{font-family:'DM Sans', sans-serif;color:var(--ink);margin:0 0 .6em;font-weight:700;letter-spacing:-.01em;}
p{margin:0 0 1.1em;color:var(--text-body);}
ul{margin:0;padding:0;}
button{font-family:inherit;cursor:pointer;}

.block-inner{max-width:1180px;margin:0 auto;padding:0 1.5rem;}


.hero-heading{font-size:clamp(2.4rem, 4.6vw + 1rem, 4.4rem);line-height:1.06;font-weight:700;}
.section-heading{font-size:clamp(1.7rem, 2.4vw + 1rem, 2.6rem);line-height:1.16;}
h3.card-title, h3.step-title, h3.compare-title, .bio-name{font-size:clamp(1.05rem, .5vw + 1rem, 1.3rem);}
.section-lead{font-size:clamp(1.02rem, .3vw + 1rem, 1.2rem);color:var(--text-muted);max-width:60ch;}
.hero-support{font-size:clamp(1.02rem, .3vw + 1rem, 1.22rem);color:var(--text-muted);max-width:56ch;}
.section-label,.hero-label{
  text-transform:uppercase;font-size:.78rem;letter-spacing:.12em;font-weight:600;
  color:var(--primary-dark);margin:0 0 .8em;display:inline-block;
}

.gradient-text{
  background:linear-gradient(100deg, var(--primary-dark), var(--primary), var(--accent));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.highlight-text{color:var(--accent-dark);font-weight:600;}


.primary-action, .secondary-action{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.9rem 1.7rem;border-radius:var(--radius-md);font-weight:600;font-size:.98rem;
  min-height:48px;transition:transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
  border:1px solid transparent;
}
.primary-action{
  background:linear-gradient(135deg, var(--primary), var(--primary-dark));
  color:#fbf8f1;box-shadow:var(--shadow-md);
}
.primary-action:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);background:linear-gradient(135deg, var(--primary-light), var(--primary));}
.primary-action:active{transform:translateY(0);box-shadow:var(--shadow-sm);}
.secondary-action{
  background:transparent;color:var(--primary-dark);border-color:var(--border-med);
}
.secondary-action:hover{background:var(--primary-soft);border-color:var(--primary);transform:translateY(-2px);}


.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:.4rem 0;
  transition:background var(--dur) var(--ease-out), backdrop-filter var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  border-bottom:1px solid transparent;
  background:transparent;
}
.site-header.nav-scrolled{
  background:color-mix(in oklch, var(--paper), transparent 18%);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:var(--border-soft);
  box-shadow:0 8px 24px -18px color-mix(in oklch, var(--ink), transparent 72%);
}
.nav-bar{
  max-width:1180px;margin:0 auto;padding:.7rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
}
.brand-mark{display:flex;align-items:center;gap:.6rem;font-weight:700;color:var(--ink);font-size:1.08rem;}
.brand-mark img{border-radius:8px;}
.nav-links{display:flex;align-items:center;gap:1.9rem;}
.nav-link{color:var(--text-body);font-weight:500;font-size:.96rem;position:relative;padding:.3rem 0;transition:color var(--dur) var(--ease-out);}
.nav-link::after{
  content:'';position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--accent);
  transition:width var(--dur) var(--ease-out);
}
.nav-link:hover{color:var(--primary-dark);}
.nav-link:hover::after, .nav-link.active::after{width:100%;}
.nav-link.active{color:var(--primary-dark);font-weight:600;}

.menu-trigger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:46px;height:46px;border:none;background:color-mix(in oklch, var(--paper), white 30%);
  border-radius:var(--radius-sm);box-shadow:var(--shadow-sm);transition:box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.menu-trigger span{width:20px;height:2px;background:var(--ink);margin:0 auto;border-radius:2px;transition:transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);}
.menu-trigger:hover{box-shadow:var(--shadow-md);}

.panel-overlay{
  position:fixed;inset:0;background:color-mix(in oklch, var(--ink), transparent 40%);
  opacity:0;visibility:hidden;transition:opacity var(--dur) var(--ease-out), visibility var(--dur) var(--ease-out);
  z-index:150;
}
.panel-overlay.visible{opacity:1;visibility:visible;}

.mobile-panel{
  position:fixed;top:0;right:0;height:100vh;width:min(340px, 86vw);
  background:var(--surface);z-index:200;
  box-shadow:-20px 0 50px -20px color-mix(in oklch, var(--ink), transparent 60%);
  transform:translateX(100%);
  transition:transform .38s var(--ease-out);
  display:flex;flex-direction:column;padding:1.4rem 1.6rem;
}
.mobile-panel.panel-open{transform:translateX(0);}
.panel-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2.2rem;}
.close-panel{
  width:42px;height:42px;border-radius:50%;border:1px solid var(--border-med);background:transparent;
  color:var(--ink);font-size:1.1rem;transition:background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.close-panel:hover{background:var(--accent-soft);transform:rotate(90deg);}
.panel-links{display:flex;flex-direction:column;gap:1.6rem;margin-top:.6rem;}
.panel-link{font-size:1.3rem;font-weight:600;color:var(--ink);padding:.4rem 0;border-bottom:1px solid var(--border-soft);transition:color var(--dur) var(--ease-out), padding-left var(--dur) var(--ease-out);}
.panel-link:hover{color:var(--primary-dark);padding-left:.4rem;}


.hero-section{
  position:relative;background:var(--surface);
  padding:clamp(7.5rem,14vw,10rem) 0 clamp(4rem,8vw,6rem);
  overflow:hidden;
}
.hero-compact{padding:clamp(7rem,12vw,8.5rem) 0 clamp(3rem,6vw,4rem);}
.hero-inner{max-width:900px;margin:0 auto;padding:0 1.5rem;text-align:left;position:relative;z-index:2;}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.6rem;}
.hero-decoration{position:absolute;top:8%;right:6%;width:220px;height:220px;z-index:1;opacity:.9;}
.paper-sheet{
  position:absolute;inset:0;border-radius:22px;
  background:var(--surface-alt);border:1px solid var(--border-soft);box-shadow:var(--shadow-md);
}
.sheet-1{transform:rotate(-8deg) translate(6%,4%);background:color-mix(in oklch, var(--primary), white 88%);}
.sheet-2{transform:rotate(4deg) translate(-4%,10%);background:color-mix(in oklch, var(--accent), white 88%);}
.sheet-3{transform:rotate(-2deg) translate(2%,20%);background:var(--surface);}

@keyframes heroRise{
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:translateY(0);}
}
.hero-label,.hero-heading,.hero-support,.hero-actions{
  animation:heroRise .7s var(--ease-out) both;
}
.hero-heading{animation-delay:.06s;}
.hero-support{animation-delay:.14s;}
.hero-actions{animation-delay:.22s;}


.content-block{
  position:relative;background:var(--surface);
  margin-top:-2.4rem;
  padding:clamp(3.2rem,6vw,5.6rem) 0 clamp(3.6rem,7vw,6.2rem);
  border-radius:var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow:var(--shadow-stack);
  z-index:2;
}
.content-block.alt-surface{background:var(--surface-alt);}
.cta-panel{
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fbf8f1;
}
.cta-panel .panel-heading{color:#fdfbf6;font-size:clamp(1.7rem,2.2vw+1rem,2.4rem);}
.cta-panel p{color:color-mix(in oklch, white, var(--primary) 12%);max-width:60ch;}
.cta-panel .secondary-action{color:#fdfbf6;border-color:color-mix(in oklch, white, transparent 55%);}
.cta-panel .secondary-action:hover{background:color-mix(in oklch, white, transparent 88%);}
.panel-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.2rem;}

.legal-page{margin-top:-2.4rem;}
.legal-content{max-width:760px;}
.legal-meta{color:var(--text-faint);font-size:.9rem;margin-bottom:2rem;}
.legal-content h2{margin-top:2rem;font-size:1.35rem;}


.visual-break{
  display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,4vw,4rem);align-items:center;
  margin-bottom:2.5rem;
}
.visual-break.reverse{direction:rtl;}
.visual-break.reverse .break-text, .visual-break.reverse .image-frame{direction:ltr;}
.image-frame{
  border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);
  border:1px solid var(--border-soft);
  transition:transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.image-frame:hover{transform:translateY(-4px);box-shadow:0 34px 60px -26px color-mix(in oklch, var(--ink), transparent 66%);}
.image-frame img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;}


.checklist-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.4rem;margin-top:2rem;}
.checklist-column{display:flex;flex-direction:column;gap:1.3rem;}
.checklist-item{display:flex;gap:.9rem;align-items:flex-start;}
.check-icon{
  flex-shrink:0;width:30px;height:30px;border-radius:50%;
  background:var(--primary-soft);color:var(--primary-dark);
  display:flex;align-items:center;justify-content:center;font-size:.82rem;
  box-shadow:inset 0 0 0 1px color-mix(in oklch, var(--primary), transparent 70%);
  transition:background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.checklist-item:hover .check-icon{background:var(--accent-soft);color:var(--accent-dark);transform:scale(1.08);}
.item-text{color:var(--text-body);}


.workflow-track{
  display:grid;grid-template-columns:repeat(6,1fr);gap:1.4rem;margin-top:2.6rem;
  position:relative;
}
.workflow-step{
  background:var(--surface);border:1px solid var(--border-soft);border-radius:var(--radius-lg);
  padding:1.6rem 1.3rem;box-shadow:var(--shadow-sm);position:relative;
  transition:transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.workflow-step:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:var(--primary);}
.step-marker{
  width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--primary-light),var(--primary));
  color:#fff;display:flex;align-items:center;justify-content:center;font-size:1rem;margin-bottom:1rem;
  box-shadow:var(--shadow-sm);
}
.step-title{margin-bottom:.5rem;}
.step-text{font-size:.92rem;color:var(--text-muted);margin:0;}


.bento-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.3rem;margin-top:2.2rem;}
.bento-card{
  background:var(--surface);border:1px solid var(--border-soft);border-radius:var(--radius-lg);
  padding:1.9rem 1.7rem;box-shadow:var(--shadow-sm);
  transition:transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
  grid-column:span 2;
}
.bento-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);background:var(--surface-alt);}
.card-wide{grid-column:span 2;}
.card-tall{grid-row:span 2;}
.card-icon{
  width:48px;height:48px;border-radius:14px;background:var(--accent-soft);color:var(--accent-dark);
  display:flex;align-items:center;justify-content:center;font-size:1.15rem;margin-bottom:1.1rem;
}
.card-title{margin-bottom:.5rem;}
.card-text{color:var(--text-muted);font-size:.96rem;margin:0;}


.bio-grid{display:flex;flex-direction:column;gap:1.1rem;margin-top:2rem;}
.bio-card{
  background:var(--surface);border:1px solid var(--border-soft);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);overflow:hidden;transition:box-shadow var(--dur) var(--ease-out);
}
.bio-card:hover{box-shadow:var(--shadow-md);}
.bio-toggle{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  background:transparent;border:none;padding:1.3rem 1.5rem;text-align:left;
}
.bio-summary{display:flex;align-items:center;gap:1rem;}
.bio-photo img{width:62px;height:62px;border-radius:50%;object-fit:cover;box-shadow:var(--shadow-sm);}
.bio-avatar{
  width:62px;height:62px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--primary-light),var(--accent-light));color:#fff;font-weight:700;
  box-shadow:var(--shadow-sm);flex-shrink:0;
}
.bio-heading-group{display:flex;flex-direction:column;gap:.15rem;text-align:left;}
.bio-role{color:var(--text-muted);font-size:.9rem;}
.bio-chevron{color:var(--primary-dark);transition:transform var(--dur) var(--ease-out);}
.bio-card.expanded .bio-chevron{transform:rotate(180deg);}
.bio-body{
  max-height:0;overflow:hidden;padding:0 1.5rem;
  transition:max-height .45s var(--ease-out), padding var(--dur) var(--ease-out);
}
.bio-card.expanded .bio-body{max-height:640px;padding:0 1.5rem 1.6rem;}
.bio-text{color:var(--text-body);font-size:.98rem;}


.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;margin-top:2.2rem;}
.pricing-card{
  background:var(--surface);border:1px solid var(--border-soft);border-radius:var(--radius-lg);
  padding:2rem 1.7rem;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;
  transition:transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  position:relative;
}
.pricing-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);}
.pricing-card.featured{border-color:var(--accent);background:var(--surface-alt);}
.pricing-flag{
  position:absolute;top:-13px;left:1.7rem;background:var(--accent);color:#fff;
  font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  padding:.3rem .7rem;border-radius:20px;box-shadow:var(--shadow-sm);
}
.pricing-header h3{margin-bottom:.4rem;}
.price-tag{font-size:1.5rem;font-weight:700;color:var(--primary-dark);margin:0;}
.price-note{font-size:.82rem;color:var(--text-faint);margin-bottom:1.1rem;}
.pricing-list{display:flex;flex-direction:column;gap:.6rem;margin-top:1.2rem;list-style:none;}
.pricing-list li{display:flex;gap:.6rem;align-items:flex-start;font-size:.92rem;color:var(--text-body);}
.pricing-list li i{color:var(--primary-dark);margin-top:.2rem;}


.compare-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.3rem;margin-top:2rem;}
.compare-card{
  background:var(--surface);border:1px solid var(--border-soft);border-radius:var(--radius-lg);
  padding:1.8rem 1.5rem;box-shadow:var(--shadow-sm);text-align:left;
  transition:transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.compare-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.compare-icon{
  width:44px;height:44px;border-radius:12px;background:var(--primary-soft);color:var(--primary-dark);
  display:flex;align-items:center;justify-content:center;margin-bottom:1rem;font-size:1.05rem;
}
.compare-tag{
  display:inline-block;margin-top:.8rem;font-size:.78rem;font-weight:600;color:var(--accent-dark);
  background:var(--accent-soft);padding:.3rem .7rem;border-radius:20px;
}


.contact-detail-list{list-style:none;display:flex;flex-direction:column;gap:1rem;margin:1.4rem 0;}
.contact-detail-list li{display:flex;gap:.9rem;align-items:center;font-size:1.02rem;}
.contact-detail-list i{color:var(--primary-dark);width:22px;text-align:center;}
.map-frame{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);border:1px solid var(--border-soft);}
.map-frame iframe{display:block;width:100%;}


.contact-form{margin-top:2rem;display:flex;flex-direction:column;gap:1rem;max-width:680px;}
.accordion-field{
  background:var(--surface);border:1px solid var(--border-soft);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);overflow:hidden;transition:box-shadow var(--dur) var(--ease-out);
}
.accordion-field.open{box-shadow:var(--shadow-md);}
.accordion-header{
  width:100%;display:flex;align-items:center;gap:1rem;background:transparent;border:none;
  padding:1.2rem 1.4rem;text-align:left;
}
.accordion-index{
  width:32px;height:32px;border-radius:50%;background:var(--primary-soft);color:var(--primary-dark);
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem;flex-shrink:0;
}
.accordion-title{flex:1;font-weight:600;color:var(--ink);}
.accordion-status{color:var(--primary-dark);opacity:0;transition:opacity var(--dur) var(--ease-out);}
.accordion-field.complete .accordion-status{opacity:1;}
.accordion-body{max-height:0;overflow:hidden;padding:0 1.4rem;transition:max-height .4s var(--ease-out), padding var(--dur) var(--ease-out);}
.accordion-field.open .accordion-body{max-height:600px;padding:0 1.4rem 1.5rem;}
.field-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.1rem;}
.field-group label{font-size:.86rem;font-weight:600;color:var(--text-muted);}
.field-group input, .field-group textarea{
  padding:.85rem 1rem;border-radius:var(--radius-sm);border:1px solid var(--border-med);
  font-family:inherit;font-size:.98rem;background:color-mix(in oklch, var(--surface), white 20%);
  color:var(--text-body);transition:border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  min-height:48px;
}
.field-group textarea{min-height:120px;resize:vertical;}
.field-group input:focus, .field-group textarea:focus{
  outline:none;border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-soft);
}
.checkbox-field{display:flex;align-items:flex-start;gap:.7rem;font-size:.94rem;color:var(--text-body);margin-bottom:1.2rem;cursor:pointer;}
.checkbox-field input{width:20px;height:20px;margin-top:.1rem;accent-color:var(--primary);flex-shrink:0;}
.form-submit{margin-top:.4rem;}


.footer-bar{border-top:1px solid var(--border-soft);background:var(--surface);position:relative;z-index:3;}
.footer-inner{
  max-width:1180px;margin:0 auto;padding:1.4rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
}
.footer-brand{display:flex;align-items:center;gap:.5rem;font-weight:700;color:var(--ink);font-size:.96rem;}
.footer-links{display:flex;gap:1.3rem;flex-wrap:wrap;}
.footer-links a{font-size:.9rem;color:var(--text-muted);}
.footer-links a:hover{color:var(--primary-dark);}
.footer-copy{font-size:.86rem;color:var(--text-faint);margin:0;}


.cookie-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:300;
  background:color-mix(in oklch, var(--surface), white 8%);
  border-top:1px solid var(--border-med);
  box-shadow:0 -14px 34px -18px color-mix(in oklch, var(--ink), transparent 70%);
  padding:1.1rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
  transform:translateY(120%);opacity:0;
  transition:transform .45s var(--ease-out), opacity .45s var(--ease-out);
}
.cookie-bar.visible{transform:translateY(0);opacity:1;}
.cookie-message p{margin:0;font-size:.9rem;color:var(--text-muted);max-width:60ch;}
.cookie-actions{display:flex;gap:.7rem;flex-wrap:wrap;}
.cookie-btn{
  padding:.7rem 1.2rem;border-radius:var(--radius-sm);font-size:.88rem;font-weight:600;
  border:1px solid var(--border-med);background:transparent;color:var(--ink);
  transition:background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  min-height:44px;
}
.cookie-btn--accept{background:var(--primary);color:#fff;border-color:var(--primary);}
.cookie-btn--accept:hover{background:var(--primary-dark);transform:translateY(-2px);}
.cookie-btn--reject:hover{background:var(--border-soft);}
.cookie-btn--customize:hover{background:var(--accent-soft);border-color:var(--accent);}
.cookie-btn--save{background:var(--accent);color:#fff;border-color:var(--accent);width:100%;margin-top:.6rem;}
.cookie-btn--save:hover{background:var(--accent-dark);}
.cookie-categories{
  width:100%;max-height:0;overflow:hidden;transition:max-height .4s var(--ease-out), margin var(--dur) var(--ease-out);
  display:flex;flex-direction:column;gap:.7rem;
}
.cookie-bar.expanded .cookie-categories{max-height:420px;margin-top:1rem;}
.category-row{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:.7rem 1rem;background:var(--surface-alt);border-radius:var(--radius-sm);
}
.category-info{display:flex;flex-direction:column;gap:.15rem;}
.category-info strong{font-size:.9rem;color:var(--ink);}
.category-info span{font-size:.78rem;color:var(--text-faint);}
.category-toggle{position:relative;width:44px;height:24px;flex-shrink:0;cursor:pointer;}
.category-toggle input{opacity:0;width:0;height:0;position:absolute;}
.toggle-track{
  position:absolute;inset:0;background:var(--border-med);border-radius:20px;transition:background var(--dur) var(--ease-out);
}
.toggle-track::after{
  content:'';position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#fff;
  box-shadow:var(--shadow-sm);transition:transform var(--dur) var(--ease-out);
}
.category-toggle input:checked + .toggle-track{background:var(--primary);}
.category-toggle input:checked + .toggle-track::after{transform:translateX(20px);}
.category-toggle.disabled{opacity:.6;cursor:not-allowed;}


.thanks-section{background:var(--surface);}
.thanks-panel{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.6rem;}
.checkmark-wrap{width:130px;height:130px;margin-bottom:.6rem;}
.checkmark-svg{width:100%;height:100%;}
.checkmark-circle{
  stroke:var(--primary);stroke-dasharray:340;stroke-dashoffset:340;
  animation:drawCircle 1s var(--ease-out) forwards;
}
.checkmark-check{
  stroke:var(--accent);stroke-dasharray:70;stroke-dashoffset:70;stroke-linecap:round;stroke-linejoin:round;
  animation:drawCheck .5s var(--ease-out) .9s forwards;
}
@keyframes drawCircle{to{stroke-dashoffset:0;}}
@keyframes drawCheck{to{stroke-dashoffset:0;}}
.thanks-heading{opacity:0;animation:fadeUp .6s var(--ease-out) 1.35s forwards;}
.thanks-text{opacity:0;animation:fadeUp .6s var(--ease-out) 1.5s forwards;max-width:52ch;}
.thanks-panel .primary-action{opacity:0;animation:fadeUp .6s var(--ease-out) 1.65s forwards;}
@keyframes fadeUp{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}


.scroll-reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease-out), transform .7s var(--ease-out);}
.scroll-reveal.is-visible{opacity:1;transform:translateY(0);}


@media (max-width:1024px){
  .visual-break{grid-template-columns:1fr;}
  .visual-break.reverse{direction:ltr;}
  .visual-break .image-frame{order:-1;}
  .workflow-track{grid-template-columns:repeat(3,1fr);}
  .bento-grid{grid-template-columns:repeat(2,1fr);}
  .bento-card, .card-wide{grid-column:span 2;}
  .card-tall{grid-row:span 1;}
  .pricing-grid{grid-template-columns:repeat(2,1fr);}
  .compare-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:760px){
  .nav-links{display:none;}
  .menu-trigger{display:flex;}
  .checklist-grid{grid-template-columns:1fr;gap:1.6rem;}
  .workflow-track{grid-template-columns:1fr;}
  .bento-grid{grid-template-columns:1fr;}
  .bento-card, .card-wide, .card-tall{grid-column:span 1;grid-row:span 1;}
  .pricing-grid{grid-template-columns:1fr;}
  .compare-grid{grid-template-columns:1fr;}
  .content-block{margin-top:-1.4rem;border-radius:var(--radius-lg) var(--radius-lg) 0 0;padding:2.6rem 0 3.2rem;}
  .hero-decoration{display:none;}
  .footer-inner{flex-direction:column;text-align:center;justify-content:center;}
  .cookie-bar{flex-direction:column;align-items:stretch;}
  .cookie-actions{justify-content:stretch;}
  .cookie-btn{flex:1;}
}
@media (max-width:480px){
  .bio-summary{gap:.7rem;}
  .bio-photo img,.bio-avatar{width:50px;height:50px;}
  .accordion-header{padding:1rem;}
}