/*
Theme Name: CleanBooks
Theme URI: https://usecleanbooks.com
Author: CleanBooks
Description: CleanBooks — Bookkeeping Without Tears. Converted from Next.js to WordPress.
Version: 2.0
License: GNU General Public License v2
Text Domain: cleanbooks
*/

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --background: #f8f9fb;
  --foreground: #0f172a;
  --card: #ffffff;
  --primary: #1C62B9;
  --primary-hover: #1560A0;
  --secondary: #f1f5f9;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --radius: 0.625rem;
  --blue: #1C62B9;
  --blue-dark: #1D70B8;
  --blue-hover: #1560A0;
  --green: #00703C;
  --green-dark: #087a3b;
  --green-muted: #1a6644;
  --footer-bg: #0d1526;
  --mtd-blue: #1D70B8;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{font-family:'Poppins',sans-serif;background:var(--background);color:var(--foreground);-webkit-font-smoothing:antialiased;line-height:1.6;overflow-x:hidden;}
img,video{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
button{cursor:pointer;border:none;background:none;font-family:inherit;}
ul,ol{list-style:none;}

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-up{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease;}
.fade-up.in-view{opacity:1;transform:translateY(0);}
.fade-up-d1{transition-delay:.1s;} .fade-up-d2{transition-delay:.2s;}
.fade-up-d3{transition-delay:.3s;} .fade-up-d4{transition-delay:.4s;}
.scale-in{opacity:0;transform:scale(.97) translateY(18px);transition:opacity .65s ease,transform .65s ease;}
.scale-in.in-view{opacity:1;transform:scale(1) translateY(0);}

/* ── Navbar ────────────────────────────────────────────────── */
.site-header{position:sticky;top:0;z-index:50;width:100%;border-bottom:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.6);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:64px;max-width:1280px;margin:0 auto;padding:0 1.5rem;}
.nav-logo img{height:32px;width:auto;}
.nav-links{display:none;align-items:center;gap:2rem;}
@media(min-width:768px){.nav-links{display:flex;}}
.nav-links a{font-size:.875rem;font-weight:500;color:var(--muted-foreground);transition:color .2s;}
.nav-links a:hover{color:var(--foreground);}
.nav-actions{display:flex;align-items:center;gap:.75rem;}
.nav-login{display:none;font-size:.875rem;font-weight:500;color:var(--foreground);transition:color .2s;}
@media(min-width:640px){.nav-login{display:inline-flex;}}
.nav-login:hover{color:var(--muted-foreground);}

/* ── Buttons ───────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:.5rem;font-family:'Poppins',sans-serif;font-weight:600;font-size:.875rem;padding:.5rem 1.25rem;transition:background-color .2s,transform .2s,box-shadow .2s;cursor:pointer;border:none;}
.btn:hover{transform:translateY(-1px);}
.btn-primary{background:var(--blue-dark);color:#fff;}
.btn-primary:hover{background:var(--blue-hover);}
.btn-green{display:inline-flex;align-items:center;justify-content:center;background:var(--green);color:#fff;font-family:'Poppins',sans-serif;font-weight:600;font-size:1rem;border-radius:.75rem;padding:1rem 2.5rem;box-shadow:0 8px 24px rgba(0,112,60,.25);border:none;cursor:pointer;transition:background .2s,transform .2s;}
.btn-green:hover{background:#005a30;transform:translateY(-2px);}

/* ── Hero ──────────────────────────────────────────────────── */
.hero-section{position:relative;display:flex;flex-direction:column;align-items:center;padding:6rem 1.5rem 4rem;overflow:hidden;background:#1C62B9 !important;min-height:90vh;}
@media(min-width:1024px){.hero-section{padding:7rem 2rem 4rem;}}
.hero-content{position:relative;z-index:10;max-width:64rem;text-align:center;display:flex;flex-direction:column;align-items:center;width:100%;}

/* Announcement banner */
.announcement-banner{display:inline-flex;align-items:center;gap:.75rem;border-radius:9999px;border:1px solid var(--border);background:rgba(255,255,255,.7);padding:.5rem 1rem;font-size:.875rem;font-weight:500;color:var(--foreground);box-shadow:0 1px 4px rgba(0,0,0,.06);backdrop-filter:blur(8px);transition:background .2s;margin-bottom:1.5rem;text-decoration:none;}
.announcement-banner:hover{background:rgba(255,255,255,.9);}
.announcement-label{border-radius:9999px;background:#eaf6f0;padding:.125rem .625rem;font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--green-muted);}
.announcement-text{display:flex;align-items:center;gap:.25rem;color:var(--muted-foreground);}
.announcement-banner:hover .announcement-text{color:var(--foreground);}

.hero-h1{font-size:clamp(2.5rem,6vw,4.5rem);font-weight:600;letter-spacing:-.02em;color:#fff;line-height:1.1;margin-bottom:1.5rem;}
.hero-sub{font-size:clamp(1rem,2vw,1.125rem);color:rgba(255,255,255,.55);max-width:40rem;line-height:1.7;margin-bottom:2.5rem;}
.hero-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1rem;margin-bottom:2.5rem;}

/* Supademo demo wrapper */
.demo-wrapper{position:relative;z-index:10;width:100%;max-width:72rem;margin:2.5rem auto 0;border-radius:24px;overflow:hidden;border:1px solid rgba(0,0,0,.1);background:#fff;box-shadow:0 20px 60px rgba(0,0,0,.12);}
.demo-bar{display:flex;align-items:center;justify-content:space-between;height:48px;background:#1f2a3d;padding:0 1rem;}
.demo-dots{display:flex;align-items:center;gap:.5rem;}
.demo-dot{width:12px;height:12px;border-radius:50%;}
.demo-dot-red{background:#ff5f57;} .demo-dot-yellow{background:#ffbd2e;} .demo-dot-green{background:#28c840;}
.demo-url{border-radius:9999px;background:rgba(255,255,255,.1);padding:.25rem 1.5rem;font-size:.875rem;font-weight:500;color:rgba(255,255,255,.9);}
.demo-expand{font-size:.875rem;color:rgba(255,255,255,.7);}
.demo-preview{position:relative;aspect-ratio:16/9;width:100%;overflow:hidden;background:#f8fafc;}
.demo-preview-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.03);filter:blur(3px);}
.demo-preview-overlay{position:absolute;inset:0;background:rgba(255,255,255,.55);}
.demo-preview-content{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.5rem;text-align:center;}
.demo-preview-content h5{font-size:clamp(1.125rem,3vw,1.875rem);font-weight:600;letter-spacing:-.01em;color:var(--foreground);}
.demo-btn{display:inline-flex;align-items:center;gap:.75rem;margin-top:2rem;border-radius:1rem;background:var(--blue-dark);padding:1rem 1.5rem;font-size:1.125rem;font-weight:500;color:#fff;box-shadow:0 14px 30px rgba(29,112,184,.35);transition:transform .2s,background .2s;border:none;cursor:pointer;font-family:'Poppins',sans-serif;}
.demo-btn:hover{transform:scale(1.02);background:var(--blue-hover);}
.demo-btn-icon{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:6px;background:rgba(29,112,184,.2);}

/* ── Video Section ─────────────────────────────────────────── */
.video-section{position:relative;padding:6rem 0;min-height:180vh;}
.video-section-text{max-width:56rem;margin:0 auto 3rem;padding:0 1.5rem;text-align:center;}
.video-section-text h3{font-size:clamp(1.75rem,4vw,2rem);font-weight:700;letter-spacing:-.02em;color:var(--foreground);margin-bottom:1.25rem;}
.video-section-text p{font-size:1rem;color:var(--muted-foreground);line-height:1.7;}
.video-sticky-wrapper{position:sticky;top:6rem;display:flex;justify-content:center;width:100%;}
.video-container{overflow:hidden;box-shadow:0 25px 60px rgba(0,0,0,.18);border-radius:28px;width:72%;transition:width .3s ease,border-radius .3s ease;}
.video-container video{display:block;width:100%;height:auto;object-fit:cover;}
.video-mute-btn{position:absolute;bottom:1rem;right:1rem;z-index:20;display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:rgba(0,0,0,.55);border:1.5px solid rgba(255,255,255,.25);color:#fff;cursor:pointer;backdrop-filter:blur(6px);transition:background .2s,transform .2s,border-color .2s;}
.video-mute-btn:hover{background:rgba(0,0,0,.78);border-color:rgba(255,255,255,.55);transform:scale(1.08);}

/* ── Why Section ───────────────────────────────────────────── */
.why-section{position:relative;padding:6rem 1.5rem;}
.why-section::before{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(to bottom,transparent,#f7fbf8,transparent);pointer-events:none;}
.why-header{text-align:center;margin-bottom:3rem;}
.eyebrow{font-size:.75rem;font-weight:500;text-transform:uppercase;letter-spacing:.16em;color:rgba(26,102,68,.7);margin-bottom:.75rem;}
.section-h2{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:700;letter-spacing:-.02em;color:var(--foreground);margin-bottom:1rem;}
.section-sub{font-size:1rem;color:var(--muted-foreground);max-width:40rem;margin:0 auto;line-height:1.7;}
.why-grid{display:grid;grid-template-columns:1fr;gap:1rem;max-width:72rem;margin:0 auto;}
@media(min-width:768px){.why-grid{grid-template-columns:1fr 1fr;}}
.why-card{border-radius:28px;border:1px solid var(--border);background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.05);overflow:hidden;padding:2rem;transition:transform .2s,box-shadow .2s;}
.why-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(0,0,0,.1);}
.why-card-inner{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.why-metric-card{border-radius:.75rem;border:1px solid #e5e9f0;background:#fff;padding:1rem;box-shadow:0 1px 4px rgba(0,0,0,.04);}
.why-metric-card.highlight{background:#1a3a8c;border-color:#1a3a8c;}
.why-metric-icon{font-size:.875rem;margin-bottom:.5rem;}
.why-metric-title{font-size:.6875rem;font-weight:700;color:#1e293b;margin-bottom:.25rem;}
.why-metric-title.white{color:#fff;}
.why-metric-desc{font-size:.625rem;line-height:1.4;color:#94a3b8;}
.why-metric-desc.white{color:rgba(255,255,255,.7);}
.why-card-badge{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;padding:.375rem 1rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;margin-bottom:1.25rem;}
.badge-green{background:#eaf6f0;color:var(--green-muted);}
.badge-blue{background:#eef3ff;color:#1a3a8c;}
.badge-sky{background:#f0f9ff;color:#0369a1;border:1px solid #bfdbfe;}
.why-card h3{font-size:1.25rem;font-weight:700;color:var(--foreground);margin-bottom:.75rem;}
.why-card p{font-size:.875rem;color:var(--muted-foreground);line-height:1.7;}
.why-stress-row{display:flex;flex-direction:column;gap:.875rem;}
.why-stress-item{}
.why-stress-label{font-size:.625rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:#94a3b8;margin-bottom:.375rem;}
.why-stress-bar{height:.75rem;border-radius:9999px;background:#f1f5f9;overflow:hidden;}
.why-stress-fill{height:100%;border-radius:9999px;}
.why-stress-fill-red{background:linear-gradient(to right,#fca5a5,#ef4444);}
.why-stress-fill-amber{background:linear-gradient(to right,#fcd34d,#f59e0b);}
.why-stress-fill-green{background:linear-gradient(to right,#6ee7b7,#10b981);}
.why-stress-badge{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;border:1px solid #bbf7d0;background:#f0fdf4;padding:.25rem .75rem;font-size:.6875rem;font-weight:600;color:#15803d;margin-top:.5rem;}
.why-plan-list{display:flex;flex-direction:column;gap:.75rem;}
.why-plan-item{display:flex;align-items:center;gap:.75rem;border-radius:.75rem;border:1px solid #e5e9f0;background:#fff;padding:.75rem 1rem;box-shadow:0 1px 4px rgba(0,0,0,.04);}
.why-plan-item.active{border-color:#bfdbfe;background:#eff6ff;}
.why-plan-icon{width:2rem;height:2rem;border-radius:.5rem;background:#f1f5f9;display:flex;align-items:center;justify-content:center;font-size:.875rem;}
.why-plan-icon.active{background:#dbeafe;}
.why-plan-name{font-size:.75rem;font-weight:700;color:#1e293b;}
.why-plan-sub{font-size:.625rem;color:#94a3b8;}
.why-plan-check{width:1.25rem;height:1.25rem;border-radius:50%;background:#10b981;display:flex;align-items:center;justify-content:center;font-size:.625rem;font-weight:700;color:#fff;margin-left:auto;}

/* ── Intelligence Section ──────────────────────────────────── */
.intelligence-section{position:relative;padding:7rem 1.5rem;}
.intelligence-section::before{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(to bottom,transparent,#f7f8fa,transparent);pointer-events:none;}
.intelligence-header{text-align:center;max-width:56rem;margin:0 auto 5rem;}
.intelligence-block{display:grid;grid-template-columns:1fr;gap:4rem;align-items:center;max-width:88rem;margin:0 auto 7rem;}
.intelligence-block:last-child{margin-bottom:0;}
@media(min-width:1024px){.intelligence-block{grid-template-columns:1fr 1fr;}.intelligence-block.reverse>*:first-child{order:2;}.intelligence-block.reverse>*:last-child{order:1;}}
.intel-text-col h3{font-size:clamp(1.5rem,3vw,2rem);font-weight:700;letter-spacing:-.02em;color:var(--foreground);margin-bottom:1.5rem;}
.intel-text-col h3 span{color:#1e4fa3;}
.intel-text-col>p{font-size:1rem;color:var(--muted-foreground);line-height:1.7;max-width:32rem;margin-bottom:2rem;}
.intel-divider{height:1px;background:var(--border);max-width:32rem;margin-bottom:.5rem;}
.accordion-item{border-bottom:1px solid var(--border);}
.accordion-btn{display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem;padding:1.25rem 0;width:100%;text-align:left;background:none;border:none;cursor:pointer;font-family:'Poppins',sans-serif;}
.accordion-btn-title{font-size:1.125rem;font-weight:600;line-height:1.35;color:#1E4FA3;}
.accordion-btn-icon{flex-shrink:0;margin-top:.25rem;font-size:1.375rem;font-weight:500;line-height:1;color:#1E4FA3;}
.accordion-body{overflow:hidden;max-height:0;transition:max-height .35s ease,opacity .3s ease;opacity:0;}
.accordion-body.open{opacity:1;}
.accordion-body p{padding-bottom:1.25rem;padding-right:2.5rem;font-size:1rem;color:var(--muted-foreground);line-height:1.7;}
.scene-wrapper{position:relative;width:100%;max-width:760px;margin:0 auto;}
.scene-main img,.scene-card img{width:100%;height:auto;}
.scene-card{position:absolute;box-shadow:0 20px 50px rgba(0,0,0,.14);}
@keyframes floatY{0%,100%{transform:translateY(0);}50%{transform:translateY(-6px);}}
.float-1{animation:floatY 5.2s ease-in-out infinite;}
.float-2{animation:floatY 5.6s ease-in-out .4s infinite;}
.float-3{animation:floatY 5.4s ease-in-out 1.5s infinite;}

/* ── Sync Section ──────────────────────────────────────────── */
.sync-section{padding:6rem 1.5rem;text-align:center;}
.sync-diagram{position:relative;width:100%;max-width:48rem;height:520px;margin:4rem auto 0;}
.sync-orbit-svg{pointer-events:none;position:absolute;inset:0;width:100%;height:100%;}
.sync-center{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);}
.sync-card{position:absolute;border-radius:1rem;overflow:hidden;}
.sync-card-white{background:#fff;border:1px solid var(--border);box-shadow:0 2px 8px rgba(0,0,0,.06);padding:1rem;}
.sync-card-dark{padding:.75rem 1.25rem;box-shadow:0 8px 24px rgba(0,0,0,.18);}
.sync-card p{font-size:.75rem;line-height:1.6;color:#3563E9;}
.sync-progress-ring{transition:stroke-dashoffset 1.2s ease .35s;}

/* ── MTD Section (homepage teaser) ────────────────────────── */
.mtd-section{background-color:var(--mtd-blue);padding:3.5rem 1.5rem 5rem;}
.mtd-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:4rem;}
@media(min-width:1024px){.mtd-inner{grid-template-columns:1fr 1fr;}}
.mtd-eyebrow{display:inline-block;border-radius:9999px;background:rgba(255,255,255,.15);padding:.25rem .75rem;font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:#fff;margin-bottom:1.25rem;}
.mtd-h2{font-size:clamp(1.625rem,4vw,2.375rem);font-weight:800;line-height:1.2;color:#fff;margin-bottom:1rem;}
.mtd-sub{font-size:clamp(.9375rem,2vw,1.0625rem);color:rgba(255,255,255,.85);line-height:1.7;margin-bottom:2.25rem;}
.mtd-stats{display:flex;gap:1rem;margin-bottom:2.25rem;flex-wrap:wrap;}
.mtd-stat{flex:1;min-width:100px;}
.mtd-stat-number{font-size:1.625rem;font-weight:800;color:#fff;line-height:1.1;}
.mtd-stat-label{font-size:.75rem;color:rgba(255,255,255,.65);line-height:1.4;margin-top:.25rem;}
.mtd-features-grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;}
.mtd-feature-item{display:flex;align-items:flex-start;gap:.625rem;font-size:.8125rem;color:rgba(255,255,255,.9);line-height:1.45;}
.mtd-check{flex-shrink:0;width:16px;height:16px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;margin-top:2px;}
.mtd-check::after{content:'✓';font-size:9px;color:#fff;}
.mtd-cta{display:inline-flex;align-items:center;gap:.5rem;border-radius:.625rem;background:#fff;padding:.875rem 1.75rem;font-size:.9375rem;font-weight:700;color:var(--mtd-blue);text-decoration:none;transition:transform .2s,box-shadow .2s;margin-top:2rem;box-shadow:0 8px 24px rgba(0,0,0,.2);}
.mtd-cta:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(0,0,0,.25);}
.mtd-right{display:flex;flex-direction:column;justify-content:center;}
.mtd-card{border-radius:1.25rem;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);padding:2rem;backdrop-filter:blur(8px);}
.mtd-card h3{font-size:1rem;font-weight:700;color:#fff;margin-bottom:1.25rem;}
.mtd-timeline{display:flex;flex-direction:column;gap:1rem;}
.mtd-timeline-item{display:flex;align-items:flex-start;gap:1rem;}
.mtd-timeline-dot{width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,.4);flex-shrink:0;margin-top:5px;}
.mtd-timeline-dot.active{background:#fff;}
.mtd-timeline-line{font-size:.8125rem;color:rgba(255,255,255,.7);line-height:1.5;}
.mtd-timeline-line strong{color:#fff;font-weight:600;display:block;}

/* ── Testimonial Section ───────────────────────────────────── */
.testimonial-section{padding:6rem 1.5rem;}
.testimonial-header{max-width:72rem;margin:0 auto 2.5rem;}
.testimonial-header h2{margin-bottom:1rem;}
.testimonial-header h2 span{color:var(--green-muted);}
.testimonial-header p{font-size:1rem;color:var(--muted-foreground);max-width:56rem;}
.testimonial-card{position:relative;border-radius:32px;background:var(--green-dark);padding:3rem 2.5rem;box-shadow:0 12px 40px rgba(0,0,0,.08);max-width:72rem;margin:0 auto;overflow:hidden;}
@media(min-width:640px){.testimonial-card{padding:3.5rem;}}
@media(min-width:1024px){.testimonial-card{padding:4rem;}}
.testimonial-quote{font-size:clamp(1.25rem,3vw,2.5rem);font-weight:600;line-height:1.08;color:#fff;max-width:56rem;}
.testimonial-quote-alt{color:rgba(255,255,255,.55);}
.testimonial-author{display:flex;align-items:center;gap:1rem;margin-top:3.5rem;}
.testimonial-avatar{width:64px;height:64px;border-radius:50%;border:2px solid rgba(255,255,255,.2);background:rgba(255,255,255,.15);overflow:hidden;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:700;color:#fff;}
.testimonial-avatar img{width:100%;height:100%;object-fit:cover;}
.testimonial-name{font-size:1.125rem;font-weight:700;color:#fff;}
.testimonial-role{font-size:.9375rem;color:rgba(255,255,255,.55);margin-top:.5rem;}
.testimonial-controls{position:absolute;bottom:2.5rem;right:2.5rem;display:flex;align-items:center;gap:.75rem;}
.testimonial-dots{display:flex;gap:.5rem;margin-right:.5rem;}
.testimonial-dot{height:8px;border-radius:9999px;background:rgba(255,255,255,.3);width:8px;border:none;cursor:pointer;transition:width .25s,background .25s;}
.testimonial-dot.active{width:24px;background:#fff;}
.testimonial-nav-btn{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.3);background:none;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,transform .2s;}
.testimonial-nav-btn:hover{background:rgba(255,255,255,.1);transform:translateY(-2px);}

/* ── Pricing Section ───────────────────────────────────────── */
.pricing-section{padding:6rem 1.5rem;}
.pricing-header{text-align:center;max-width:72rem;margin:0 auto 2rem;}
.billing-toggle{display:inline-flex;align-items:center;border-radius:9999px;border:1px solid var(--border);background:var(--background);padding:.25rem;box-shadow:0 1px 4px rgba(0,0,0,.06);position:relative;margin:2rem auto 0;}
.billing-slider{position:absolute;top:4px;bottom:4px;width:110px;border-radius:9999px;background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.12);transition:left .3s cubic-bezier(.34,1.56,.64,1);left:4px;}
.billing-slider.annual{left:110px;}
.billing-btn{position:relative;z-index:1;border-radius:9999px;padding:.5rem 1.5rem;font-size:.875rem;font-weight:500;background:none;border:none;cursor:pointer;font-family:'Poppins',sans-serif;display:flex;align-items:center;gap:.5rem;}
.save-badge{border-radius:9999px;background:#e6f4ee;padding:.125rem .5rem;font-size:.75rem;font-weight:700;color:var(--green-muted);}
.pricing-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;max-width:72rem;margin:4rem auto 0;align-items:start;}
@media(min-width:640px){.pricing-grid{grid-template-columns:repeat(3,1fr);}}
.pricing-card{position:relative;border-radius:24px;background:#fff;padding:2rem;text-align:left;cursor:pointer;transition:transform .2s,box-shadow .2s,border .2s;border:1px solid var(--border);box-shadow:0 2px 8px rgba(0,0,0,.04);}
.pricing-card:hover{transform:translateY(-6px);}
.pricing-card.active{border:2px solid var(--green-muted);box-shadow:0 12px 40px rgba(0,0,0,.12);}
.pricing-popular{position:absolute;top:-14px;left:50%;transform:translateX(-50%);border-radius:9999px;background:var(--green-muted);padding:.375rem 1.25rem;font-size:.75rem;font-weight:700;color:#fff;white-space:nowrap;box-shadow:0 2px 8px rgba(0,0,0,.15);}
.pricing-icon{width:40px;height:40px;border-radius:12px;background:rgba(28,98,185,.1);margin-bottom:1rem;}
.pricing-name{font-size:1.25rem;font-weight:700;color:var(--foreground);}
.pricing-desc{font-size:.875rem;color:var(--muted-foreground);margin-top:.25rem;}
.pricing-price{display:flex;align-items:baseline;gap:.25rem;margin-top:1.25rem;}
.pricing-amount{font-size:3rem;font-weight:800;letter-spacing:-.03em;color:var(--foreground);transition:opacity .3s;}
.pricing-period{font-size:.875rem;color:var(--muted-foreground);}
.pricing-features{margin-top:2rem;display:flex;flex-direction:column;gap:.75rem;flex:1;}
.pricing-feature{display:flex;align-items:center;gap:.75rem;font-size:.875rem;color:var(--foreground);}
.pricing-check{flex-shrink:0;width:16px;height:16px;color:var(--green-muted);}
.pricing-cta{display:block;width:100%;margin-top:2.5rem;border-radius:.75rem;padding:.875rem 1rem;font-size:.875rem;font-weight:600;text-align:center;cursor:pointer;border:none;font-family:'Poppins',sans-serif;transition:transform .2s,background .2s;}
.pricing-cta:hover{transform:scale(1.02);}
.pricing-cta-active{background:var(--blue-dark);color:#fff;}
.pricing-cta-inactive{background:var(--muted);color:var(--foreground);}
.pricing-cta-inactive:hover{background:#e2e8f0;}

/* ── FAQ Section ───────────────────────────────────────────── */
.faq-section{padding:6rem 1.5rem;}
.faq-inner{max-width:72rem;margin:0 auto;}
.faq-inner h2{margin-bottom:2.5rem;}
.faq-layout{display:flex;flex-direction:column;gap:1.5rem;position:relative;}
@media(min-width:1024px){.faq-layout{flex-direction:row;align-items:stretch;}}
.faq-questions{width:100%;border-radius:28px;border:1px solid var(--border);background:#fff;overflow:hidden;display:flex;flex-direction:column;position:relative;z-index:10;}
@media(min-width:1024px){.faq-questions{width:56%;}}
.faq-question-btn{display:flex;align-items:center;gap:1rem;padding:1.75rem 1.5rem;border:none;border-bottom:1px solid var(--border);background:#fff;width:100%;text-align:left;cursor:pointer;font-family:'Poppins',sans-serif;transition:background .15s,transform .15s;}
.faq-question-btn:last-child{border-bottom:none;}
.faq-question-btn.active{background:#f5f7fb;}
.faq-question-btn:hover:not(.active){background:rgba(241,245,249,.5);transform:translateX(2px);}
.faq-dot{flex-shrink:0;width:16px;height:16px;border-radius:50%;background:#a9c3e6;transition:background .2s;}
.faq-dot.active{background:#1147a6;}
.faq-q-text{flex:1;font-size:.9375rem;font-weight:500;line-height:1.35;color:var(--foreground);transition:color .2s;}
.faq-q-text.active{color:#1d5fc6;}
.faq-chevron{flex-shrink:0;color:#9fbbe0;transition:color .2s;}
.faq-chevron.active{color:#1d5fc6;}
.faq-answer{width:100%;border-radius:28px;background:#087a3b;padding:2.5rem;}
@media(min-width:1024px){.faq-answer{width:52%;margin-left:-3rem;padding:3rem 3rem 3rem 5rem;}}
.faq-answer-content{display:none;}
.faq-answer-content.active{display:block;}
.faq-answer-q{font-size:1.125rem;font-weight:700;line-height:1.35;color:#fff;margin-bottom:2rem;}
.faq-answer-a{font-size:.9375rem;line-height:2;color:rgba(255,255,255,.9);max-width:28rem;}

/* ── CTA / Footer Section ──────────────────────────────────── */
.cta-section{position:relative;overflow:hidden;padding:6rem 1.5rem;}
.cta-inner{position:relative;max-width:72rem;margin:0 auto;text-align:center;}
.cta-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:3.5rem;}
@media(min-width:640px){.cta-grid{grid-template-columns:1fr 1fr;}}
.cta-card{border-radius:28px;border:1px solid var(--border);background:#fff;text-align:left;box-shadow:0 10px 30px rgba(0,0,0,.06);overflow:hidden;transition:transform .2s,box-shadow .2s;}
.cta-card:hover{transform:translateY(-6px);}
.cta-card-header{border-bottom:1px solid var(--border);background:linear-gradient(to bottom,#f8fafc,#fff);padding:1.75rem;}
.cta-card-body{padding:1.75rem;}
.cta-card-badge{display:inline-flex;align-items:center;border-radius:9999px;padding:.25rem .75rem;font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;margin-bottom:1rem;}
.cta-card h3{font-size:1.25rem;font-weight:700;color:var(--foreground);margin-bottom:.75rem;}
.cta-card-desc{font-size:.875rem;color:var(--muted-foreground);line-height:1.6;}
.cta-points{display:flex;flex-direction:column;gap:.75rem;}
.cta-point{display:flex;align-items:flex-start;gap:.75rem;font-size:.875rem;color:var(--foreground);}
.cta-point-icon{flex-shrink:0;width:20px;height:20px;border-radius:50%;background:rgba(26,102,68,.1);display:flex;align-items:center;justify-content:center;margin-top:2px;}
.cta-divider{height:1px;background:var(--border);margin:1.25rem 0;}
.cta-built-for{font-size:.875rem;font-weight:500;color:#1a3a8c;transition:color .2s;}
.cta-card:hover .cta-built-for{color:#162f75;}
.trust-list{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1.5rem 2rem;margin-top:3rem;margin-bottom:2.5rem;}
.trust-item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:var(--muted-foreground);}
.btn-blue-lg{display:inline-flex;align-items:center;justify-content:center;background:var(--blue-dark);color:#fff;font-family:'Poppins',sans-serif;font-weight:600;font-size:1rem;border-radius:.75rem;padding:1rem 4rem;box-shadow:0 8px 24px rgba(29,112,184,.3);border:none;cursor:pointer;transition:background .2s,transform .2s;}
.btn-blue-lg:hover{background:var(--blue-hover);transform:translateY(-2px);}

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer{background:var(--footer-bg);padding:4rem 1.5rem;}
.footer-inner{max-width:72rem;margin:0 auto;}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;}
@media(min-width:640px){.footer-grid{grid-template-columns:repeat(4,1fr);}}
.footer-brand{grid-column:span 2;}
@media(min-width:640px){.footer-brand{grid-column:span 1;}}
.footer-brand-name{font-size:1.125rem;font-weight:700;color:#fff;}
.footer-brand-desc{margin-top:1rem;max-width:18rem;font-size:.875rem;line-height:1.7;color:rgba(255,255,255,.5);}
.footer-socials{display:flex;gap:.75rem;margin-top:1.5rem;}
.footer-social{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.1);color:rgba(255,255,255,.6);transition:background .2s,color .2s,transform .2s;}
.footer-social:hover{background:rgba(255,255,255,.2);color:#fff;transform:translateY(-2px);}
.footer-col-title{font-size:.875rem;font-weight:700;color:#fff;margin-bottom:1.25rem;}
.footer-links{display:flex;flex-direction:column;gap:.75rem;}
.footer-links a{font-size:.875rem;color:rgba(255,255,255,.5);transition:color .2s,transform .2s;display:inline-block;}
.footer-links a:hover{color:#fff;transform:translateX(2px);}
.footer-bottom{display:flex;flex-direction:column;gap:1rem;justify-content:space-between;align-items:flex-start;border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;margin-top:3.5rem;}
@media(min-width:640px){.footer-bottom{flex-direction:row;align-items:center;}}
.footer-copy{font-size:.875rem;color:rgba(255,255,255,.4);}
.footer-legal{display:flex;gap:1.5rem;}
.footer-legal a{font-size:.875rem;color:rgba(255,255,255,.4);transition:color .2s;}
.footer-legal a:hover{color:#fff;}

/* ── Waitlist Modal ────────────────────────────────────────── */
.modal-overlay{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity .25s ease;}
.modal-overlay.open{opacity:1;pointer-events:auto;}
.modal-box{background:#fff;border-radius:24px;width:100%;max-width:580px;max-height:90vh;overflow-y:auto;position:relative;transform:translateY(20px) scale(.97);transition:transform .3s ease;box-shadow:0 30px 80px rgba(0,0,0,.22);}
.modal-overlay.open .modal-box{transform:translateY(0) scale(1);}
.modal-header{border-bottom:1px solid var(--border);background:linear-gradient(to right,#f7fbf8,#fff,#eef4ff);padding:1.25rem 1.5rem;}
.modal-close{position:absolute;top:1rem;right:1rem;width:36px;height:36px;border-radius:.5rem;background:var(--muted);display:flex;align-items:center;justify-content:center;cursor:pointer;border:none;font-size:1.125rem;color:var(--muted-foreground);transition:background .2s;}
.modal-close:hover{background:var(--border);}
.modal-icon{width:56px;height:56px;border-radius:1rem;border:1px solid rgba(0,0,0,.05);background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.08);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;}
.modal-icon img{width:28px;height:28px;}
.modal-early-badge{display:inline-flex;align-items:center;border-radius:9999px;background:#eaf6f0;padding:.25rem .75rem;font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#1a6644;margin-bottom:.75rem;}
.modal-h2{font-size:1.5rem;font-weight:700;color:var(--foreground);margin-bottom:.5rem;}
.modal-sub{font-size:.875rem;color:var(--muted-foreground);max-width:28rem;margin:0 auto;line-height:1.6;}
.modal-body{padding:1.5rem;}
.modal-form{display:flex;flex-direction:column;gap:1rem;}
.modal-form-grid{display:grid;grid-template-columns:1fr;gap:1rem;}
@media(min-width:640px){.modal-form-grid{grid-template-columns:1fr 1fr;}}
.form-group{display:flex;flex-direction:column;gap:.5rem;}
.form-group.full{grid-column:1/-1;}
.form-label{font-size:.875rem;font-weight:500;color:var(--foreground);}
.form-input,.form-select{width:100%;height:44px;border-radius:.75rem;border:1px solid var(--border);background:#fff;padding:0 1rem;font-size:.875rem;font-family:'Poppins',sans-serif;color:var(--foreground);outline:none;transition:border-color .2s,box-shadow .2s;}
.form-input:focus,.form-select:focus{border-color:var(--blue);box-shadow:0 0 0 2px rgba(28,98,185,.1);}
.form-disclaimer{font-size:.75rem;color:var(--muted-foreground);line-height:1.5;margin-top:.5rem;}
.modal-actions{display:flex;flex-direction:column-reverse;gap:.75rem;margin-top:1.75rem;}
@media(min-width:640px){.modal-actions{flex-direction:row;justify-content:flex-end;}}
.btn-cancel{height:44px;border-radius:.75rem;border:1px solid var(--border);background:#fff;padding:0 1.5rem;font-size:.875rem;font-weight:500;color:var(--foreground);cursor:pointer;font-family:'Poppins',sans-serif;transition:background .2s;}
.btn-cancel:hover{background:var(--muted);}
.btn-submit{height:44px;border-radius:.75rem;background:var(--blue-dark);color:#fff;padding:0 2rem;font-size:.875rem;font-weight:600;cursor:pointer;font-family:'Poppins',sans-serif;border:none;transition:background .2s;}
.btn-submit:hover{background:var(--blue-hover);}
.btn-submit:disabled{opacity:.7;cursor:not-allowed;}
.modal-success{display:flex;flex-direction:column;align-items:center;text-align:center;padding:2.5rem 1.5rem;}
.success-h3{font-size:1.5rem;font-weight:700;color:var(--foreground);margin-top:1.5rem;}
.success-p{font-size:.875rem;color:var(--muted-foreground);margin-top:.75rem;}
.success-bar-wrap{width:8rem;height:.25rem;border-radius:9999px;background:var(--muted);overflow:hidden;margin-top:1.5rem;}
.success-bar{height:100%;width:0;background:#1a6644;animation:barFill 2.2s ease forwards;}
@keyframes barFill{to{width:100%;}}

/* ── MTD Page Styles ───────────────────────────────────────── */
.mtd-page{background:#F7F8FA;}
.mtd-hero{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:85vh;padding:calc(64px + 2.5rem) 1.25rem 4rem;text-align:center;overflow:hidden;background:#1C62B9 !important;}
.mtd-sparkle{position:absolute;pointer-events:none;z-index:10;}
.mtd-sparkle-1{right:9%;top:22%;opacity:.7;} .mtd-sparkle-2{left:8%;top:52%;opacity:.45;} .mtd-sparkle-3{right:15%;bottom:28%;opacity:.55;}
.mtd-hero-content{position:relative;z-index:10;display:flex;flex-direction:column;align-items:center;max-width:760px;width:100%;}
.mtd-hero-eyebrow{display:inline-block;background:rgba(255,255,255,.18);color:#fff;font-size:.6875rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;padding:.375rem 1rem;border-radius:999px;margin-bottom:1.25rem;}
.mtd-hero-h1{font-size:clamp(2rem,6vw,3.25rem);font-weight:800;color:#fff;line-height:1.15;margin:0 0 1rem;}
.mtd-hero-sub{font-size:clamp(1rem,2vw,1.1875rem);color:rgba(255,255,255,.75);max-width:620px;line-height:1.7;margin:0 0 2.25rem;}
.mtd-hero-actions{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;}
.mtd-hero-btn{display:inline-flex;align-items:center;justify-content:center;background:#fff;color:#1C62B9;font-family:'Poppins',sans-serif;font-size:.9375rem;font-weight:600;padding:.875rem 1.75rem;border-radius:10px;border:none;cursor:pointer;transition:background .2s,transform .2s,box-shadow .2s;}
.mtd-hero-btn:hover{background:rgba(255,255,255,.9);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2);}
.mtd-hero-trust{margin-top:1.25rem;display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;}
.mtd-hero-trust-item{display:flex;align-items:center;gap:.375rem;font-size:.8125rem;color:rgba(255,255,255,.7);}
.mtd-hmrc-badge{margin-top:1.25rem;display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.15);color:rgba(255,255,255,.9);font-size:.8125rem;font-weight:500;padding:.5rem 1rem;border-radius:8px;}

.mtd-countdown-strip{background:#1D70B8;padding:.875rem 1.5rem;}
.mtd-countdown-inner{max-width:1100px;margin:0 auto;display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:.5rem;}
@media(min-width:640px){.mtd-countdown-inner{flex-direction:row;}}
.mtd-countdown-text{font-size:.875rem;font-weight:600;color:#fff;text-align:center;margin:0;}
.mtd-countdown-link{font-size:.8125rem;color:rgba(255,255,255,.8);text-decoration:none;white-space:nowrap;transition:color .2s;}
.mtd-countdown-link:hover{color:#fff;text-decoration:underline;}

.mtd-video-section{padding:6rem 0;min-height:180vh;}
.mtd-video-text{max-width:56rem;margin:0 auto 3rem;padding:0 1.5rem;text-align:center;}
.mtd-video-text h3{font-size:clamp(1.5rem,3.5vw,2rem);font-weight:700;letter-spacing:-.02em;color:#111827;margin-bottom:1.25rem;}
.mtd-video-text p{font-size:1rem;color:#6B7280;line-height:1.7;}

.mtd-section-pad{padding:3.5rem 1.25rem;}
@media(min-width:768px){.mtd-section-pad{padding:5rem 2rem;}}
@media(min-width:1024px){.mtd-section-pad{padding:6.5rem 4rem;}}
.mtd-container{max-width:1100px;margin:0 auto;}
.mtd-h2-lg{font-size:clamp(1.5rem,3.5vw,2.25rem);font-weight:700;color:#111827;line-height:1.25;margin:0 0 1rem;}
.mtd-body-lg{font-size:1rem;color:#6B7280;line-height:1.8;margin:0;}
.mtd-body-md{font-size:.9375rem;color:#6B7280;line-height:1.7;margin:0;}
.mtd-label-pill{display:inline-block;background:#E8F1FB;color:#1D70B8;font-size:.6875rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;padding:.25rem .875rem;border-radius:999px;margin-bottom:1rem;}
.mtd-3col-grid{display:grid;grid-template-columns:1fr;gap:1rem;}
@media(min-width:640px){.mtd-3col-grid{grid-template-columns:repeat(3,1fr);}}
.mtd-4col-grid{display:grid;grid-template-columns:1fr;gap:1rem;}
@media(min-width:640px){.mtd-4col-grid{grid-template-columns:1fr 1fr;}}
@media(min-width:1024px){.mtd-4col-grid{grid-template-columns:repeat(4,1fr);}}
.mtd-2col-grid{display:grid;grid-template-columns:1fr;gap:1rem;}
@media(min-width:640px){.mtd-2col-grid{grid-template-columns:1fr 1fr;}}
.mtd-card{background:#fff;border:1px solid #E6E8EC;border-radius:14px;padding:1.5rem;transition:box-shadow .2s,transform .2s;}
.mtd-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.07);}
.mtd-card-title{font-size:.9375rem;font-weight:600;color:#111827;margin:0 0 .5rem;}
.mtd-card-body{font-size:.875rem;color:#6B7280;line-height:1.7;margin:0;}
.mtd-feature-card{background:#fff;border:1px solid #E6E8EC;border-radius:14px;padding:1.375rem;transition:box-shadow .2s,transform .2s;}
.mtd-feature-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.07);}
.mtd-feature-icon{width:40px;height:40px;border-radius:10px;background:#E8F1FB;display:flex;align-items:center;justify-content:center;margin-bottom:.875rem;}
.mtd-steps-grid{position:relative;display:grid;grid-template-columns:1fr;gap:2.5rem;}
@media(min-width:768px){.mtd-steps-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem;}}
.mtd-steps-line{display:none;}
@media(min-width:768px){.mtd-steps-line{display:block;position:absolute;top:22px;left:calc(12.5% + 1.5rem);right:calc(12.5% + 1.5rem);height:2px;background:#E6E8EC;z-index:0;}}
.mtd-step{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;text-align:center;}
.mtd-step-num{width:44px;height:44px;border-radius:50%;background:#1D70B8;color:#fff;font-size:1.125rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 0 0 6px #fff;}
.mtd-step-title{font-size:1rem;font-weight:600;color:#111827;margin:1rem 0 .5rem;}
.mtd-step-desc{font-size:.875rem;color:#6B7280;line-height:1.7;margin:0;}
.mtd-keeva-grid{display:grid;grid-template-columns:1fr;gap:3rem;}
@media(min-width:1024px){.mtd-keeva-grid{grid-template-columns:1fr 1fr;gap:4rem;align-items:start;}}
.mtd-keeva-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.625rem;}
.mtd-keeva-item{display:flex;align-items:flex-start;gap:.625rem;font-size:.875rem;color:#111827;line-height:1.55;}
.mtd-keeva-mockup{background:#E8F1FB;border-radius:20px;padding:1.75rem;display:flex;flex-direction:column;gap:.75rem;}
.mtd-keeva-card{background:#fff;border:1px solid #BFDBFE;border-radius:12px;padding:1rem;}
.mtd-k-row{display:flex;gap:.75rem;align-items:flex-start;}
.mtd-k-avatar{width:32px;height:32px;border-radius:50%;background:#1D70B8;color:#fff;font-size:.8125rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.mtd-k-label{font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#1D70B8;margin:0 0 .25rem;}
.mtd-k-msg{font-size:.84rem;color:#111827;line-height:1.65;margin:0;}
.mtd-phase-card{background:#fff;border:1px solid #E6E8EC;border-radius:14px;padding:1.5rem;}
.mtd-phase-label{font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin:0 0 .5rem;}
.mtd-phase-date{font-size:1.375rem;font-weight:800;color:#111827;margin:0 0 .25rem;}
.mtd-phase-threshold{font-size:.9375rem;font-weight:600;color:#111827;margin:0 0 .625rem;}
.mtd-phase-people{font-size:.8125rem;color:#6B7280;margin:0;}
.mtd-explainer-box{background:#E8F1FB;border:1px solid #BFDBFE;border-radius:12px;padding:1.25rem 1.5rem;}
.mtd-explainer-title{font-size:.875rem;font-weight:600;color:#1D70B8;margin:0 0 .625rem;}
.mtd-explainer-body{font-size:.875rem;color:#374151;line-height:1.7;margin:0;}
.mtd-pricing-card{background:#fff;border:1px solid #E6E8EC;border-top:4px solid #1D70B8;border-radius:20px;padding:2.25rem;box-shadow:0 4px 24px rgba(0,0,0,.07);}
.mtd-pricing-plan-label{font-size:.8125rem;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:#1D70B8;margin:0 0 1.25rem;}
.mtd-pricing-price-row{display:flex;align-items:baseline;gap:.5rem;}
.mtd-pricing-amount{font-size:3.25rem;font-weight:800;color:#111827;line-height:1;}
.mtd-pricing-period{font-size:1.125rem;color:#6B7280;}
.mtd-pricing-then{font-size:.9375rem;color:#6B7280;margin:.375rem 0 0;}
.mtd-pricing-hr{border:none;border-top:1px solid #E6E8EC;margin:1.75rem 0;}
.mtd-pricing-features-heading{font-size:.875rem;font-weight:600;color:#111827;margin:0 0 1rem;}
.mtd-pricing-features-grid{display:grid;grid-template-columns:1fr;}
@media(min-width:480px){.mtd-pricing-features-grid{grid-template-columns:1fr 1fr;}}
.mtd-pricing-feature-item{display:flex;align-items:center;gap:.625rem;font-size:.875rem;color:#111827;padding:.5625rem 0;border-bottom:1px solid #E6E8EC;}
.mtd-pricing-support{display:flex;align-items:center;gap:.5rem;}
.mtd-pricing-support p{font-size:.875rem;font-weight:500;color:#111827;margin:0;}
.mtd-pricing-cta{display:block;width:100%;margin-top:1.75rem;background:#1D70B8;color:#fff;font-family:'Poppins',sans-serif;font-size:1rem;font-weight:600;padding:.9375rem 1rem;border-radius:10px;border:none;cursor:pointer;transition:background .2s,transform .2s;text-align:center;}
.mtd-pricing-cta:hover{background:#1560A0;transform:translateY(-1px);}
.mtd-pricing-note{font-size:.8125rem;color:#6B7280;line-height:1.6;margin:.875rem 0 0;text-align:center;}
.mtd-table-wrap{overflow-x:auto;}
.mtd-comparison-table{width:100%;min-width:600px;border-collapse:separate;border-spacing:0;background:#fff;border:1px solid #E6E8EC;border-radius:14px;overflow:hidden;}
.mtd-th-feature{width:35%;padding:1rem 1.25rem;text-align:left;font-size:.875rem;font-weight:600;color:#111827;background:#fff;}
.mtd-th-cb{padding:1rem .75rem;text-align:center;font-size:.875rem;font-weight:700;color:#fff;background:#1D70B8;}
.mtd-th{padding:1rem .75rem;text-align:center;font-size:.875rem;font-weight:600;color:#111827;background:#fff;}
.mtd-td{padding:.875rem .75rem;font-size:.875rem;border-top:1px solid #F3F4F6;}
.mtd-td-feature{padding:.875rem 1.25rem;font-size:.875rem;font-weight:500;color:#111827;border-top:1px solid #F3F4F6;}
.mtd-td-center{display:flex;align-items:center;justify-content:center;}
.mtd-faq-list{display:flex;flex-direction:column;gap:.5rem;}
.mtd-faq-item{background:#fff;border:1px solid #E6E8EC;border-radius:12px;overflow:hidden;}
.mtd-faq-btn{display:flex;align-items:center;justify-content:space-between;width:100%;padding:1.125rem 1.25rem;background:none;border:none;cursor:pointer;font-family:'Poppins',sans-serif;text-align:left;gap:1.5rem;}
.mtd-faq-btn span{font-size:.9375rem;font-weight:600;color:#111827;}
.mtd-faq-chevron{flex-shrink:0;transition:transform .25s ease;}
.mtd-faq-item.open .mtd-faq-chevron{transform:rotate(180deg);}
.mtd-faq-body{max-height:0;overflow:hidden;transition:max-height .35s ease,opacity .3s ease;opacity:0;}
.mtd-faq-body.open{opacity:1;}
.mtd-faq-body p{padding:0 1.25rem 1.125rem;font-size:.875rem;color:#6B7280;line-height:1.8;margin:0;}
.mtd-final-cta{background:#111827;padding:4rem 1.25rem;}
@media(min-width:768px){.mtd-final-cta{padding:6rem 2rem;}}
.mtd-final-cta-inner{max-width:680px;margin:0 auto;display:flex;flex-direction:column;align-items:center;text-align:center;}
.mtd-final-eyebrow{display:inline-block;background:rgba(255,255,255,.1);color:rgba(255,255,255,.8);font-size:.6875rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;padding:.25rem .875rem;border-radius:999px;margin-bottom:1.25rem;}
.mtd-final-h2{font-size:clamp(1.875rem,5vw,2.75rem);font-weight:800;color:#fff;line-height:1.2;margin:0 0 1rem;}
.mtd-final-sub{font-size:1.0625rem;color:rgba(255,255,255,.75);line-height:1.7;margin:0 0 2.25rem;}
.mtd-final-trust{margin-top:1.75rem;display:flex;flex-wrap:wrap;justify-content:center;gap:1.25rem 2rem;}
.mtd-final-trust-item{display:flex;align-items:center;gap:.375rem;font-size:.8125rem;color:rgba(255,255,255,.65);}

/* ── Responsive ────────────────────────────────────────────── */
@media(max-width:640px){.sync-diagram{height:380px;}.testimonial-controls{bottom:1rem;right:1rem;}.faq-answer{margin-left:0;}}
