/* ===== HEADER + HERO SECTION (CSS) ===== */
:root {
  --teal: #12a6a3;
  --navy: #2f3a78;
  --orange: #d5852b;
  --white: #ffffff;
  --muted: #d7d7d7;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif
}

/* containers */
.container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

/* TOP BAR */
.topbar {
  background: var(--teal);
  height: 34px;
  display: flex;
  align-items: center;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.topbar-item img {
  width: 14px;
  height: 14px;
  display: block;
  filter: brightness(0) invert(1);
}

.social {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.social img {
  height: 12px;
  display: block;
  filter: brightness(0) invert(1);
}

.sep {
  color: rgba(255, 255, 255, .7);
  font-size: 13px
}

/* NAV BAR */
.navwrap {
  background: var(--navy);
  height: 64px;
  display: flex;
  align-items: center;
}

.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 25px;
}

.brand img {
  height: 40px;
  width: auto;
  display: block;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navlinks a {
  color: #e9ecff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: .95;
}

.navlinks a.active {
  color: var(--teal)
}

.navlinks a:hover {
  opacity: 1
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 10px 14px 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

.cta-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #2b2b2b;
  border-radius: 6px;
  font-weight: 900;
}

/* HERO */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../lawyer-images/lawyer-banner.jpg") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .38);
}

.hero-grid {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 36px;
  padding: 38px 0 54px;
}

/* Left content */
.hero-kicker {
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
  letter-spacing: .2px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.kicker-line {
  width: 70px;
  height: 2px;
  background: rgba(255, 255, 255, .55);
  display: inline-block;
  transform: translateY(10px);
}

.hero-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 300;
}

.hero-points {
  margin: 0 0 26px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .9);
  font-size: 14.5px;
  line-height: 1.6;
}

.hero-points li {
  margin: 8px 0
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 46px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0;
  /* square like screenshot */
  font-size: 14px;
}

/* Right glass card */
.hero-card {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  background: rgba(42, 42, 42, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 20px 18px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .25);
}

.card-title {
  margin: 4px 0 14px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.card-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.field input,
.field select {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 2px;
  padding: 0 12px;
  color: #fff;
  outline: none;
  font-size: 13px;
}

.field input::placeholder {
  color: rgba(255, 255, 255, .7)
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, .7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 16px,
    calc(100% - 12px) 16px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field select option {
  color: #000
}

/* whatsapp row */
.wa-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  margin-top: -2px;
}

.wa-ico {
  width: 16px;
  height: 16px;
  display: block;
}

/* toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, .25);
  border-radius: 999px;
  transition: .2s;
}

.slider:before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 2px;
  top: 2px;
  background: white;
  border-radius: 50%;
  transition: .2s;
}

.switch input:checked+.slider {
  background: var(--teal)
}

.switch input:checked+.slider:before {
  transform: translateX(16px)
}

/* buttons */
.btn-primary {
  width: 100%;
  height: 42px;
  border: none;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(.98)
}

/* price strip */
.price-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .18);
  border-radius: 3px;
  height: 40px;
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  margin-top: 6px;
}

.price-strip .old {
  color: rgba(255, 255, 255, .7);
  text-decoration: line-through;
  font-weight: 700
}

.price-strip .new {
  color: #63d34e;
  font-weight: 900
}

.price-strip .txt {
  color: rgba(255, 255, 255, .85)
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 11.5px;
}

.foot-icon {
  filter: grayscale(1);
  opacity: .9
}

/* ===== OUR LEGAL EXPERTISE + CONSULTANTS (CSS) ===== */
.expertise {
  background: #fff;
  padding: 42px 0 56px;
  font-family: "Georgia", serif;
}

.exp-wrap {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

/* Titles */
.exp-title,
.exp-title2 {
  margin: 0;
  color: #2e2e2e;
  font-weight: 500;
  letter-spacing: .2px;
}

.exp-title {
  font-size: 32px;
}

.exp-title2 {
  font-size: 34px;
  margin-top: 54px;
}

.exp-underline,
.exp-underline2 {
  width: 52px;
  height: 2px;
  background: #e3d2aa;
  margin: 14px auto 0;
}

.exp-underline2 {
  margin-top: 12px;
}

/* Expertise icons row */
.exp-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 18px;
}

.exp-arrow {
  width: 56px;
  height: 52px;
  border: none;
  background: #d9d9d9;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.exp-arrow .chev {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1;
  color: #000;
  opacity: .85;
}

.exp-arrow:hover {
  filter: brightness(.97);
}

.exp-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 84px;
  /* spacing like screenshot */
}

.exp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.exp-icon {
  width: 86px;
  height: 86px;
  border: 2px solid #e3d2aa;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.exp-icon img {
  width: 34px;
  height: 34px;
  display: block;
}

.exp-label {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: .3px;
  font-weight: 700;
  color: #1f1f1f;
}

/* Consultants */
.consultants {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}

.cons-card {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.cons-img {
  width: 210px;
  height: 160px;
  margin: 0 auto 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cons-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.cons-name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #0f0f0f;
}

.cons-exp {
  margin: 8px 0 18px;
  font-size: 12px;
  color: #4b4b4b;
}

.cons-desc {
  font-family: "Georgia", serif;
  font-size: 14px;
  color: #2c2c2c;
  line-height: 1.45;
}

.cons-desc p {
  margin: 0 0 10px
}

/* ===== ONLINE LAWYER CONSULTATION + STATS (CSS) ===== */
.olc {
  width: 100%;
  background: #fff;
}

/* TOP BLUE AREA */
.olc-hero {
  position: relative;
  background: #2f3a78;
  padding: 52px 0 48px;
  overflow: hidden;
}

.olc-curve {
  position: absolute;
  right: -10px;
  top: -10px;

}

.olc-content {
  width: min(980px, calc(100% - 120px));
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-family: "Georgia", serif;
}

.olc-title {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: .2px;
}

.olc-text {
  margin: 0 auto 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .9);
  max-width: 900px;
}

/* STATS SECTION */
.olc-stats {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .05);
  padding: 46px 0 44px;
}

.stats-wrap {
  width: min(1100px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
}

.vline {
  width: 1px;
  height: 110px;
  background: rgba(0, 0, 0, .08);
}

.stat {
  text-align: center;
  font-family: "font family/Font 3";
}

.stat-num {
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
  color: #d5852b;
  margin-bottom: 14px;
}

.stat-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
  color: #1f1f1f;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ===== RECENT CASE STUDIES + CTA STRIP (CSS) ===== */
.case-studies {
  background: #fff;
}

/* Top text area */
.cs-top {
  text-align: center;
  padding: 48px 0 36px;
  font-family: "Georgia", serif;
}

.cs-title {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  color: #2c2c2c;
}

.cs-underline {
  width: 54px;
  height: 2px;
  background: #e3d2aa;
  margin: 14px auto 0;
}

.cs-sub {
  margin: 18px 0 0;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Georgia", serif;
}

/* 4 images row */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.cs-img {
  height: 360px;
  /* matches screenshot */
  overflow: hidden;
}

.cs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA strip */
.cs-cta {
  background: #fff;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(0, 0, 0, .04);
}

.cs-cta-wrap {
  width: min(1200px, calc(100% - 120px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cs-cta-left {
  max-width: 760px;
}

.cs-cta-title {
  margin: 0 0 8px;
  font-family: "Georgia", serif;
  font-size: 30px;
  font-weight: 500;
  color: #d5852b;
  /* orange like screenshot */
}

.cs-cta-text {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #2c2c2c;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 34px;
  background: #12a6a3;
  /* teal */
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: .8px;
  font-size: 12px;
}

/* ===== WHAT ARE LAWYER SERVICES (CSS) ===== */
.law-services {
  position: relative;
  background: #2f3a78;
  padding: 48px 0 56px;
  overflow: hidden;
}

/* decorative */
.ls-left-curve {
  position: absolute;
  bottom: -40px;

}

.ls-q {
  position: absolute;
  right: 80px;
  top: 170px;
  width: 360px;
  height: auto;
  pointer-events: none;
}

.ls-wrap {
  width: min(1100px, calc(100% - 120px));
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-family: "Georgia", serif;
}

.ls-title {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: .2px;
}

.ls-underline {
  width: 62px;
  height: 2px;
  background: #e3d2aa;
  margin: 14px auto 16px;
}

.ls-intro {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
}

.ls-list {
  width: min(1080px, 100%);
  margin: 10px auto 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .95);
}

.ls-list p {
  margin: 10px 0;
}

/* ===== HOW ONLINE ATTORNEY CONSULTATIONS WORK + BENEFITS (CSS) ===== */
.how-benefits {
  background: #fff;
}

/* TOP AREA */
.hb-top {
  width: min(1200px, calc(100% - 90px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 38px;
  padding: 44px 0 18px;
  align-items: start;
}

.hb-left {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 2px;
}

/* faint building bg like screenshot */
.hb-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 40%, rgba(0, 0, 0, .06), transparent 55%),
    linear-gradient(90deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
  opacity: .35;
}

.hb-img {
  position: relative;
  width: 186%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* RIGHT CONTENT */
.hb-right {
  font-family: "Georgia", serif;
  color: #2b2b2b;
}

.hb-title {
  margin: 0 0 14px;
  color: #d5852b;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
}

.hb-para {
  margin: 0 0 16px;
  font-size: 12.8px;
  line-height: 1.7;
  color: #777;
  max-width: 520px;
}

.hb-steps {
  margin: 0;
  padding-left: 18px;
  font-size: 12.8px;
  line-height: 1.75;
  color: #777;
}

.hb-steps li {
  margin: 6px 0
}

/* BOTTOM BENEFITS */
.hb-bottom {
  text-align: center;
  padding: 24px 0 56px;
}

.hb-title2 {
  margin: 0;
  font-family: "Georgia", serif;
  color: #d5852b;
  font-size: 34px;
  font-weight: 500;
}

.hb-sub {
  margin: 14px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #2b2b2b;
  line-height: 1.6;
}

.hb-cards {
  width: min(980px, calc(100% - 90px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 34px;
  align-items: stretch;
}

.hb-card {
  background: #f3f5f7;
  border-radius: 6px;
  padding: 16px 16px 14px;
  text-align: center;
}

.hb-card h3 {
  margin: 0 0 10px;
  font-family: "Georgia", serif;
  font-size: 13px;
  font-weight: 700;
  color: #3a3a3a;
}

.hb-card p {
  margin: 0;
  font-family: "Georgia", serif;
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

.hb-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 22px;
  background: #12a6a3;
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 11px;
  border-radius: 2px;
}

/* ===== WHY CHOOSE JUREA (CSS) ===== */
.choose-jurea {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 58px 0 64px;
  color: #fff;
}

/* background image */
.cj-bg {
  position: absolute;
  inset: 0;
  background: url("../lawyer-images/Choose-jurea.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

/* dark overlay like screenshot (strong left + center) */
.cj-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .62) 45%, rgba(0, 0, 0, .55) 75%, rgba(0, 0, 0, .75) 100%);
}

/* content wrapper */
.cj-wrap {
  position: relative;
  width: min(1180px, calc(100% - 120px));
  margin: 0 auto;
  text-align: center;
  font-family: "Georgia", serif;
}

.cj-title {
  margin: 0 0 18px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .2px;
}

.cj-sub {
  margin: 0 auto 18px;
  max-width: 980px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .85);
}

.cj-note {
  margin: 20px 0 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
}

/* cards grid */
.cj-cards {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 28px;
}

.cj-card {
  background: #fff;
  color: #2c2c2c;
  border-radius: 8px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .22);
}

.cj-card h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #2c2c2c;
}

.cj-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #5a5a5a;
}

/* ===== FAQ (NEW) - CSS ===== */
.faq-new {
  background: #fff;
  padding: 64px 0 90px;
  overflow: hidden;
}

.faq-new__container {
  width: min(1200px, calc(100% - 120px));
  margin: 0 auto;
}

.faq-new__title {
  margin: 0;
  text-align: center;
  font-family: "Georgia", serif;
  font-size: 46px;
  font-weight: 500;
  color: #d5852b;
  letter-spacing: .2px;
}

/* GRID */
.faq-new__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* shifts text left */
  gap: 32px;
  align-items: flex-start;
}

/* LEFT ILLUSTRATION (bottom-left like screenshot) */
.faq-new__art {
  position: relative;
  height: 420px;
  /* margin-left: -3rem; */
}

.faq-new__art img {
  position: absolute;
  left: -91px;
  bottom: -39px;
  width: 620px;
  /* max-width: none; */
  /* opacity: .12; */
  display: block;
}

/* ACCORDION */
.faq-new__acc {
  width: 100%;
  max-width: 600px;
  margin-left: -17rem;
  /* ensure no auto centering */

}

.faq-new__item {
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 8px 0;
}

.faq-new__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  font-family: "Georgia", serif;
  font-size: 16px;
  color: #444;
}

.faq-new__q::-webkit-details-marker {
  display: none
}

/* Right chevron icon */
.faq-new__chev {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.faq-new__chev:before,
.faq-new__chev:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

.faq-new__chev:before {
  left: 3px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-new__chev:after {
  right: 3px;
  transform: translateY(-50%) rotate(-45deg);
}

/* open state rotates to up */
.faq-new__item[open] .faq-new__chev {
  transform: rotate(180deg);
}

/* Answer */
.faq-new__a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #6a6a6a;
  padding: 0 0 14px 0;
}

.site-footer {
  position: relative;
  background: #2A3276;
  color: #fff;
  padding: 0 0 22px;
  overflow: hidden;
  font-family: Inter, system-ui, Arial, sans-serif;
}

/* Decorative shapes (very light) */
.f-shape {
  position: absolute;
  opacity: .15;
  pointer-events: none;
  user-select: none;
}

.f-shape--t1 {
  left: 35px;
  top: 30px;
  width: 38px;
}

.f-shape--t2 {
  left: 75px;
  top: 58px;
  width: 26px;
}

.f-shape--t3 {
  right: 55px;
  top: 55px;
  width: 36px;
}

.f-shape--t4 {
  right: 30px;
  top: 35px;
  width: 24px;
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Top row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Big logo box (white) */
.footer-logoBox {
  width: 250px;
  height: 90px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logoBox img {
  height: 54px;
  width: auto;
  display: block;
}

/* Socials on right */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social__label {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  margin-right: 8px;
}

.footer-social__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
}

.footer-social__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Divider lines */
.footer-divider {

  background: rgba(255, 255, 255, .10);
  margin: 18px 0 0;
}

.footer-divider--bottom {
  margin: 40px 0 14px;
}

/* Grid columns */
.footer-grid {
  display: grid;
  grid-template-columns: 140px 140px 170px 260px 1fr;
  gap: 20px;
  padding-top: 26px;
  align-items: start;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 10px 0;
}

.footer-list a {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  text-decoration: none;
}

.footer-list a:hover {
  color: #fff;
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  flex: 0 0 28px;
}

.footer-contact__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-contact__text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  margin-top: 2px;
}

/* Subscribe */
.footer-subtext {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 14px;
}

.footer-form {
  display: flex;
  align-items: center;
  width: 250px;
  height: 36px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.footer-input {
  border: none;
  outline: none;
  padding: 0 12px;
  height: 100%;
  width: 100%;
  font-size: 12px;
  color: #333;
}

.footer-input::placeholder {
  color: #8a8a8a;
}

.footer-btn {
  width: 42px;
  height: 100%;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.footer-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* Bottom copyright */
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  padding-bottom: 10px;
}

/* Responsive */
@media (max-width: 1050px) {
  .footer-logoBox {
    width: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-col--subscribe .footer-form {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 620px) {
  .footer-wrap {
    padding: 0 18px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logoBox {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-form {
    width: 100%;
    max-width: 320px;
  }
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .faq-new__grid {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .faq-new__art {
    height: 260px
  }

  .faq-new__art img {
    left: -30px;
    width: 460px
  }
}

.faq-new__container {
  width: min(1200px, calc(100% - 80px));
  /* was 120px */
}

@media (max-width: 1050px) {
  .faq-new__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-new__acc {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .faq-new {
    padding: 52px 0 70px
  }

  .faq-new__title {
    font-size: 34px
  }

  .faq-new__art img {
    width: 380px
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .cj-wrap {
    width: min(1180px, calc(100% - 40px))
  }

  .cj-title {
    font-size: 34px
  }

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

@media (max-width: 640px) {
  .choose-jurea {
    padding: 44px 0 52px
  }

  .cj-title {
    font-size: 28px
  }

  .cj-cards {
    grid-template-columns: 1fr
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hb-top {
    width: min(1200px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hb-img {
    height: 340px
  }

  .hb-cards {
    width: min(980px, calc(100% - 40px));
    grid-template-columns: 1fr;
  }
}

/* make content start after intro like screenshot */
@media (min-width: 900px) {
  .ls-list {
    padding-left: 40px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .ls-wrap {
    width: min(1100px, calc(100% - 40px))
  }

  .ls-title {
    font-size: 34px
  }

  .ls-left-curve {
    width: 340px
  }

  .ls-q {
    right: -40px;
    top: 220px;
    width: 300px
  }

  .ls-list {
    padding-left: 0
  }
}

@media (max-width: 560px) {
  .law-services {
    padding: 38px 0 44px
  }

  .ls-title {
    font-size: 28px
  }

  .ls-list {
    font-size: 13px
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-img {
    height: 300px;
  }

  .cs-cta-wrap {
    width: min(1200px, calc(100% - 40px));
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }

  .cs-img {
    height: 260px;
  }

  .cs-cta-title {
    font-size: 24px;
  }

  .cs-btn {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .olc-content {
    width: min(960px, calc(100% - 40px))
  }

  .stats-wrap {
    width: min(960px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vline {
    display: none
  }

  .olc-stats {
    padding: 34px 0
  }

  .stat-num {
    font-size: 46px
  }

  .olc-curve {
    opacity: .14;
    width: 320px
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .exp-items {
    gap: 48px
  }

  .consultants {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px
  }
}

@media (max-width: 640px) {
  .exp-row {
    grid-template-columns: 52px 1fr 52px
  }

  .exp-items {
    gap: 26px;
    flex-wrap: wrap
  }

  .consultants {
    grid-template-columns: 1fr
  }

  .cons-img {
    width: 240px
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .navlinks {
    display: none
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .hero-card {
    justify-self: start;
    max-width: 520px
  }

  .hero-title {
    font-size: 48px
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1200px, calc(100% - 28px))
  }

  .topbar-right {
    display: none
  }

  .hero-title {
    font-size: 38px
  }

  .hero-pill {
    width: 100%
  }
}

/* ===== PROFESSIONAL MOBILE VIEW STYLES ===== */

/* Mobile Hamburger Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav.open {
  max-height: 400px;
  padding: 16px 20px 20px;
}

.mobile-nav a {
  color: #e9ecff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a.active {
  color: var(--teal);
}

.mobile-nav a:hover {
  color: var(--teal);
}

.mobile-cta {
  background: var(--orange);
  color: #fff !important;
  text-align: center;
  padding: 14px 20px !important;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: 700;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop nav */
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .navlinks {
    display: none !important;
  }

  .cta {
    display: none !important;
  }

  /* Topbar mobile adjustments */
  .topbar {
    height: auto;
    padding: 8px 0;
  }

  .topbar-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .topbar-right {
    display: none;
  }

  .topbar-item {
    font-size: 12px;
  }

  /* Nav bar mobile */
  .navwrap {
    height: auto;
    padding: 12px 0;
  }

  .navrow {
    flex-wrap: wrap;
  }

  .brand {
    padding: 8px 16px;
  }

  .brand img {
    height: 32px;
  }

  /* Hero section mobile */
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 30px 0 40px;
    min-height: auto;
    gap: 30px;
  }

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

  .hero-kicker {
    font-size: 14px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .kicker-line {
    display: none;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-points {
    text-align: left;
    font-size: 13px;
    padding-left: 16px;
  }

  .hero-pill {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-card {
    max-width: 100%;
    justify-self: center;
    padding: 18px 16px 16px;
  }

  .card-title {
    font-size: 14px;
  }

  .field input,
  .field select {
    height: 44px;
    font-size: 14px;
  }

  .btn-primary {
    height: 48px;
    font-size: 14px;
  }

  .price-strip {
    font-size: 11px;
    flex-wrap: wrap;
    height: auto;
    padding: 10px 12px;
    gap: 6px;
  }

  /* Expertise section mobile */
  .expertise {
    padding: 32px 0 40px;
  }

  .exp-wrap {
    width: min(1200px, calc(100% - 24px));
  }

  .exp-title {
    font-size: 24px;
  }

  .exp-title2 {
    font-size: 22px;
    margin-top: 40px;
  }

  .exp-row {
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
    margin-top: 24px;
  }

  .exp-arrow {
    width: 40px;
    height: 40px;
  }

  .exp-arrow .chev {
    font-size: 24px;
  }

  .exp-items {
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .exp-item {
    flex: 0 0 auto;
    min-width: 100px;
    scroll-snap-align: center;
  }

  .exp-icon {
    width: 70px;
    height: 70px;
  }

  .exp-icon img {
    width: 28px;
    height: 28px;
  }

  .exp-label {
    font-size: 11px;
    white-space: nowrap;
  }

  /* Consultants mobile */
  .consultants {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .cons-card {
    padding: 0 10px;
  }

  .cons-img {
    width: 180px;
    height: 140px;
    margin-bottom: 14px;
  }

  .cons-name {
    font-size: 16px;
  }

  .cons-exp {
    font-size: 11px;
    margin: 6px 0 14px;
  }

  .cons-desc {
    font-size: 13px;
  }

  /* Online Lawyer Consultation mobile */
  .olc-hero {
    padding: 36px 0 32px;
  }

  .olc-curve {
    opacity: 0.1;
    width: 200px;
    right: -30px;
    top: -20px;
  }

  .olc-content {
    width: min(960px, calc(100% - 24px));
  }

  .olc-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .olc-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  /* Stats mobile */
  .olc-stats {
    padding: 28px 0;
  }

  .stats-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    width: min(960px, calc(100% - 24px));
  }

  .vline {
    display: none;
  }

  .stat-num {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .stat-sub {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  /* Case Studies mobile */
  .cs-top {
    padding: 36px 16px 28px;
  }

  .cs-title {
    font-size: 24px;
  }

  .cs-sub {
    font-size: 13px;
  }

  .cs-sub br {
    display: none;
  }

  .cs-grid {
    grid-template-columns: 1fr;
  }

  .cs-img {
    height: 220px;
  }

  .cs-cta {
    padding: 28px 16px;
  }

  .cs-cta-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: center;
  }

  .cs-cta-left {
    max-width: 100%;
  }

  .cs-cta-title {
    font-size: 22px;
  }

  .cs-cta-text {
    font-size: 13px;
  }

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

  /* Law Services mobile */
  .law-services {
    padding: 36px 0 44px;
  }

  .ls-wrap {
    width: min(1100px, calc(100% - 24px));
  }

  .ls-title {
    font-size: 24px;
  }

  .ls-intro {
    font-size: 13px;
  }

  .ls-list {
    font-size: 13px;
    line-height: 1.65;
    padding-left: 0;
  }

  .ls-list p {
    margin: 12px 0;
  }

  .ls-left-curve {
    opacity: 0.15;
    width: 250px;
    bottom: -60px;
  }

  .ls-q {
    display: none;
  }

  /* How Benefits mobile */
  .hb-top {
    width: min(1200px, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 16px;
  }

  .hb-left {
    min-height: 260px;
    order: 2;
  }

  .hb-img {
    width: 100%;
    height: 280px;
  }

  .hb-right {
    order: 1;
  }

  .hb-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .hb-title br {
    display: none;
  }

  .hb-para {
    font-size: 13px;
    max-width: 100%;
  }

  .hb-steps {
    font-size: 13px;
    line-height: 1.65;
    padding-left: 16px;
  }

  .hb-steps li {
    margin: 8px 0;
  }

  .hb-bottom {
    padding: 20px 16px 44px;
  }

  .hb-title2 {
    font-size: 24px;
  }

  .hb-sub {
    font-size: 12px;
    line-height: 1.5;
  }

  .hb-sub br {
    display: none;
  }

  .hb-cards {
    width: min(980px, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .hb-card {
    padding: 16px;
  }

  .hb-card h3 {
    font-size: 14px;
  }

  .hb-card p {
    font-size: 13px;
  }

  .hb-btn {
    margin-top: 24px;
    width: 100%;
    max-width: 200px;
    height: 40px;
    font-size: 12px;
  }

  /* Why Choose Jurea mobile */
  .choose-jurea {
    padding: 40px 0 48px;
    min-height: auto;
  }

  .cj-wrap {
    width: min(1180px, calc(100% - 24px));
  }

  .cj-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .cj-sub {
    font-size: 13px;
    line-height: 1.65;
  }

  .cj-note {
    font-size: 13px;
    margin: 16px 0 24px;
  }

  .cj-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cj-card {
    padding: 16px;
  }

  .cj-card h3 {
    font-size: 14px;
  }

  .cj-card p {
    font-size: 12px;
  }

  /* FAQ mobile */
  .faq-new {
    padding: 40px 0 60px;
  }

  .faq-new__container {
    width: min(1200px, calc(100% - 24px));
  }

  .faq-new__title {
    font-size: 26px;
  }

  .faq-new__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .faq-new__art {
    display: none;
  }

  .faq-new__acc {
    max-width: 100%;
    margin-left: 0;
  }

  .faq-new__q {
    font-size: 14px;
    padding: 14px 0;
    gap: 12px;
  }

  .faq-new__a {
    font-size: 13px;
    line-height: 1.6;
    padding-bottom: 12px;
  }

  /* Footer mobile */
  .site-footer {
    padding: 0 0 16px;
  }

  .footer-wrap {
    padding: 0 16px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
  }

  .footer-logoBox {
    width: 200px;
    height: 70px;
  }

  .footer-logoBox img {
    height: 42px;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social__label {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding-top: 24px;
  }

  .footer-col--subscribe {
    grid-column: 1 / -1;
  }

  .footer-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-list li {
    margin: 8px 0;
  }

  .footer-list a {
    font-size: 11px;
  }

  .footer-contact {
    gap: 10px;
  }

  .footer-contact__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .footer-contact__text {
    font-size: 11px;
  }

  .footer-subtext {
    font-size: 11px;
  }

  .footer-form {
    width: 100%;
    max-width: 280px;
  }

  .footer-divider {
    margin: 16px 0 0;
  }

  .footer-divider--bottom {
    margin: 28px 0 12px;
  }

  .footer-copy {
    font-size: 11px;
    padding-bottom: 8px;
  }

  /* Decorative shapes hide on mobile */
  .f-shape {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-points {
    font-size: 12px;
  }

  .exp-title,
  .exp-title2 {
    font-size: 20px;
  }

  .olc-title {
    font-size: 22px;
  }

  .cs-title {
    font-size: 20px;
  }

  .ls-title {
    font-size: 20px;
  }

  .hb-title,
  .hb-title2 {
    font-size: 20px;
  }

  .cj-title {
    font-size: 20px;
  }

  .faq-new__title {
    font-size: 22px;
  }

  .stats-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .stat-num {
    margin-bottom: 0;
  }

  .stat-sub {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}