:root {
  --brand: #0174bb;
  --brand-dark: #015d96;
  --brand-light: #e8f4fd;
  --brand-glow: rgba(1, 116, 187, 0.12);
  --font-head: "Outfit", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
  --border: #daeaf7;
  --text: #1a2535;
  --text2: #3d5166;
  --surface: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

/* ============================================
   SHARED UTILITIES
============================================ */
.weh-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 700;
  font-size: 12px;
  border-radius: 99px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 15px;
}

.section-head h2 span {
  color: var(--brand);
}

.section-head p {
  font-size: 16px;
  color: var(--text2);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

/* ============================================
   NAV
============================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* ============================================
   HERO
============================================ */
.weh-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: #011627;
  overflow: hidden;
  padding: 60px 20px 100px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 116, 187, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 116, 187, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 99;
}

.hero-bg-glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(1, 116, 187, 0.2) 0%,
    transparent 70%
  );
  z-index: 99;
}

.weh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #011627 55%, rgba(1, 22, 39, 0.55) 100%);
  z-index: 1;
}

.weh-hero-inner {
  position: relative;
  z-index: 99;
  max-width: 640px;
  margin-right: auto;
  padding-left: 60px;
  margin-left: 20px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 13px;
  opacity: 0.7;
  color: #fff;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  font-size: 9px;
  margin: 0 7px;
}

.weh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 116, 187, 0.25);
  border: 1px solid rgba(1, 116, 187, 0.5);
  color: #4db8ff;
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.weh-hero h1 {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.weh-hero h1 span {
  color: #4db8ff;
}

.weh-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 35px;
  max-width: 560px;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-hero-primary:hover {
  background: #4db8ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(1, 116, 187, 0.4);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* floating badge right side */
.hero-float-badge {
  position: absolute;
  right: 185px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hfb {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  min-width: 180px;
}

.hfb span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.hfb strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.hfb .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
}

/* ============================================
   STRIP
============================================ */
.weh-strip {
  position: relative;
  z-index: 10;
  margin-top: -42px;
  padding: 0 20px;
}

.weh-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--surface);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.weh-strip-item {
  display: flex;
  align-items: center;
  padding: 28px 30px;
  gap: 18px;
  border-right: 1px solid var(--border);
  transition: all 0.3s;
}

.weh-strip-item:last-child {
  border-right: 0;
}

.weh-strip-item i {
  font-size: 26px;
  color: var(--brand);
  flex-shrink: 0;
}

.weh-strip-item div span {
  display: block;
  font-size: 11px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.weh-strip-item div strong {
  font-size: 18px;
  color: var(--text);
  display: block;
  margin-top: 2px;
  font-weight: 800;
}

.weh-strip-item:hover {
  background: var(--brand-light);
  transform: translateY(-4px);
}

/* ============================================
   ABOUT
============================================ */
.weh-about {
  padding: 100px 20px;
  background: #f8fbff;
}

.weh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.weh-about-img {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  background: linear-gradient(135deg, #011627 0%, #013d6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px var(--brand-glow);
  overflow: hidden;
}

.about-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(1, 116, 187, 0.05) 0px,
    rgba(1, 116, 187, 0.05) 1px,
    transparent 1px,
    transparent 40px
  );
}

.about-img-icon {
  font-size: 80px;
  color: rgba(1, 116, 187, 0.4);
}

.weh-img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
}

.weh-img-tag i {
  color: var(--brand);
}

.weh-about-text h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.25;
}

.weh-about-text h2 span {
  color: var(--brand);
}

.weh-about-text p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.weh-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.weh-about-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.3s;
  cursor: default;
}

.weh-about-tags span i {
  color: var(--brand);
  font-size: 12px;
}

.weh-about-tags span:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.weh-about-tags span:hover i {
  color: #fff;
}

/* ============================================
   HIGHLIGHTS
============================================ */
.weh-highlights {
  padding: 100px 20px;
  background: #fff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.highlight-card {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 20px 40px var(--brand-glow);
  background: #fff;
}

.highlight-icon {
  width: 52px;
  height: 52px;
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.highlight-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ============================================
   MODULES
============================================ */
.weh-modules {
  padding: 100px 20px;
  background: #f8fbff;
}

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

.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: 0 12px 30px var(--brand-glow);
}

.mod-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-light);
  -webkit-text-stroke: 2px var(--brand);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  min-width: 32px;
}

.mod-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.35;
}

.mod-info p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

/* ============================================
   PLAN
============================================ */
.weh-plan {
  padding: 100px 20px;
  background: #fff;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.plan-card {
  background: linear-gradient(135deg, #011627 0%, #013d6e 100%);
  border-radius: 20px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(1, 22, 39, 0.25);
}

.plan-icon {
  width: 52px;
  height: 52px;
  background: rgba(1, 116, 187, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #4db8ff;
  margin: 0 auto 18px;
}

.plan-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-card p {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-head);
}

/* ============================================
   PAY / CTA
============================================ */
.weh-pay {
  padding: 80px 20px;
  background: #f8fbff;
}

.pay-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px var(--brand-glow);
}

.pay-box-content h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.pay-box-content h2 span {
  color: var(--brand);
}

.pay-box-content p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 500px;
}

.pay-btn-main {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 30px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
  min-width: 260px;
}

.pay-btn-main:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(1, 116, 187, 0.25);
}

.pay-btn-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pay-btn-text strong {
  display: block;
  font-size: 16px;
}

.pay-btn-text span {
  font-size: 12px;
  opacity: 0.75;
}

.pay-arrow {
  margin-left: auto;
  font-size: 16px;
  opacity: 0.8;
}

/* ============================================
   OTHER SERVICES
============================================ */
.weh-other {
  padding: 100px 20px;
  background: #fff;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.other-card {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 26px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.other-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 20px 40px var(--brand-glow);
  background: #fff;
}

.other-icon {
  width: 50px;
  height: 50px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.other-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.other-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.other-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.other-card:hover .other-icon {
  background: var(--brand);
  color: #fff;
}

/* ============================================
   ENQUIRY FORM
============================================ */
.weh-enquiry {
  padding: 100px 20px;
  background: #f8fbff;
}

.enquiry-outer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.enquiry-info h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.25;
}

.enquiry-info h2 span {
  color: var(--brand);
}

.enquiry-info > p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 30px;
}

.enquiry-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 35px;
}

.enq-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  font-weight: 500;
}

.enq-feat i {
  color: var(--brand);
  font-size: 15px;
  flex-shrink: 0;
}

.enquiry-contact-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s;
}

.pill-item i {
  color: var(--brand);
}

.pill-item:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.pill-item:hover i {
  color: #fff;
}

.enquiry-card {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 40px 80px var(--brand-glow);
}

.enquiry-card .card-head {
  margin-bottom: 28px;
}

.enquiry-card .card-head h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.enquiry-card .card-head p {
  color: var(--text2);
  font-size: 14px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s;
  background: #fdfdfd;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-light);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  padding: 14px;
  background: #f1f5f9;
  border-radius: 12px;
}

.captcha-box .equation {
  font-weight: 800;
  font-size: 17px;
  color: var(--brand);
  white-space: nowrap;
}

.captcha-box input {
  width: 80px;
  text-align: center;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
}

.submit-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(1, 116, 187, 0.2);
}

#form-msg {
  min-height: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

#form-msg.success {
  color: #16a34a;
}

#form-msg.error {
  color: #dc2626;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .weh-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .weh-strip-item:nth-child(2) {
    border-right: 0;
  }

  .weh-strip-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .hero-float-badge {
    display: none;
  }

  .weh-hero-inner {
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .weh-about-grid,
  .enquiry-outer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pay-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }

  .pay-btn-main {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .weh-hero h1 {
    font-size: 32px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .weh-strip-inner {
    grid-template-columns: 1fr;
  }

  .weh-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .weh-strip-item:last-child {
    border-bottom: 0;
  }

  .enquiry-features {
    grid-template-columns: 1fr;
  }

  .enquiry-card {
    padding: 25px;
  }

  .pay-box {
    padding: 28px;
  }
}

@media (max-width: 500px) {
  .highlights-grid,
  .plan-cards,
  .other-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .weh-hero h1 {
    font-size: 28px;
  }
}

.weh-benefits {
  padding: 90px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-item {
  background: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s;
}
.benefit-item:hover {
  border-color: rgba(190, 221, 235, 0.26);
  background: #fcfdff;
}
.benefit-num {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.15);
  line-height: 1;
  min-width: 40px;
}
.benefit-item h4 {
  font-size: 0.97rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 6px;
}
.benefit-item p {
  font-size: 0.84rem;
  color: #2f3236;
}



.faq-section {
	padding: 80px 0;
	background: #ffffff;
}

.faq-inner {
	width: 92%;
	
	margin: 0 auto;
}

.faq-label {
	display: inline-block;
	background: rgba(14, 165, 233, 0.08);
	color: #0174BB;
	font-size: 0.60rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	border: 1px solid rgba(14, 165, 233, 0.25);
	margin-bottom: 12px;
}

.faq-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 36px;
}

.faq-title span {
	color: #0174BB;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	border-bottom: 1px solid #e2e8f0;
	
	overflow: hidden;
	background: #ffffff;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
	border-color: rgba(14, 165, 233, 0.4);
	box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
}

.faq-q {
	display: flex;
	justify-content: space-between;
	
	padding: 1rem 0;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 600;
	color: #0f172a;
	gap: 14px;
	user-select: none;
	transition: color 0.2s;
}

.faq-q:hover {
	color: #0174BB;
}

.faq-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	
	border: 1px solid rgba(14, 165, 233, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1rem;
	color: #0ea5e9;
	transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: rgba(14, 165, 233, 0.1);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.25s;
	font-size: 0.8rem;
	color: #475569;
	line-height: 1.75;
	padding: 0 22px;
}

.faq-item.open .faq-a {
	max-height: 200px;
	padding: 0 22px 18px;
}

@media (max-width: 600px) {
	.faq-title { font-size: 1.5rem; }
	.faq-q { font-size: 0.9rem; padding: 14px 16px; }
	.faq-a { padding: 0 16px; font-size: 0.85rem; }
	.faq-item.open .faq-a { padding: 0 16px 14px; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.benefit-item h4 {
    font-size: 0.77rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 0.64rem;
    color: #2f3236;
}


}
