 :root {
   --bg: #f7f8f4;
   --text: #1b2a32;
   --muted: #5a6b73;
   --accent: #1f6f8b;
   --accent-2: #e0b65b;
   --panel: #ffffff;
   --panel-2: #eef3f1;
   --border: #d9e2e6;
   --shadow: 0 10px 30px rgba(10, 31, 41, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", system-ui, -apple-system, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 header {
   background: var(--panel);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 600;
   letter-spacing: 0.4px;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--panel);
   position: absolute;
   top: 64px;
   right: 20px;
   padding: 18px;
   border: 1px solid var(--border);
   box-shadow: var(--shadow);
   border-radius: 14px;
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: var(--panel);
   border-radius: 10px;
   padding: 8px 12px;
   font-weight: 600;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border-color: var(--accent);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 12px;
   background: var(--panel-2);
   color: var(--muted);
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 main section {
   padding: 48px 0;
 }
 
 .hero {
   background: linear-gradient(140deg, #e8f1f4, #f9f4e5);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2.1rem, 4vw, 3.3rem);
   line-height: 1.15;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--panel);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--border);
   box-shadow: var(--shadow);
 }
 
 .card h3 {
   margin-bottom: 8px;
   font-size: 1.1rem;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight {
   background: var(--panel-2);
   border-radius: 18px;
   padding: 26px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 18px;
   border-radius: 14px;
   background: var(--panel);
   border: 1px solid var(--border);
 }
 
 .quote {
   background: var(--accent);
   color: #fff;
   padding: 30px;
   border-radius: 18px;
 }
 
 .icon-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .icon-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .icon-item svg {
   width: 28px;
   height: 28px;
   flex: 0 0 auto;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
 }
 
 .service-card span {
   font-weight: 600;
   color: var(--accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   border-radius: 16px;
   border: 1px solid var(--border);
   padding: 18px;
   background: var(--panel);
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .step {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 16px;
   border-radius: 16px;
   background: var(--panel-2);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 14px;
   background: var(--panel);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 14px 16px;
   border: none;
   background: transparent;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 16px 14px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: none;
   z-index: 100;
 }
 
 .banner.show {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .banner-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(10, 20, 28, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 120;
 }
 
 .modal.open {
   display: flex;
 }
 
 .modal-content {
   background: var(--panel);
   border-radius: 18px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   border: 1px solid var(--border);
 }
 
 .modal-content h3 {
   margin-bottom: 12px;
 }
 
 .modal-content label {
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 10px 0;
 }
 
 footer {
   background: #0f2027;
   color: #dbe5ea;
   padding: 32px 0 40px;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-grid a {
   color: #dbe5ea;
 }
 
 .tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     gap: 18px;
     background: transparent;
     border: none;
     box-shadow: none;
     padding: 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-content > div {
     flex: 1;
   }
 
   .card-grid,
   .stats,
   .steps,
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-card,
   .stat-item,
   .step,
   .comparison-row {
     flex: 1 1 calc(50% - 12px);
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > div {
     flex: 1;
   }
 
   .banner {
     left: auto;
     max-width: 480px;
   }
 
   .banner-actions {
     flex-direction: row;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
