/* Tokens */
:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(220 25% 12%);
  --card: hsl(0 0% 100%);
  --primary: hsl(221 83% 40%);
  --primary-fg: hsl(0 0% 100%);
  --secondary: hsl(210 40% 96%);
  --secondary-fg: hsl(220 25% 20%);
  --muted: hsl(210 40% 96%);
  --muted-fg: hsl(215 16% 47%);
  --border: hsl(214 32% 91%);
  --input: hsl(214 32% 91%);
  --radius: 0.625rem;
  --shadow-sm: 0px 1px 6px 0px rgba(0,0,0,.18);
  --shadow-md: 0px 2px 12px -1px rgba(0,0,0,.20);
}

/* Reset */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',system-ui,sans-serif;background:var(--background);color:var(--foreground);line-height:1.5;}
a{text-decoration:none;color:inherit;}
svg{display:inline-block;vertical-align:middle;flex-shrink:0;}
ul{list-style:none;}

/* Icon sizes */
.icon-4{width:1rem;height:1rem;}
.icon-5{width:1.25rem;height:1.25rem;}
.icon-6{width:1.5rem;height:1.5rem;}
.icon-8{width:2rem;height:2rem;}
.text-primary{color:var(--primary);}
.text-muted{color:var(--muted-fg);}
.text-foreground{color:var(--foreground);}
.text-bg{color:var(--background);}

/* Site structure */
.site-wrap{min-height:100vh;display:flex;flex-direction:column;}
.site-main{flex:1;padding-top:1rem;}

/* Container */
.container{width:100%;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem;}
.max-w-xl{max-width:36rem;}
.max-w-2xl{max-width:42rem;}
.max-w-3xl{max-width:48rem;}
.max-w-4xl{max-width:56rem;}
.max-w-5xl{max-width:64rem;}
.max-w-md{max-width:28rem;}
.mx-auto{margin-left:auto;margin-right:auto;}

/* NAV */
.site-header{position:sticky;top:1rem;z-index:50;padding:0 1rem;}
.nav-inner{background:hsl(0 0% 100% / .82);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:calc(var(--radius) + 8px);box-shadow:var(--shadow-md);padding:0 1.25rem;height:3.5rem;display:flex;align-items:center;justify-content:space-between;}
.nav-logo{display:flex;align-items:center;gap:.5rem;}
.nav-icon-img{height:2rem;width:auto;display:block;}
.nav-logo-img{height:1.5rem;width:auto;display:block;}
.nav-links{display:none;align-items:center;gap:1.5rem;}
.nav-links a{font-size:.875rem;font-weight:500;color:var(--muted-fg);transition:color .15s;}
.nav-links a:hover,.nav-links a.active{color:var(--primary);}
.nav-cta-wrap{display:none;}
.nav-hamburger{display:flex;align-items:center;justify-content:center;padding:.5rem;border-radius:.375rem;background:transparent;border:none;cursor:pointer;color:var(--foreground);}
.nav-hamburger svg{width:1.25rem;height:1.25rem;}
.nav-mobile{display:none;margin-top:.5rem;background:hsl(0 0% 100% / .93);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:calc(var(--radius) + 8px);box-shadow:var(--shadow-md);padding:1rem;flex-direction:column;gap:.75rem;}
.nav-mobile.open{display:flex;}
.nav-mobile a{font-size:.875rem;font-weight:500;padding:.5rem 0;color:var(--foreground);}
.nav-mobile a:hover{color:var(--primary);}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;border-radius:calc(var(--radius) - 2px);font-size:.875rem;font-weight:500;cursor:pointer;border:none;transition:background-color .15s,opacity .15s;white-space:nowrap;text-decoration:none;font-family:inherit;}
.btn:disabled{opacity:.5;pointer-events:none;}
.btn-primary{background:var(--primary);color:var(--primary-fg);}
.btn-primary:hover{background:hsl(221 83% 34%);}
.btn-secondary{background:var(--secondary);color:var(--secondary-fg);}
.btn-secondary:hover{background:hsl(210 40% 90%);}
.btn-sm{height:2.25rem;padding:0 .75rem;font-size:.875rem;}
.btn-md{height:2.5rem;padding:0 1rem;font-size:.875rem;}
.btn-lg{height:auto;padding:1.5rem 2rem;font-size:1rem;}
.btn-full{width:100%;}

/* Cards */
.card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-sm);transition:box-shadow .15s;}
.card:hover{box-shadow:var(--shadow-md);}
.card-header{padding:1.5rem 1.5rem .75rem;display:flex;flex-direction:column;gap:.375rem;}
.card-title{font-size:1.25rem;font-weight:600;line-height:1.2;}
.card-content{padding:.75rem 1.5rem 1.5rem;}
.card-content-pt{padding:1.5rem;}

/* Forms */
.form-label{display:block;font-size:.875rem;font-weight:500;margin-bottom:.375rem;}
.form-input,.form-textarea,.form-select{display:block;width:100%;height:2.5rem;padding:0 .75rem;font-size:.875rem;font-family:inherit;background:var(--background);border:1px solid var(--input);border-radius:calc(var(--radius) - 2px);color:var(--foreground);outline:none;transition:border-color .15s,box-shadow .15s;}
.form-input::placeholder,.form-textarea::placeholder{color:var(--muted-fg);}
.form-input:focus,.form-textarea:focus,.form-select:focus{border-color:var(--primary);box-shadow:0 0 0 2px hsl(221 83% 40% / .2);}
.form-textarea{height:auto;min-height:7.5rem;padding:.5rem .75rem;resize:vertical;}
.form-select{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center;padding-right:2.5rem;cursor:pointer;}

/* Badge */
.badge-primary{display:inline-block;background:hsl(221 83% 40% / .10);color:var(--primary);font-size:.875rem;font-weight:600;padding:.375rem 1rem;border-radius:9999px;margin-bottom:1.5rem;}

/* Sections */
.section{padding:5rem 0;}
.section-hero{padding:5rem 0;}
.section-sm{padding:4rem 0;}

/* Backgrounds */
.bg-hero{background:linear-gradient(to bottom right,hsl(221 83% 40% / .05),hsl(0 0% 100%),hsl(210 40% 96%));}
.bg-primary-section{background:var(--primary);color:var(--primary-fg);}
.bg-secondary-section{background:var(--secondary);}
.bg-muted-section{background:var(--muted);}
.bg-white-section{background:var(--background);}

/* Typography */
.text-center{text-align:center;}
.text-xs{font-size:.75rem;line-height:1rem;}
.text-sm{font-size:.875rem;line-height:1.25rem;}
.text-base{font-size:1rem;line-height:1.5rem;}
.text-lg{font-size:1.125rem;line-height:1.75rem;}
.text-xl{font-size:1.25rem;line-height:1.75rem;}
.text-2xl{font-size:1.5rem;line-height:2rem;}
.text-3xl{font-size:1.875rem;line-height:2.25rem;}
.text-4xl{font-size:2.25rem;line-height:2.5rem;}
.text-5xl{font-size:3rem;line-height:1.1;}
.font-medium{font-weight:500;}
.font-semibold{font-weight:600;}
.font-bold{font-weight:700;}
.leading-tight{line-height:1.25;}
.leading-relaxed{line-height:1.625;}
.uppercase{text-transform:uppercase;}
.tracking-wide{letter-spacing:.025em;}
.italic{font-style:italic;}
.whitespace-pre-line{white-space:pre-line;}
.text-primary-fg-80{color:hsl(0 0% 100% / .80);}
.text-bg-50{color:hsl(0 0% 100% / .50);}

/* Spacing */
.mb-2{margin-bottom:.5rem;}.mb-3{margin-bottom:.75rem;}.mb-4{margin-bottom:1rem;}
.mb-5{margin-bottom:1.25rem;}.mb-6{margin-bottom:1.5rem;}.mb-8{margin-bottom:2rem;}
.mb-10{margin-bottom:2.5rem;}.mb-12{margin-bottom:3rem;}
.mt-1{margin-top:.25rem;}.mt-2{margin-top:.5rem;}.mt-3{margin-top:.75rem;}
.mt-4{margin-top:1rem;}.mt-05{margin-top:.125rem;}

/* Flex / Grid */
.flex{display:flex;}.flex-col{flex-direction:column;}
.items-center{align-items:center;}.items-start{align-items:flex-start;}
.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}
.gap-2{gap:.5rem;}.gap-3{gap:.75rem;}.gap-4{gap:1rem;}
.gap-6{gap:1.5rem;}.gap-8{gap:2rem;}.gap-12{gap:3rem;}
.flex-shrink-0{flex-shrink:0;}.flex-1{flex:1 1 0%;}

.grid{display:grid;}
.grid-1{grid-template-columns:1fr;}
.col-span-2{grid-column:span 2;}

/* Borders */
.border-t{border-top:1px solid var(--border);}
.divider{border:none;border-top:1px solid var(--border);margin:2rem 0;}
.divider-bg20{border-top:1px solid hsl(0 0% 100% / .20);padding-top:1.5rem;margin-top:2rem;}

/* Shapes */
.rounded-full{border-radius:9999px;}
.rounded-2xl{border-radius:calc(var(--radius) + 8px);}
.rounded-xl{border-radius:calc(var(--radius) + 4px);}
.rounded-lg{border-radius:var(--radius);}
.rounded-md{border-radius:calc(var(--radius) - 2px);}

/* Icon containers */
.icon-circle-primary{width:3rem;height:3rem;border-radius:9999px;background:hsl(221 83% 40% / .10);display:flex;align-items:center;justify-content:center;}
.icon-circle-primary-lg{width:4rem;height:4rem;border-radius:9999px;background:hsl(221 83% 40% / .10);display:flex;align-items:center;justify-content:center;margin-left:auto;margin-right:auto;margin-bottom:1.5rem;}
.icon-box-primary{width:2.5rem;height:2.5rem;border-radius:calc(var(--radius) - 2px);background:hsl(221 83% 40% / .10);display:flex;align-items:center;justify-content:center;}
.icon-box-sm{width:2.25rem;height:2.25rem;border-radius:calc(var(--radius) - 2px);background:hsl(221 83% 40% / .10);display:flex;align-items:center;justify-content:center;}
.icon-box-primary-12{width:3rem;height:3rem;border-radius:9999px;background:hsl(221 83% 40% / .10);display:flex;align-items:center;justify-content:center;margin-left:auto;margin-right:auto;margin-bottom:1rem;}

/* Step component */
.step-num{width:3rem;height:3rem;border-radius:9999px;background:var(--primary);color:var(--primary-fg);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.875rem;flex-shrink:0;}
.step-line{width:2px;flex:1;background:var(--border);margin-top:.75rem;}
.step-col{display:flex;flex-direction:column;align-items:center;}

/* Promise pill */
.promise-pill{display:flex;align-items:center;gap:.75rem;background:hsl(0 0% 100% / .10);border-radius:calc(var(--radius) + 4px);padding:.75rem 1.25rem;}

/* Outcome box */
.outcome-box{background:hsl(221 83% 40% / .05);border:1px solid hsl(221 83% 40% / .20);border-radius:var(--radius);padding:.75rem 1rem;}

/* Contact info */
.contact-info-item{display:flex;align-items:flex-start;gap:.75rem;margin-bottom:1rem;}
.contact-info-item .ci-label{font-size:.75rem;font-weight:600;color:var(--muted-fg);text-transform:uppercase;letter-spacing:.025em;}
.contact-info-item .ci-value{font-size:.875rem;font-weight:500;}

/* Footer */
.site-footer{background:var(--foreground);color:hsl(0 0% 100% / .80);padding:3rem 0;}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:2rem;}
.footer-logo{display:flex;align-items:center;gap:.5rem;margin-bottom:.75rem;}
.footer-logo span{font-weight:700;color:hsl(0 0% 100%);}
.footer-icon-img{height:2.5rem;width:auto;display:block;}
.footer-links li+li{margin-top:.5rem;}
.footer-links a{font-size:.875rem;color:hsl(0 0% 100% / .80);transition:color .15s;}
.footer-links a:hover{color:hsl(0 0% 100%);}
.footer-h4{font-weight:600;color:hsl(0 0% 100%);margin-bottom:.75rem;}
.footer-bottom{display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:.75rem;font-size:.75rem;color:hsl(0 0% 100% / .50);}
.footer-bottom-links{display:flex;align-items:center;gap:1rem;}
.footer-bottom-links a{color:hsl(0 0% 100% / .50);transition:color .15s;}
.footer-bottom-links a:hover{color:hsl(0 0% 100% / .80);}

/* Why-us card */
.why-card{text-align:center;background:var(--card);border-radius:calc(var(--radius) + 4px);padding:2rem;box-shadow:var(--shadow-sm);border:1px solid var(--border);}

/* Value card */
.value-card{background:var(--background);border-radius:calc(var(--radius) + 4px);padding:1.5rem;box-shadow:var(--shadow-sm);}
.value-card h3{font-weight:700;font-size:1.125rem;margin-bottom:.75rem;color:var(--primary);}

/* Differentiator pill */
.diff-pill{background:var(--background);border-radius:calc(var(--radius) + 4px);padding:.75rem 1rem;font-weight:500;font-size:.875rem;box-shadow:var(--shadow-sm);text-align:center;}

/* Space-y */
.space-y-1>*+*{margin-top:.25rem;}
.space-y-2>*+*{margin-top:.5rem;}
.space-y-4>*+*{margin-top:1rem;}
.space-y-5>*+*{margin-top:1.25rem;}
.space-y-6>*+*{margin-top:1.5rem;}
.space-y-8>*+*{margin-top:2rem;}
.space-y-12>*+*{margin-top:3rem;}

/* Legal */
.legal-divider{border:none;border-top:1px solid var(--border);margin-top:2rem;}

/* Contact success */
#contact-success{padding:4rem 1rem;text-align:center;}

/* Responsive */
@media(min-width:640px){
  .sm-flex-row{flex-direction:row;}
  .footer-bottom{flex-direction:row;}
  .sm-grid-2{grid-template-columns:1fr 1fr;}
  .sm-grid-3{grid-template-columns:1fr 1fr 1fr;}
}
@media(min-width:768px){
  .nav-links{display:flex;}
  .nav-cta-wrap{display:block;}
  .nav-hamburger{display:none;}
  .md-py-32{padding-top:8rem;padding-bottom:8rem;}
  .md-text-5xl{font-size:3rem;line-height:1.1;}
  .md-grid-2{grid-template-columns:1fr 1fr;}
  .md-grid-3{grid-template-columns:1fr 1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr 1fr;}
}
@media(min-width:1024px){
  .lg-grid-3{grid-template-columns:1fr 1fr 1fr;}
  .lg-grid-3 .lg-col-span-2{grid-column:span 2;}
  .lg-grid-4{grid-template-columns:1fr 1fr 1fr 1fr;}
  .section-hero{padding:6rem 0;}
  .md-py-32{padding-top:8rem;padding-bottom:8rem;}
}
