/* ============ Variables & Reset ============ */
:root{
  --navy-900:#081b33;
  --navy-800:#0e2a4d;
  --navy-700:#12345f;
  --gold:#eea92e;
  --gold-dark:#d99418;
  --line-green:#06c755;
  --phone-red:#e53935;
  --bg-light:#f5f7fa;
  --text-dark:#16233b;
  --text-muted:#5a6b85;
  --white:#ffffff;
  --radius:14px;
  --shadow:0 10px 30px rgba(8,27,51,0.08);
  --container:1200px;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family:'Prompt',sans-serif;
  color:var(--text-dark);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}

img{max-width:100%;display:block;}

a{text-decoration:none;color:inherit;}

ul{list-style:none;}

svg{width:1em;height:1em;fill:currentColor;}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.section{padding:80px 0;}

.section-tag{
  color:var(--gold-dark);
  font-weight:600;
  letter-spacing:.5px;
  margin-bottom:8px;
  text-align:center;
}
.section-tag.light{color:var(--gold);}

.section-title{
  font-size:clamp(1.6rem,3vw,2.3rem);
  font-weight:700;
  color:var(--navy-900);
  text-align:center;
  margin-bottom:48px;
}
.section-title.light{color:var(--white);margin-bottom:20px;}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  border-radius:50px;
  font-weight:600;
  font-size:.95rem;
  border:none;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn svg{width:20px;height:20px;flex-shrink:0;}
.btn:hover{transform:translateY(-2px);}
.btn.full{width:100%;justify-content:center;}

.btn-gold{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:var(--navy-900);box-shadow:0 8px 20px rgba(238,169,46,.35);}
.btn-line{background:var(--line-green);color:var(--white);box-shadow:0 8px 20px rgba(6,199,85,.3);}
.btn-navy{background:var(--navy-800);color:var(--white);box-shadow:0 8px 20px rgba(8,27,51,.25);}
.btn-outline{background:transparent;border:2px solid var(--navy-800);color:var(--navy-800);}

.btn small{display:block;font-weight:400;font-size:.75rem;opacity:.9;}

/* ============ Header ============ */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(6px);
  box-shadow:0 2px 12px rgba(8,27,51,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  height:76px;
}
.logo img{height:52px;width:auto;}

.main-nav ul{display:flex;gap:28px;}
.main-nav a{
  font-weight:500;
  color:var(--text-dark);
  position:relative;
  padding:6px 0;
}
.main-nav a.active,.main-nav a:hover{color:var(--gold-dark);}
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:100%;height:2px;
  background:var(--gold-dark);
}

.header-cta{padding:12px 20px;font-size:.9rem;flex-shrink:0;}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{width:26px;height:3px;background:var(--navy-900);border-radius:2px;transition:.25s;}
.nav-toggle.active span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.nav-toggle.active span:nth-child(2){opacity:0;}
.nav-toggle.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* ============ Hero ============ */
.hero{
  background-color:var(--navy-900);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../asset/banner.jpg') center/cover no-repeat;
  opacity:.8;
  z-index:0;
}
.hero-inner{
  position:relative;
  z-index:1;
  padding:90px 20px 70px;
}
.hero-text{max-width:640px;}
.hero-text h1{
  font-size:clamp(2.1rem,4.2vw,3.2rem);
  font-weight:700;
  line-height:1.25;
  margin-bottom:18px;
  text-shadow:0 2px 18px rgba(0,0,0,.6);
}
.hero-text .highlight{color:var(--gold);}
.hero-text p{
  font-size:clamp(1.05rem,1.6vw,1.3rem);
  color:#e6ecf7;
  margin-bottom:32px;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
}
.hero-actions{display:flex;flex-wrap:wrap;gap:16px;}

/* Trust strip */
.trust-strip{
  position:relative;
  z-index:2;
  background:var(--white);
  color:var(--navy-900);
  border-radius:24px 24px 0 0;
  margin-top:20px;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
  padding:36px 20px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.85rem;
  color:var(--text-muted);
}
.trust-item svg{width:34px;height:34px;fill:var(--gold-dark);flex-shrink:0;}
.trust-item strong{color:var(--navy-900);font-size:.95rem;}

/* ============ Services overview ============ */
.services-overview{background:var(--bg-light);}
.service-accordion{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:56px;
  align-items:start;
}
.service-item{
  min-width:0;
  background:var(--white);
  border-radius:28px;
  border:1px solid #eef1f6;
  box-shadow:var(--shadow);
  transition:box-shadow .2s ease;
}
.service-item.expanded{
  box-shadow:0 18px 40px rgba(8,27,51,.14);
}
.service-item-header{
  width:100%;
  display:flex;
  align-items:center;
  gap:16px;
  background:none;
  border:none;
  cursor:pointer;
  font-family:inherit;
  text-align:left;
  padding:14px 20px;
}
.service-item.expanded .service-item-header{padding-bottom:8px;}

.icon-circle{
  width:64px;height:64px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--navy-800),var(--navy-700));
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);
  flex-shrink:0;
}
.icon-circle svg{width:28px;height:28px;fill:var(--gold);}

.service-item-title{
  flex:1;
  min-width:0;
  overflow-wrap:anywhere;
  font-weight:700;
  color:var(--navy-900);
  font-size:1.05rem;
  line-height:1.3;
}

.toggle-icon{
  position:relative;
  width:24px;height:24px;
  flex-shrink:0;
}
.toggle-icon svg{
  position:absolute;inset:0;
  width:100%;height:100%;
  fill:#e5342a;
  transition:opacity .25s ease, transform .25s ease;
}
.toggle-icon .icon-minus{opacity:0;transform:scale(.4) rotate(-90deg);}
.service-item.expanded .toggle-icon .icon-plus{opacity:0;transform:scale(.4) rotate(90deg);}
.service-item.expanded .toggle-icon .icon-minus{opacity:1;transform:scale(1) rotate(0deg);}

/* Animate expand/collapse with grid-template-rows (0fr -> 1fr): unlike max-height,
   this sizes exactly to content with no arbitrary height guess, per
   https://medium.com/@jgustavo.wd/solved-how-to-fully-animate-the-details-html-element-with-only-css-no-javascript-b7d32c53a9d7 */
.service-item-panel{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .3s ease;
}
.service-item.expanded .service-item-panel{grid-template-rows:1fr;}

.service-item-panel-inner{
  overflow:hidden;
  min-height:0;
  opacity:0;
  transform:translateY(-6px);
  transition:opacity .2s ease, transform .2s ease;
}
.service-item.expanded .service-item-panel-inner{
  opacity:1;
  transform:translateY(0);
  transition:opacity .3s ease .1s, transform .3s ease .1s;
}

.service-item-panel ul{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:0 24px 24px 100px;
}
.service-item-panel li{
  padding-left:20px;
  position:relative;
  color:var(--text-muted);
  font-size:.94rem;
}
.service-item-panel li::before{
  content:"";
  position:absolute;
  left:2px;top:8px;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--gold);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stat-item{
  background:var(--white);
  border-radius:var(--radius);
  padding:28px 20px;
  text-align:center;
  box-shadow:var(--shadow);
}
.stat-item svg{width:32px;height:32px;fill:var(--gold-dark);margin-bottom:10px;}
.stat-item strong{display:block;font-size:1.8rem;color:var(--navy-900);font-weight:700;}
.stat-item span{font-size:.85rem;color:var(--text-muted);}

/* ============ Business types ============ */
.business-types{
  max-width:900px;
  margin:0 auto 40px;
  background:var(--white);
  border:1px solid #eef1f6;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px 24px;
}
.business-types-title{
  text-align:center;
  font-weight:700;
  color:var(--navy-900);
  font-size:1.05rem;
  margin-bottom:24px;
  padding-bottom:16px;
  border-bottom:1px solid #eef1f6;
}
.business-types-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.business-type-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
}
.business-type-number{
  width:26px;height:26px;
  border-radius:50%;
  background:var(--navy-900);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-size:.8rem;
}
.business-type-icon{
  width:56px;height:56px;
  border-radius:50%;
  border:2px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
}
.business-type-icon svg{width:26px;height:26px;fill:var(--gold-dark);}
.business-type-item span:last-child{font-size:.85rem;color:var(--navy-900);font-weight:600;}

/* ============ Clients ============ */
.clients{padding:56px 0;background:var(--bg-light);border-top:1px solid #eef1f6;border-bottom:1px solid #eef1f6;}
.clients-label{
  display:block;
  width:fit-content;
  margin:0 auto 24px;
  background:var(--navy-900);
  color:var(--white);
  padding:8px 20px;
  border-radius:50px;
  font-weight:600;
  font-size:.85rem;
}

.clients-panel{
  max-width:900px;
  margin:0 auto;
  background:var(--white);
  border:1px solid #eef1f6;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
}
.clients-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-bottom:20px;
}
.client-chip{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:12px 10px;
  background:var(--bg-light);
  border:1px solid #eef1f6;
  border-radius:10px;
  color:var(--text-dark);
  font-size:.82rem;
  line-height:1.4;
}
.clients-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px;
  background:var(--navy-900);
  color:var(--white);
  border:none;
  border-radius:10px;
  font-family:inherit;
  font-weight:600;
  font-size:.92rem;
  cursor:pointer;
  transition:background .15s ease;
}
.clients-toggle:hover{background:var(--navy-800);}

/* ============ Pricing ============ */
.pricing{background:var(--bg-light);}

.price-tables{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-bottom:28px;
  align-items:start;
}
.price-table-card{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.price-table-head{
  background:var(--navy-900);
  color:var(--white);
  font-weight:700;
  font-size:1.1rem;
  text-align:center;
  padding:16px 20px;
}
.price-table-head span{font-weight:400;font-size:.85rem;color:#c9d6ec;}

.price-table{width:100%;border-collapse:collapse;}
.price-table thead th{
  background:#eef2f8;
  color:var(--navy-900);
  font-weight:700;
  font-size:.9rem;
  padding:12px 20px;
  text-align:left;
}
.price-table thead th:last-child{text-align:right;}
.price-table tbody td{
  padding:12px 20px;
  font-size:.92rem;
  color:var(--text-dark);
  border-bottom:1px solid #eef1f6;
}
.price-table tbody td:last-child{
  text-align:right;
  font-weight:700;
  color:#2f6fd6;
}
.price-table tbody tr:nth-child(even){background:#f8fafc;}

.price-table-note{
  padding:10px 20px 18px;
  font-size:.78rem;
  color:var(--text-muted);
}
.price-table-cta{margin:20px auto 24px;}

.price-mini-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.price-mini-card{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.price-mini-head{
  background:var(--navy-900);
  color:var(--white);
  font-weight:700;
  text-align:center;
  padding:14px 16px;
}
.price-mini-head span{font-weight:400;font-size:.8rem;color:#c9d6ec;}
.price-mini-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}
.price-mini-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:10px;
  font-size:.88rem;
  color:var(--text-muted);
}
.price-mini-row strong{color:#2f6fd6;font-size:1.05rem;font-weight:700;white-space:nowrap;}
.price-mini-body-center{align-items:center;text-align:center;}
.price-mini-label{color:var(--text-muted);font-size:.9rem;}
.price-mini-big{color:#2f6fd6;font-size:2rem;font-weight:700;}
.price-mini-sub{color:var(--text-muted);font-size:.85rem;margin-bottom:4px;}
.price-mini-body .btn{margin-top:auto;}

/* ============ Service steps ============ */
.steps-block{
  margin-top:56px;
  padding-top:48px;
  border-top:1px solid #e4e9f2;
}
.steps-title{
  text-align:center;
  font-size:clamp(1.3rem,2.6vw,1.6rem);
  font-weight:800;
  color:var(--navy-900);
  margin-bottom:40px;
}

.steps-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  margin-bottom:36px;
}
.step-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:6px;
}
.step-number{
  width:30px;height:30px;
  border-radius:50%;
  background:var(--navy-900);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-size:.88rem;
  margin-bottom:6px;
}
.step-icon-circle{
  width:64px;height:64px;
  border-radius:50%;
  border:2px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:8px;
}
.step-icon-circle svg{width:28px;height:28px;fill:var(--gold-dark);}
.step-item h4{font-size:.95rem;color:var(--navy-900);margin-bottom:2px;}
.step-item p{font-size:.82rem;color:var(--text-muted);line-height:1.5;}

.steps-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.step-highlight{
  border:1px solid #e4e9f2;
  border-radius:16px;
  padding:26px 22px;
  text-align:center;
}
.step-highlight .icon-circle{margin:0 auto 14px;}
.step-highlight h4{font-size:1rem;color:var(--navy-900);margin-bottom:6px;}
.step-highlight p{font-size:.85rem;color:var(--text-muted);}

/* ============ About ============ */
.about{
  background-color:var(--navy-900);
  position:relative;
  overflow:hidden;
}
.about::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../asset/building.png') center 30%/cover no-repeat;
  opacity:.100;
  z-index:0;
}
.about > .container{position:relative;z-index:1;}

.about-inner{
  max-width:640px;
  margin:0 auto 48px;
}
.about-text p{
  color:#e6ecf7;
  margin-bottom:20px;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
}

.about-boxes{display:flex;gap:20px;margin-bottom:28px;}
.about-box{
  flex:1;
  background:var(--bg-light);
  border:1px solid #e4e9f2;
  border-radius:16px;
  padding:22px 20px;
}
.about-box-icon{
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--navy-800),var(--navy-700));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.about-box-icon svg{width:22px;height:22px;fill:var(--gold);}
.about-box h3{font-size:1rem;color:var(--navy-900);margin-bottom:6px;}
.about-box p{font-size:.85rem;color:var(--text-muted);margin-bottom:0;}

.about-stats{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,.15);
}
.about-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}
.about-stat .icon-circle{box-shadow:0 0 0 3px rgba(255,255,255,.18);}
.about-stat .icon-circle{width:56px;height:56px;}
.about-stat .icon-circle svg{width:26px;height:26px;}
.about-stat span{font-size:.85rem;color:#c9d6ec;line-height:1.5;}
.about-stat strong{color:var(--gold);font-size:1.05rem;font-weight:700;}

/* ============ Why choose us ============ */
.why-team-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:40px;
}
.why-team-images img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.why-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:28px 22px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.why-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(8,27,51,.14);}
.why-card .icon-circle{margin:0 auto 16px;}
.why-card h3{font-size:1.05rem;margin-bottom:8px;color:var(--navy-900);}
.why-card p{font-size:.88rem;color:var(--text-muted);}

/* ============ Downloads ============ */
.downloads{background:var(--bg-light);}
.downloads-panel{
  max-width:1040px;
  margin:0 auto;
}
.downloads-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:20px;
}
.download-row{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
  background:var(--white);
  border:1px solid #eef1f6;
  border-radius:14px;
  padding:16px 20px;
  box-shadow:var(--shadow);
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease;
}
.download-row:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(8,27,51,.12);}
.download-icon{
  width:44px;height:44px;
  flex-shrink:0;
  border-radius:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex;align-items:center;justify-content:center;
}
.download-icon svg{width:22px;height:22px;fill:var(--white);}
.download-title{flex:1;min-width:0;font-weight:600;color:var(--navy-900);font-size:.95rem;overflow-wrap:anywhere;}
.download-arrow{
  width:22px;height:22px;
  flex-shrink:0;
  color:var(--navy-800);
}
.download-arrow svg{width:100%;height:100%;fill:currentColor;}

.downloads-all svg{fill:currentColor;}

/* ============ Articles ============ */
.article-panel{
  max-width:820px;
  margin:0 auto;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.article-panel-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding:18px 24px;
  background:var(--bg-light);
  border-bottom:1px solid #eef1f6;
  font-weight:700;
  color:var(--navy-900);
}
.article-panel-head svg{width:22px;height:22px;fill:var(--navy-800);}

.article-list{display:flex;flex-direction:column;}
.article-row{
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 24px;
  border-bottom:1px solid #eef1f6;
  color:inherit;
  transition:background .15s ease;
}
.article-row:last-child{border-bottom:none;}
.article-row:hover{background:var(--bg-light);}
.article-row-extra{display:none;}
.article-panel.expanded .article-row-extra{display:flex;}

.article-row img{
  width:72px;height:72px;
  border-radius:12px;
  object-fit:cover;
  flex-shrink:0;
}
.article-row-body{flex:1;min-width:0;}
.article-row-body h3{
  font-size:.96rem;
  color:var(--navy-900);
  margin-bottom:4px;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
}
.article-row-body p{
  font-size:.83rem;
  color:var(--text-muted);
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.article-row-link{
  display:flex;
  align-items:center;
  gap:2px;
  color:var(--gold-dark);
  font-weight:600;
  font-size:.85rem;
  flex-shrink:0;
  white-space:nowrap;
}
.article-row-link svg{width:16px;height:16px;fill:currentColor;}

.article-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px;
  background:var(--navy-900);
  color:var(--white);
  border:none;
  font-family:inherit;
  font-weight:600;
  font-size:.92rem;
  cursor:pointer;
  transition:background .15s ease;
}
.article-toggle svg{width:18px;height:18px;fill:currentColor;}
.article-toggle:hover{background:var(--navy-800);}

/* ============ Contact ============ */
.contact{background:radial-gradient(circle at 20% 20%,var(--navy-700),var(--navy-900) 70%);color:var(--white);}
.contact-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}
.contact-desc{color:#c9d6ec;margin-bottom:28px;}

.contact-addresses{display:flex;flex-direction:column;gap:16px;margin-bottom:24px;}
.address-block{display:flex;align-items:flex-start;gap:12px;}
.address-block svg{width:20px;height:20px;fill:var(--gold);flex-shrink:0;margin-top:2px;}
.address-block strong{display:block;color:var(--white);font-size:.92rem;margin-bottom:4px;}
.address-block p{color:#c9d6ec;font-size:.85rem;line-height:1.5;}

.contact-list{margin-bottom:20px;display:flex;flex-direction:column;gap:14px;}
.contact-list li{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-weight:500;font-size:.92rem;}
.contact-list svg{width:20px;height:20px;fill:var(--gold);flex-shrink:0;}
.contact-list a{color:var(--white);}
.contact-list a:hover{color:var(--gold);}
.contact-list li span{color:#c9d6ec;font-weight:400;font-size:.85rem;}

.contact-teams{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}
.contact-team{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:10px;
  padding:8px 14px;
  font-size:.82rem;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.contact-team strong{color:var(--gold);font-size:.8rem;letter-spacing:.5px;}
.contact-team span{color:#c9d6ec;}

.contact-form{
  background:var(--white);
  border-radius:var(--radius);
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:16px;
  box-shadow:var(--shadow);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.contact-form input,.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #dde4ee;
  border-radius:10px;
  font-family:inherit;
  font-size:.95rem;
  color:var(--text-dark);
  resize:vertical;
}
.contact-form input:focus,.contact-form textarea:focus{outline:2px solid var(--gold);border-color:transparent;}
.form-note{font-size:.85rem;color:var(--line-green);font-weight:600;min-height:1.2em;}
.form-note.error{color:#e5484d;}

/* ============ Footer ============ */
.site-footer{background:var(--navy-900);color:#b7c3da;padding:60px 0 0;}
.footer-inner{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand img{height:44px;margin-bottom:16px;background:var(--white);border-radius:8px;padding:6px 10px;}
.footer-brand p{font-size:.88rem;line-height:1.7;max-width:320px;}
.footer-links h4{color:var(--white);margin-bottom:16px;font-size:1rem;}
.footer-links a{display:block;margin-bottom:12px;font-size:.9rem;}
.footer-links a:hover{color:var(--gold);}
.footer-bottom{
  text-align:center;
  padding:20px;
  font-size:.82rem;
  color:#7f8fac;
}

/* ============ Floating LINE button ============ */
.float-line{
  position:fixed;
  right:24px;bottom:24px;
  width:58px;height:58px;
  background:var(--line-green);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px rgba(6,199,85,.45);
  z-index:900;
  animation:pulse 2.4s infinite;
}
.float-line svg{width:30px;height:30px;fill:var(--white);}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(6,199,85,.5);}
  70%{box-shadow:0 0 0 14px rgba(6,199,85,0);}
  100%{box-shadow:0 0 0 0 rgba(6,199,85,0);}
}

/* ============ Responsive ============ */
@media (max-width:1024px){
  .trust-grid{grid-template-columns:repeat(3,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .price-mini-grid{grid-template-columns:repeat(2,1fr);}
  .about-stats{grid-template-columns:repeat(3,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .clients-grid{grid-template-columns:repeat(3,1fr);}
  .business-types-row{grid-template-columns:repeat(3,1fr);}
  .steps-row{grid-template-columns:repeat(3,1fr);}
  .downloads-list{grid-template-columns:repeat(2,1fr);}
  .footer-inner{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1/-1;}
}

@media (max-width:860px){
  .main-nav{
    display:none;
    position:fixed;
    top:76px;left:0;right:0;
    background:var(--white);
    box-shadow:0 12px 24px rgba(8,27,51,.1);
    max-height:calc(100vh - 76px);
    overflow-y:auto;
  }
  .main-nav.open{display:block;}
  .main-nav ul{flex-direction:column;padding:12px 24px;gap:4px;}
  .main-nav a{display:block;padding:14px 0;border-bottom:1px solid #eef1f6;}
  .header-cta{display:none;}
  .nav-toggle{display:flex;}

  .hero-inner{text-align:center;padding-top:44px;}
  .hero-text{max-width:none;}
  .hero-actions{justify-content:center;}

  .contact-inner{grid-template-columns:1fr;}
  .about-boxes{flex-direction:column;}

  .price-tables{grid-template-columns:1fr;}
}

@media (max-width:640px){
  .section{padding:56px 0;}
  .service-accordion{grid-template-columns:1fr;}
  .service-item-panel ul{padding-left:24px;}
  .trust-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .price-mini-grid{grid-template-columns:1fr;}
  .downloads-list{grid-template-columns:1fr;}
  .download-row{padding:14px 16px;gap:12px;}
  .download-title{font-size:.88rem;}
  .about-stats{grid-template-columns:1fr 1fr;}
  .why-grid{grid-template-columns:1fr;}
  .why-team-images{grid-template-columns:1fr;}
  .why-team-images img{height:220px;}
  .steps-row{grid-template-columns:repeat(2,1fr);}
  .steps-highlights{grid-template-columns:1fr;}
  .article-row{gap:10px;padding:14px 16px;flex-wrap:wrap;}
  .article-row img{width:56px;height:56px;}
  .article-row-body{flex-basis:calc(100% - 66px);}
  .article-row-link{font-size:.8rem;margin-left:66px;}
  .article-panel-head{padding:16px 18px;}
  .form-row{grid-template-columns:1fr;}
  .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-actions .btn{justify-content:center;}
  .clients-grid{grid-template-columns:1fr 1fr;}
  .clients-panel{padding:18px;}
  .business-types{padding:20px 16px;}
  .business-types-row{grid-template-columns:repeat(2,1fr);row-gap:24px;}
  .footer-inner{grid-template-columns:1fr 1fr;text-align:center;gap:28px;}
  .footer-brand{grid-column:1/-1;}
  .footer-brand p{margin:0 auto;}
  .float-line{width:50px;height:50px;right:16px;bottom:16px;}
}

@media (max-width:420px){
  .logo img{height:40px;}
  .header-inner{height:64px;}
  .main-nav{top:64px;}
}

/* ============ Quote Request Modal ============ */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(8,27,51,.6);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:40px 20px;
  overflow-y:auto;
  z-index:2000;
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease, visibility .2s ease;
}
.modal-overlay.open{opacity:1;visibility:visible;}

.modal-box{
  position:relative;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:0 30px 70px rgba(0,0,0,.35);
  width:100%;
  max-width:640px;
  padding:32px 28px;
  transform:translateY(-16px);
  transition:transform .2s ease;
}
.modal-overlay.open .modal-box{transform:translateY(0);}

.modal-close{
  position:absolute;
  top:16px;right:16px;
  width:36px;height:36px;
  border-radius:50%;
  border:none;
  background:var(--bg-light);
  color:var(--navy-900);
  font-size:1.4rem;
  line-height:1;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.modal-close:hover{background:#e4e9f2;}

.modal-title{
  text-align:center;
  font-size:1.4rem;
  font-weight:800;
  color:var(--navy-900);
  margin-bottom:24px;
  padding-bottom:16px;
  border-bottom:3px solid var(--gold);
  width:fit-content;
  margin-left:auto;
  margin-right:auto;
}

.quote-form{display:flex;flex-direction:column;gap:16px;}

.quote-field{
  border:1px solid #e4e9f2;
  border-radius:16px;
  overflow:hidden;
}
.quote-field-row{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 16px;
  background:none;
  border:none;
  font-family:inherit;
  text-align:left;
  cursor:pointer;
}
label.quote-field-row{cursor:default;}
.quote-field-row-static{cursor:default;}

.quote-field-icon{
  width:40px;height:40px;
  flex-shrink:0;
  border:1.5px solid var(--gold);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  background:var(--bg-light);
}
.quote-field-icon svg{width:20px;height:20px;fill:var(--navy-800);}

.quote-field-label{
  font-weight:700;
  color:var(--navy-900);
  font-size:.95rem;
  white-space:nowrap;
}

.quote-field-value{
  flex:1;
  min-width:0;
  text-align:right;
  color:var(--text-muted);
  font-size:.88rem;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.quote-field .toggle-icon{margin-left:4px;}

.quote-select,.quote-input{
  flex:1;
  min-width:0;
  border:1px solid #e4e9f2;
  border-radius:10px;
  padding:10px 14px;
  font-family:inherit;
  font-size:.92rem;
  color:var(--text-dark);
  background:var(--white);
}
.quote-select:focus,.quote-input:focus{outline:2px solid var(--gold);border-color:transparent;}

.quote-field-panel{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .25s ease;
}
.quote-field.open .quote-field-panel{grid-template-rows:1fr;}
.quote-field-panel-inner{overflow:hidden;min-height:0;}

.business-type-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:0 16px 16px;
}
.business-type-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:12px 14px;
  border:1.5px solid #e4e9f2;
  border-radius:12px;
  background:var(--white);
  font-family:inherit;
  font-size:.88rem;
  color:var(--text-dark);
  text-align:left;
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease;
}
.business-type-option:hover{border-color:var(--gold);}
.business-type-option.selected{
  border-color:#1f9d6b;
  background:#f0faf5;
  color:#1f9d6b;
  font-weight:600;
}
.business-type-option .info-icon{
  flex-shrink:0;
  width:18px;height:18px;
  border-radius:50%;
  border:1.5px solid currentColor;
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;
  font-style:italic;
  font-weight:700;
  opacity:.6;
}

.option-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0 16px 16px;
}
.option-pill{
  flex:1 1 auto;
  min-width:80px;
  padding:12px 14px;
  border:1.5px solid #e4e9f2;
  border-radius:12px;
  background:var(--white);
  font-family:inherit;
  font-size:.88rem;
  color:var(--text-dark);
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease, color .15s ease;
}
.option-pill:hover{border-color:var(--gold);}
.option-pill.selected{
  border-color:#1f9d6b;
  background:#f0faf5;
  color:#1f9d6b;
  font-weight:600;
}

.quote-submit{margin-top:8px;}
.quote-note{
  text-align:center;
  font-size:.82rem;
  color:var(--text-muted);
  min-height:1.2em;
}
.quote-note.success{color:#1f9d6b;font-weight:600;}
.quote-note.error{color:#e5484d;font-weight:600;}
.btn[disabled]{opacity:.6;cursor:not-allowed;}

/* ============ Article Reader Modal ============ */
.article-modal-box{max-width:720px;padding:0 0 32px;overflow:hidden;}
.article-modal-box .modal-close{background:rgba(255,255,255,.85);top:14px;right:14px;}
.article-modal-image{width:100%;height:240px;object-fit:cover;margin-bottom:0;}
.article-modal-title{
  font-size:1.3rem;
  font-weight:800;
  color:var(--navy-900);
  padding:24px 28px 0;
  margin-bottom:16px;
}
.article-modal-body{padding:0 28px;color:var(--text-dark);}
.article-modal-body p{color:var(--text-muted);margin-bottom:14px;line-height:1.7;}
.article-modal-body h3{font-size:1.1rem;color:var(--navy-900);margin:24px 0 10px;}
.article-modal-body h4{font-size:1rem;color:var(--navy-900);margin:18px 0 8px;}
.article-modal-body ul{margin-bottom:14px;display:flex;flex-direction:column;gap:8px;}
.article-modal-body li{
  padding-left:20px;
  position:relative;
  color:var(--text-muted);
  line-height:1.6;
}
.article-modal-body li::before{
  content:"";
  position:absolute;
  left:2px;top:9px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--gold);
}
.article-modal-body blockquote{
  border-left:3px solid var(--gold);
  padding:8px 16px;
  margin-bottom:14px;
  color:var(--text-muted);
  font-style:italic;
  background:var(--bg-light);
  border-radius:0 8px 8px 0;
}
.article-modal-body hr{border:none;border-top:1px solid #eef1f6;margin:20px 0;}
.article-modal-body strong{color:var(--navy-900);}

@media (max-width:640px){
  .article-modal-box{padding-bottom:24px;}
  .article-modal-image{height:180px;}
  .article-modal-title{padding:20px 20px 0;font-size:1.15rem;}
  .article-modal-body{padding:0 20px;}
}

/* ============ Clients Modal ============ */
.clients-modal-box{max-width:820px;}
.clients-modal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

@media (max-width:640px){
  .clients-modal-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:640px){
  .modal-box{padding:24px 18px;max-height:calc(100vh - 40px);overflow-y:auto;}
  .quote-field-row{flex-wrap:wrap;}
  .quote-field-label{flex:1 1 auto;}
  .quote-select,.quote-input{flex-basis:100%;margin-left:54px;width:calc(100% - 54px);}
  .business-type-grid{grid-template-columns:1fr;}
}
