  :root{
    --orange:#FF6B35;
    --yellow:#FFD23F;
    --teal:#0D9488;
    --navy:#1E293B;
    --paper:#FBF9F5;
    --muted:#7A8699;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Karla',sans-serif;
    color:var(--navy);
    background:#fff;
    line-height:1.7;
    font-size:16.5px;
  }
  h1,h2,h3{font-family:'Poppins',sans-serif; margin:0;}
  p{margin:0;}
  img{max-width:100%; display:block;}
  a{color:var(--teal);}
  .wrap{max-width:920px; margin:0 auto; padding:0 24px;}
  section[id]{scroll-margin-top:70px;}
  .rule{
    width:46px; height:3px; background:var(--orange);
    margin:16px 0 0 0; border-radius:2px;
  }

  /* NAV */
  nav.topnav{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(6px);
    border-bottom:1px solid #ECE8E0;
  }
  nav.topnav .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 24px;
  }
  nav.topnav .nav-logo{height:26px; width:auto;}
  nav.topnav .nav-links{
    display:flex; align-items:center;
  }
  nav.topnav .nav-links a{
    font-family:'Poppins',sans-serif;
    font-size:13.5px;
    font-weight:600;
    color:var(--navy);
    text-decoration:none;
    margin-left:26px;
  }
  nav.topnav .nav-links a:first-child{margin-left:0;}
  nav.topnav .nav-links a:hover{color:var(--orange);}
  nav.topnav .btn{padding:9px 18px; font-size:13px;}
  .nav-toggle{display:none;}
  .nav-toggle-btn{
    display:none;
    background:none; border:none; cursor:pointer;
    width:30px; height:24px; position:relative;
  }
  .nav-toggle-btn span{
    display:block; position:absolute; left:0; width:100%; height:2px;
    background:var(--navy); border-radius:2px; transition:transform .2s, opacity .2s;
  }
  .nav-toggle-btn span:nth-child(1){top:2px;}
  .nav-toggle-btn span:nth-child(2){top:11px;}
  .nav-toggle-btn span:nth-child(3){top:20px;}
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1){transform:translateY(9px) rotate(45deg);}
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2){opacity:0;}
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3){transform:translateY(-9px) rotate(-45deg);}

  @media (max-width:760px){
    nav.topnav .nav-links{
      display:none;
      position:absolute; top:100%; left:0; right:0;
      background:#fff; border-bottom:1px solid #ECE8E0;
      flex-direction:column; align-items:flex-start;
      padding:8px 20px 18px 20px;
    }
    nav.topnav .nav-links a{margin-left:0; padding:10px 0; width:100%;}
    nav.topnav .nav-links a.btn{margin-top:8px; text-align:center;}
    .nav-toggle:checked ~ .nav-links{display:flex;}
    .nav-toggle-btn{display:block;}
    nav.topnav{position:relative;}
    nav.topnav .wrap{padding:12px 20px;}
  }

  /* HERO */
  header.hero{
    padding:60px 0 0 0;
  }
  .wordmark{width:230px; margin-bottom:46px;}
  .hero-grid{
    display:grid;
    grid-template-columns: 1.05fr 0.85fr;
    gap:50px;
    align-items:center;
    padding-bottom:54px;
  }
  .hero h1{
    font-size:37px;
    font-weight:700;
    color:var(--navy);
    line-height:1.28;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--orange);
  }
  .hero p.sub{
    margin-top:20px;
    font-size:17px;
    color:#445065;
    max-width:480px;
  }
  .hero-cta{
    margin-top:28px;
    display:flex; gap:14px; flex-wrap:wrap;
  }
  .btn{
    display:inline-block;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:14.5px;
    padding:13px 24px;
    border-radius:8px;
    text-decoration:none;
  }
  .btn-primary{background:var(--orange); color:#fff;}
  .btn-secondary{background:transparent; color:var(--navy); border:1.5px solid var(--navy);}
  .btn-small{
    font-family:'Poppins',sans-serif; font-weight:600; font-size:13px;
    color:var(--orange); text-decoration:none; white-space:nowrap;
    border-bottom:1.5px solid var(--orange); padding-bottom:1px;
  }

  .hero-photo{
    position:relative;
  }
  .hero-photo img{
    border-radius:14px;
    width:100%;
    max-height:560px;
    object-fit:cover;
    object-position:top center;
    display:block;
  }
  .hero-photo .caption{
    margin-top:14px;
    font-size:13.5px;
    color:var(--muted);
  }

  /* SECTION generic */
  section{padding:54px 0;}
  .eyebrow{
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:12.5px;
    letter-spacing:0.5px;
    color:var(--orange);
  }
  .section-title{
    font-size:27px;
    font-weight:700;
    margin-top:8px;
    color:var(--navy);
  }

  /* ABOUT */
  section.about{border-top:1px solid #ECE8E0; background:var(--paper);}
  .about-grid{
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:44px;
    margin-top:30px;
    align-items:start;
  }
  .about-photo img{border-radius:14px; width:100%; max-height:480px; object-fit:cover; object-position:top center;}
  .about-body p{margin-bottom:16px; font-size:15.5px; color:#3a4456;}
  blockquote{
    border-left:3px solid var(--teal);
    margin:22px 0;
    padding:4px 0 4px 20px;
    font-family:'Poppins',sans-serif;
    font-style:normal;
    font-size:16.5px;
    color:var(--teal);
    font-weight:600;
  }
  .stat-row{
    display:flex; gap:40px; margin-top:24px; flex-wrap:wrap;
  }
  .stat-row .stat-num{
    font-family:'Poppins',sans-serif; font-weight:800; font-size:28px; color:var(--navy);
  }
  .stat-row .stat-label{font-size:13px; color:var(--muted); margin-top:2px;}

  /* SERVICES - list, not grid of identical cards */
  section.services{border-top:1px solid #ECE8E0;}
  .service-list{margin-top:30px;}
  .service-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
    padding:22px 0;
    border-bottom:1px solid #ECE8E0;
  }
  .service-row:first-child{padding-top:0;}
  .service-row .service-name{
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:17px;
    color:var(--navy);
  }
  .service-row .service-tag{
    display:inline-block;
    font-family:'Poppins',sans-serif;
    font-size:10.5px;
    font-weight:600;
    color:var(--orange);
    border:1px solid var(--orange);
    border-radius:5px;
    padding:1px 7px;
    margin-left:10px;
    vertical-align:middle;
  }
  .service-row .service-desc{
    font-size:14.5px;
    color:#5b6679;
    margin-top:6px;
    max-width:540px;
  }
  .service-row .service-right{
    text-align:right;
    flex-shrink:0;
  }
  .service-row .service-price{
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:18px;
    color:var(--teal);
    white-space:nowrap;
    display:block;
  }
  .service-meta{flex:1;}
  .service-cta-row{
    margin-top:26px;
    background:var(--paper);
    border:1px solid #ECE8E0;
    border-radius:10px;
    padding:18px 22px;
    display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;
  }
  .service-cta-row p{font-size:14.5px; color:#3a4456;}

  /* SCENARIOS - typographic list, no boxes */
  section.scenarios{border-top:1px solid #ECE8E0; background:var(--paper);}
  .scenario-list{margin-top:36px;}
  .scenario-item{
    display:grid;
    grid-template-columns:64px 1fr;
    gap:18px;
    padding:24px 0;
    border-bottom:1px solid #E6E1D6;
  }
  .scenario-item:first-child{padding-top:0;}
  .scenario-item .num{
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:26px;
    color:#EAD9CC;
  }
  .scenario-item h4{
    font-family:'Poppins',sans-serif;
    font-size:16.5px;
    color:var(--navy);
    margin-bottom:6px;
    font-weight:600;
  }
  .scenario-item p{
    font-size:14.5px;
    color:#475569;
  }

  /* QUICK ACTIONS */
  section.quick{border-top:1px solid #ECE8E0;}
  .quick-line{
    margin-top:22px;
    font-size:15.5px;
    color:#3a4456;
    line-height:1.9;
  }
  .quick-line .kw{color:var(--teal); font-weight:600;}
  .footnote{margin-top:20px; font-size:14.5px; color:var(--muted);}

  /* FAQ */
  section.faq{border-top:1px solid #ECE8E0; background:var(--paper);}
  .faq-list{margin-top:30px;}
  details{
    border-bottom:1px solid #E6E1D6;
    padding:18px 0;
  }
  details:first-of-type{padding-top:0;}
  summary{
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:15.5px;
    color:var(--navy);
    cursor:pointer;
    list-style:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  summary::-webkit-details-marker{display:none;}
  summary:after{
    content:"+";
    font-size:20px;
    color:var(--orange);
    margin-left:14px;
    flex-shrink:0;
  }
  details[open] summary:after{content:"\2212";}
  details p{
    margin-top:12px;
    font-size:14.5px;
    color:#475569;
    max-width:680px;
  }

  /* CTA FOOTER (repeat) */
  footer.cta-repeat{
    background:var(--teal);
    padding:54px 0 46px 0;
  }
  footer.cta-repeat .wrap{display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap;}
  footer.cta-repeat h2{
    font-family:'Poppins',sans-serif;
    color:#fff;
    font-size:26px;
    font-weight:700;
  }
  footer.cta-repeat .btn-primary{background:#fff; color:var(--teal);}
  footer.cta-repeat .btn-secondary{border-color:#fff; color:#fff;}

  /* CONTACT */
  section.contact{padding:40px 0; text-align:center;}
  section.contact p.lead{font-size:15px; color:var(--muted); margin-bottom:6px;}
  section.contact a.email{
    font-family:'Poppins',sans-serif; font-weight:700; font-size:18px; color:var(--navy);
  }

  .foot-bottom{
    padding:24px 0;
    text-align:center;
    border-top:1px solid #ECE8E0;
  }
  .foot-bottom p{color:var(--muted); font-size:12.5px;}

  @media (max-width:760px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-photo{order:-1; max-width:320px; margin:0 auto;}
    .hero h1{font-size:29px;}
    .about-grid{grid-template-columns:1fr;}
    .about-photo{max-width:260px;}
    .service-row{flex-direction:column; align-items:flex-start;}
    .service-row .service-right{text-align:left;}
    .scenario-item{grid-template-columns:40px 1fr;}
    footer.cta-repeat .wrap{flex-direction:column; text-align:center;}
  }

  /* CONTACT FORM */
  section.contact{padding:50px 0; text-align:left; background:var(--paper); border-top:1px solid #ECE8E0;}
  section.contact .contact-inner{max-width:560px; margin:0 auto; text-align:center;}
  section.contact p.lead{font-size:15px; color:var(--muted); margin-bottom:24px;}
  .contact-form{text-align:left; margin-top:10px;}
  .contact-form label{
    display:block; font-family:'Poppins',sans-serif; font-weight:600; font-size:13px;
    color:var(--navy); margin-bottom:6px; margin-top:16px;
  }
  .contact-form input, .contact-form textarea{
    width:100%; font-family:'Karla',sans-serif; font-size:15px; color:var(--navy);
    border:1.5px solid #E2DCD0; border-radius:8px; padding:11px 14px;
    background:#fff;
  }
  .contact-form textarea{resize:vertical; min-height:110px;}
  .contact-form button{
    margin-top:22px;
    font-family:'Poppins',sans-serif; font-weight:600; font-size:15px;
    background:var(--orange); color:#fff; border:none; border-radius:8px;
    padding:13px 28px; cursor:pointer;
  }
  .contact-or{
    text-align:center; margin-top:26px; font-size:14px; color:var(--muted);
  }
  .contact-or a{font-weight:600;}
  .social-row{
    display:flex; justify-content:center; gap:14px; margin-top:18px;
  }
  .social-row a{
    width:38px; height:38px; border-radius:50%;
    background:#fff; border:1.5px solid #E2DCD0;
    display:flex; align-items:center; justify-content:center;
    color:var(--navy); text-decoration:none;
  }
  .social-row a:hover{border-color:var(--orange); color:var(--orange);}

  /* BLOG */
  section.blog-list{padding:54px 0;}
  .post-card{
    display:block; padding:22px 0; border-bottom:1px solid #ECE8E0; text-decoration:none;
  }
  .post-card:first-child{padding-top:0;}
  .post-card .post-date{font-size:12.5px; color:var(--muted); font-family:'Poppins',sans-serif; font-weight:600;}
  .post-card h3{font-size:19px; color:var(--navy); margin-top:6px; font-weight:700;}
  .post-card p{font-size:14.5px; color:#5b6679; margin-top:8px;}
  .post-card:hover h3{color:var(--orange);}
  article.post-body{padding:50px 0; max-width:680px; margin:0 auto;}
  article.post-body h1{font-size:32px; margin-bottom:10px;}
  article.post-body .post-meta{font-size:13px; color:var(--muted); margin-bottom:30px; font-family:'Poppins',sans-serif; font-weight:600;}
  article.post-body p{font-size:16px; color:#3a4456; margin-bottom:18px;}
  article.post-body img{border-radius:12px; margin:24px 0;}
  article.post-body h2{font-size:23px; color:var(--navy); margin-top:34px; margin-bottom:12px;}
