:root{
  --navy:#0f2747;
  --navy-2:#173a67;
  --navy-3:#224d84;
  --orange:#f28c28;
  --orange-2:#ff9f43;
  --light:#f5f8fc;
  --white:#ffffff;
  --text:#1b2a3a;
  --muted:#64748b;
  --border:rgba(15,39,71,.10);
  --shadow:0 14px 40px rgba(10, 30, 60, .10);
  --radius:22px;
  --radius-sm:16px;
  --container:1240px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

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

a{
  text-decoration:none;
}

.security-page{
  overflow:hidden;
}

.security-container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.security-hero{
  position:relative;
  padding:72px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(242,140,40,.14), transparent 24%),
    radial-gradient(circle at right center, rgba(34,77,132,.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}

.eyebrow,
.section-mini{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(242,140,40,.10);
  color:var(--navy);
  font-size:13px;
  font-weight:700;
  letter-spacing:.3px;
  margin-bottom:16px;
}

.hero-content h1{
  margin:0 0 18px;
  font-size:48px;
  line-height:1.12;
  color:var(--navy);
  letter-spacing:-.6px;
}

.hero-text{
  margin:0 0 22px;
  font-size:17px;
  color:#38506d;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 28px;
}

.hero-badges span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 8px 20px rgba(15,39,71,.05);
  color:var(--navy);
  font-size:14px;
  font-weight:700;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  font-weight:700;
  transition:.25s ease;
  cursor:pointer;
  border:none;
}

.btn-primary{
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  color:#fff;
  box-shadow:0 14px 30px rgba(242,140,40,.28);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-outline{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--border);
}

.btn-outline:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}

.hero-visual{
  position:relative;
}

.hero-visual img{
  width:100%;
  border-radius:28px;
  box-shadow:0 22px 50px rgba(15,39,71,.16);
  object-fit:cover;
}

.security-intro,
.services-section,
.coverage-section,
.process-section,
.seo-content-section,
.faq-section,
.form-section{
  padding:78px 0;
}

.intro-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:36px;
  align-items:center;
}

.intro-image img{
  border-radius:26px;
  box-shadow:var(--shadow);
}

.intro-content h2,
.section-head h2,
.seo-box h2,
.form-content h2{
  margin:0 0 14px;
  font-size:36px;
  line-height:1.2;
  color:var(--navy);
}

.intro-content p,
.section-head p,
.seo-box p,
.form-content p{
  margin:0 0 16px;
  color:#55697f;
  font-size:16px;
}

.mini-features{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}

.mini-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 24px rgba(15,39,71,.05);
}

.mini-card strong{
  display:block;
  color:var(--navy);
  margin-bottom:8px;
  font-size:17px;
}

.mini-card p{
  margin:0;
  font-size:14px;
  color:#5f7288;
}

.section-head{
  max-width:860px;
  margin:0 auto 34px;
  text-align:center;
}

.services-section{
  background:linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.service-card{
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}

.service-card-body{
  padding:24px;
}

.service-card h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.25;
  color:var(--navy);
}

.service-card p{
  margin:0;
  color:#5b6f85;
  font-size:15px;
}

.coverage-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.coverage-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px 22px;
  box-shadow:0 12px 26px rgba(15,39,71,.05);
}

.coverage-item h3{
  margin:0 0 10px;
  font-size:20px;
  color:var(--navy);
}

.coverage-item p{
  margin:0;
  color:#607388;
  font-size:15px;
}

.process-section{
  background:linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.process-step{
  position:relative;
  padding:28px 22px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.process-step span{
  display:inline-flex;
  width:54px;
  height:54px;
  border-radius:16px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--navy), var(--navy-3));
  color:#fff;
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
}

.process-step h3{
  margin:0 0 10px;
  font-size:20px;
  color:var(--navy);
}

.process-step p{
  margin:0;
  color:#607388;
  font-size:15px;
}

.seo-box{
  background:linear-gradient(135deg, #0f2747 0%, #1a4473 100%);
  color:#fff;
  border-radius:28px;
  padding:42px;
  box-shadow:0 18px 40px rgba(15,39,71,.18);
}

.seo-box h2{
  color:#fff;
}

.seo-box p{
  color:rgba(255,255,255,.90);
}

.faq-list{
  max-width:940px;
  margin:0 auto;
}

.faq-item{
  margin-bottom:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 8px 24px rgba(15,39,71,.05);
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 24px;
  font-size:18px;
  font-weight:700;
  color:var(--navy);
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item p{
  margin:0;
  padding:0 24px 22px;
  color:#5d7187;
  font-size:15px;
}

.form-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:start;
}

.form-content{
  position:sticky;
  top:30px;
}

.form-points{
  margin:20px 0 0;
  padding:0;
  list-style:none;
}

.form-points li{
  position:relative;
  padding-left:22px;
  margin-bottom:12px;
  color:#4f647c;
  font-weight:600;
}

.form-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--orange);
}

.form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.security-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group label{
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
  color:var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid rgba(15,39,71,.14);
  border-radius:14px;
  padding:14px 15px;
  background:#fff;
  font-size:15px;
  outline:none;
  transition:.2s ease;
  color:var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:rgba(242,140,40,.75);
  box-shadow:0 0 0 4px rgba(242,140,40,.10);
}

.form-btn{
  width:100%;
  min-height:54px;
  font-size:16px;
}

.toast-box{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  min-width:260px;
  max-width:360px;
  padding:16px 18px;
  border-radius:14px;
  color:#fff;
  font-weight:700;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
  opacity:0;
  visibility:hidden;
  transform:translateY(18px);
  transition:.25s ease;
}

.toast-box.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.toast-box.success{
  background:linear-gradient(135deg, #11895b, #16a36d);
}

.toast-box.error{
  background:linear-gradient(135deg, #b83a3a, #dc4d4d);
}