:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #475569;
  --muted: #64748b;
  --white: #ffffff;
  --light: #f8fafc;
  --border: #e2e8f0;
  --blue: #2563eb;
  --green: #10b981;
  --purple: #8b5cf6;
  --orange: #f97316;
  --cyan: #06b6d4;
  --red: #ef4444;
  --yellow: #eab308;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 25px 70px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --container: 1180px;
}
body {
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.narrow-container {
  max-width: 850px;
}
h1,
h2,
h3,
h4 {
  color: var(--dark);
  line-height: 1.2;
}
h1 {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -2px;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
}
h3 {
  font-size: 22px;
}
p {
  color: var(--text);
}
.section-label,
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background * 0.25s ease;
}
.btn\:hover {
  transform: translateY(-3px);
}
.btn-outline {
  color: var(--dark);
  border: 1px solid var(--border);
  background: #fff;
}
.btn-outline\:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-light {
  background: #fff;
  color: var(--primary);
}
.btn-ghost {
  border: 1px solid rgb(255 255 255 / 0.3);
  color: #fff;
  background: rgb(255 255 255 / 0.08);
}
.btn-ghost:hover {
  background-color: #fff;
  color: navy;
}
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  background:
    radial-gradient(circle at 10% 20%, rgb(37 99 235 / 0.12), transparent 35%),
    radial-gradient(circle at 90% 80%, rgb(139 92 246 / 0.1), transparent 35%),
    #f8fafc;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}
.hero-content h1 span {
  color: var(--primary);
  display: block;
}
.hero-text {
  max-width: 700px;
  margin: 25px 0 30px;
  font-size: 18px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-buttons .explore:hover {
  background-color: #000;
  color: #fff;
  transition: ease-in-out 0.2s;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 38px;
}
.hero-trust div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
}
.hero-trust i {
  color: var(--primary);
}
.hero-card {
  position: relative;
  padding: 45px;
  border-radius: 30px;
  background: linear-gradient(145deg, #0f172a, #172554);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgb(59 130 246 / 0.18);
}
.hero-card > span {
  position: relative;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero-card h2 {
  position: relative;
  color: #fff;
  margin: 15px 0;
  font-size: 34px;
}
.hero-card p {
  position: relative;
  color: #cbd5e1;
}
.floating-icon {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 27px;
  box-shadow: 0 15px 30px rgb(59 130 246 / 0.25);
}
.hero-card-list {
  position: relative;
  display: grid;
  gap: 13px;
  margin-top: 28px;
}
.hero-card-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-size: 14px;
}
.hero-card-list i {
  color: #4ade80;
}
.intro-section {
  padding: 80px 0;
}
.intro-section h2 {
  margin-bottom: 25px;
}
.intro-section h2 span {
  color: #ca8a04;
}
.intro-section p {
  margin-bottom: 18px;
  font-size: 17px;
}
.section-heading {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-heading h2 span {
  color: #0d6efd;
}
.section-heading p {
  margin-top: 18px;
  font-size: 17px;
}
.services-section {
  padding: 80px 0;
  background: #d9e6f3;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.service-card {
  position: relative;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.service-card\:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgb(15 23 42 / 0.11);
}
.service-number {
  position: absolute;
  right: 25px;
  top: 20px;
  color: #e2e8f0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
  border-radius: 18px;
  font-size: 26px;
}
.service-category {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.service-card h3 {
  margin-bottom: 15px;
  font-size: 25px;
}
.service-card p {
  margin-bottom: 20px;
  font-size: 15px;
}
.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}
.service-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 14px;
}
.service-card li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 3px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  transition: gap 0.2s ease;
}
.service-link\:hover {
  gap: 14px;
}
.service-card.blue .service-icon {
  color: var(--blue);
  background: rgb(37 99 235 / 0.1);
}
.service-card.blue li::before,
.service-card.blue .service-link {
  color: var(--blue);
}
.service-card.green .service-icon {
  color: var(--green);
  background: rgb(16 185 129 / 0.1);
}
.service-card.green li::before,
.service-card.green .service-link {
  color: var(--green);
}
.service-card.purple .service-icon {
  color: var(--purple);
  background: rgb(139 92 246 / 0.1);
}
.service-card.purple li::before,
.service-card.purple .service-link {
  color: var(--purple);
}
.service-card.orange .service-icon {
  color: var(--orange);
  background: rgb(249 115 22 / 0.1);
}
.service-card.orange li::before,
.service-card.orange .service-link {
  color: var(--orange);
}
.service-card.cyan .service-icon {
  color: var(--cyan);
  background: rgb(6 182 212 / 0.1);
}
.service-card.cyan li::before,
.service-card.cyan .service-link {
  color: var(--cyan);
}
.service-card.red .service-icon {
  color: var(--red);
  background: rgb(239 68 68 / 0.1);
}
.service-card.red li::before,
.service-card.red .service-link {
  color: var(--red);
}
.service-card.yellow .service-icon {
  color: #ca8a04;
  background: rgb(234 179 8 / 0.12);
}
.service-card.yellow li::before,
.service-card.yellow .service-link {
  color: #ca8a04;
}
.why-section {
  padding: 110px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.why-content p {
  margin: 20px 0;
  font-size: 16px;
}
.why-content .btn {
  margin-top: 15px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.trust-box {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.trust-box i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 13px;
  color: var(--primary);
  background: rgb(37 99 235 / 0.1);
}
.trust-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.trust-box p {
  font-size: 14px;
}
.process-section {
  padding: 105px 0;
  background: #f8fafc;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.process-step {
  position: relative;
  padding: 35px 25px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  text-align: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.process-step > i {
  display: block;
  margin-bottom: 17px;
  color: var(--primary);
  font-size: 27px;
}
.process-step h3 {
  margin-bottom: 12px;
  font-size: 18px;
}
.process-step p {
  font-size: 14px;
}
.expertise-section {
  padding: 105px 0;
}
.expertise-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  padding: 55px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border: 1px solid #dbeafe;
}
.expertise-icon {
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  border-radius: 23px;
  background: var(--primary);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 15px 30px rgb(37 99 235 / 0.2);
}
.expertise-card h2 {
  margin-bottom: 20px;
}
.expertise-card p {
  margin-bottom: 15px;
}
.expertise-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 25px;
}
.expertise-points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.expertise-points i {
  color: var(--green);
  margin-top: 4px;
}
.audience-section {
  padding: 105px 0;
  background: #f8fafc;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.audience-card {
  padding: 32px 25px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.audience-card\:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.audience-card > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: #eff6ff;
  color: var(--primary);
  font-size: 23px;
}
.audience-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.audience-card p {
  font-size: 14px;
}
.faq-section {
  padding: 110px 0;
}
.faq-container {
  max-width: 900px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 25px;
  cursor: pointer;
  color: var(--dark);
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary i {
  color: var(--primary);
  transition: transform 0.25s ease;
}
.faq-list details[open] summary i {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 25px 25px;
  font-size: 15px;
}
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 85% 20%, rgb(96 165 250 / 0.25), transparent 30%),
    linear-gradient(135deg, #1d4ed8, #312e81);
  text-align: center;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.cta-content .section-label {
  color: #bfdbfe;
}
.cta-content h2 {
  color: #fff;
}
.cta-content p {
  max-width: 680px;
  margin: 20px auto 30px;
  color: #dbeafe;
  font-size: 17px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}
.trust-strip {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
.trust-strip-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-strip-grid i {
  color: var(--primary);
  font-size: 24px;
}
.trust-strip-grid strong,
.trust-strip-grid span {
  display: block;
}
.trust-strip-grid strong {
  color: var(--dark);
  font-size: 14px;
}
.trust-strip-grid span {
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 1000px) {
  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    text-align: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons,
  .hero-trust {
    justify-content: center;
  }
  .hero-card {
    max-width: 650px;
    margin: 0 auto;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .services-hero {
    padding: 75px 0;
  }
  h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  h2 {
    font-size: 32px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-card {
    padding: 30px 25px;
    border-radius: 22px;
  }
  .hero-card h2 {
    font-size: 28px;
  }
  .hero-trust {
    display: grid;
    gap: 13px;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro-section,
  .services-section,
  .why-section,
  .process-section,
  .expertise-section,
  .audience-section,
  .faq-section {
    padding: 75px 0;
  }
  .service-grid,
  .process-grid,
  .audience-grid,
  .trust-grid,
  .expertise-points,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px 24px;
  }
  .service-number {
    font-size: 38px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .expertise-card {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    gap: 25px;
  }
  .expertise-icon {
    width: 70px;
    height: 70px;
  }
  .disclaimer-box {
    flex-direction: column;
    padding: 23px;
  }
  .cta-section {
    padding: 75px 0;
  }
  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: auto;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .trust-strip-grid {
    gap: 20px;
  }
}
@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .faq-list summary {
    padding: 18px;
    font-size: 15px;
  }
  .faq-list details p {
    padding: 0 18px 20px;
  }
}
\:focus-visible {
  outline: 3px solid rgb(37 99 235 / 0.35);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  \*,
  \*::before,
  \*::after {
    transition: none !important;
  }
}
