/* Raymond Sachs — Counsolve-matched theme */
:root {
  --purple: #6c4ea7;
  --purple-dark: #513785;
  --purple-soft: #886bc2;
  --pink: #f66587;
  --magenta: #bf529f;
  --navy: #272e39;
  --navy-2: #252b35;
  --text: #75727b;
  --heading: #272e39;
  --muted: #9ca4af;
  --light: #f4f1fa;
  --border: #e7e3ee;
  --white: #ffffff;
  --pink-bg: #faecf0;
  --magenta-bg: #faedf6;
  --radius-btn: 35px 35px 0 35px;
  --radius-card: 30px 30px 0 30px;
  --radius-alt: 30px 0 30px 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; border: none; outline: none; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }
body {
  font-size: 17px;
  color: var(--text);
  line-height: 28px;
  font-weight: 400;
  background: var(--white);
  font-family: 'Mulish', sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { font-family: 'Urbanist', sans-serif; text-decoration: none; transition: all .5s ease; color: inherit; }
ul, li { list-style: none; }
p { font-family: 'Mulish', sans-serif; color: var(--text); font-weight: 400; }
h1, h2, h3, h4, h5, h6 { font-family: 'Urbanist', sans-serif; font-weight: 400; color: var(--heading); }

.auto-container { max-width: 1200px; padding: 0 15px; margin: 0 auto; }
.large-container { max-width: 1550px; padding: 0 15px; margin: 0 auto; }
.centred { text-align: center; }
.row { --bs-gutter-x: 30px; }

/* Buttons */
.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  text-align: center;
  padding: 16px 40px;
  text-transform: capitalize;
  border-radius: var(--radius-btn);
  z-index: 1;
  cursor: pointer;
  transition: all .5s ease;
  border: 0;
}
.theme-btn:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: right bottom;
  right: 0; bottom: 0;
  z-index: -1;
  background: var(--pink);
  transition: all .5s ease;
}
.theme-btn:hover:before { transform: scale(1); }
.theme-btn.btn-one { background: var(--light); color: var(--navy); }
.theme-btn.btn-one:hover { color: #fff; }
.theme-btn.btn-two { background: var(--purple); color: #fff; }
.theme-btn.btn-two:hover { color: #fff; }
.theme-btn.btn-pink { background: var(--pink); color: #fff; }
.theme-btn.btn-pink:before { background: var(--purple); }
.theme-btn.btn-pink:hover { color: #fff; }

/* Section titles */
.sec-title { margin-bottom: 50px; }
.sec-title .sub-title {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  color: var(--heading);
}
.sec-title p { margin-top: 16px; max-width: 560px; }
.sec-title.light .sub-title { color: var(--pink); }
.sec-title.light h2, .sec-title.light p { color: #fff; }
.sec-title.centred p { margin-left: auto; margin-right: auto; }

/* ========== HEADER ========== */
.main-header { position: relative; z-index: 999; width: 100%; background: var(--navy); }

.header-top {
  background: var(--navy);
  padding: 0 50px;
}
.header-top .outer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
}
.header-top .info-list { display: flex; gap: 0; }
.header-top .info-list li {
  position: relative;
  margin-right: 46px;
}
.header-top .info-list li:last-child { margin-right: 0; }
.header-top .info-list li a { font-size: 17px; color: var(--muted); font-family: 'Mulish', sans-serif; }
.header-top .info-list li a:hover { color: var(--pink); }
.header-top .info-list li:before {
  content: '';
  position: absolute;
  background: #676f7c;
  width: 4px; height: 4px;
  border-radius: 50%;
  top: 12px; right: -25px;
}
.header-top .info-list li:last-child:before { display: none; }
.header-top .social-links { display: flex; align-items: center; }
.header-top .social-links li { position: relative; margin-right: 28px; }
.header-top .social-links li:last-child { margin-right: 0; }
.header-top .social-links li a { font-size: 16px; color: var(--muted); }
.header-top .social-links li a:hover { color: var(--pink); }
.header-top .social-links li h5 { font-size: 18px; line-height: 28px; color: #fff; font-weight: 600; }

.header-upper {
  background: #fff;
  border-radius: 30px 30px 0 0;
  padding: 0 50px;
}
.header-upper .outer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.header-upper .left-column, .header-upper .right-column {
  display: flex;
  align-items: center;
}
.logo-box { display: flex; align-items: center; gap: 12px; margin-right: 50px; position: relative; }
.logo-box:after {
  content: '';
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 54px;
  background: var(--border);
}
.logo-box img.mark { width: 48px; height: 48px; object-fit: contain; }
.logo-box .brand-text { display: flex; flex-direction: column; }
.logo-box .brand-text strong {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-box .brand-text span {
  font-size: 12px;
  color: var(--text);
  letter-spacing: .4px;
}
.award-box { padding-left: 20px; max-width: 280px; }
.award-box h5 { font-size: 16px; line-height: 24px; color: var(--text); font-weight: 500; }

.support-box {
  position: relative;
  padding-left: 62px;
  margin-right: 28px;
}
.support-box .icon-box {
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 48px;
  line-height: 48px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: var(--purple);
}
.support-box h6 { font-size: 14px; color: var(--text); font-weight: 500; }
.support-box h5 { font-size: 18px; line-height: 24px; font-weight: 600; }
.support-box h5 a { color: var(--navy); }
.support-box h5 a:hover { color: var(--purple); }

.header-upper .theme-btn { padding: 13px 30px; }

.header-lower { background: #fff; }
.header-lower .outer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.main-menu .navigation { display: flex; align-items: center; }
.main-menu .navigation > li { position: relative; }
.main-menu .navigation > li > a {
  display: block;
  padding: 22px 22px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Urbanist', sans-serif;
}
.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a { color: var(--purple); }
.main-menu .navigation > li > .dropdown {
  position: absolute;
  left: 0; top: 110%;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(39,46,57,.12);
  border-radius: 16px 16px 0 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s ease;
  z-index: 9;
  padding: 12px 0;
}
.main-menu .navigation > li:hover > .dropdown {
  opacity: 1; visibility: visible; transform: none; top: 100%;
}
.main-menu .navigation > li > .dropdown li a {
  display: block;
  padding: 8px 22px;
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}
.main-menu .navigation > li > .dropdown li a:hover { color: var(--purple); }

.menu-right-content { display: flex; align-items: center; gap: 28px; }
.search-btn, .nav-grid {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  background: none;
  font-family: 'Urbanist', sans-serif;
}
.search-btn:hover, .nav-grid:hover { color: var(--purple); }
.nav-grid {
  width: 44px; height: 44px;
  background: var(--light);
  border-radius: 50% 50% 0 50%;
  display: flex; align-items: center; justify-content: center;
}

.mobile-nav-toggler {
  display: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  background: none;
}

/* Sticky */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(39,46,57,.08);
  z-index: 1000;
  transform: translateY(-110%);
  transition: transform .4s ease;
}
.sticky-bar.show { transform: none; }
.sticky-bar .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 50px;
}
.sticky-bar .main-menu .navigation > li > a { padding: 12px 18px; }
.header-lower .outer-box { min-height: 72px; }

/* Search popup */
.search-popup {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.search-popup.open { display: flex; }
.search-popup .box {
  width: min(720px, 90%);
  background: #fff;
  padding: 50px;
  border-radius: 30px 30px 0 30px;
  position: relative;
}
.search-popup .close-search {
  position: absolute; top: 18px; right: 22px;
  font-size: 22px; cursor: pointer; background: none; color: var(--navy);
}
.search-popup input {
  width: 100%;
  height: 64px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 20px;
  color: #808080;
  padding-right: 50px;
}
.search-popup button {
  position: absolute; right: 50px; bottom: 66px;
  background: none; font-size: 22px; cursor: pointer; color: var(--navy);
}

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: -320px;
  width: 300px; height: 100%;
  background: #fff;
  z-index: 10001;
  padding: 30px 20px;
  overflow: auto;
  transition: left .4s ease;
  box-shadow: 20px 0 40px rgba(0,0,0,.08);
}
.mobile-menu.open { left: 0; }
.mobile-menu .close-btn { float: right; font-size: 22px; background: none; cursor: pointer; }
.mobile-menu ul { margin-top: 50px; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--navy);
}
.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,18,32,.55);
  z-index: 10000;
  display: none;
}
.menu-backdrop.open { display: block; }

/* ========== BANNER ========== */
.banner-section { position: relative; overflow: hidden; }
.banner-slide {
  position: relative;
  padding: 150px 0 190px;
  min-height: 620px;
  display: none;
}
.banner-slide.active { display: block; }
.banner-slide .image-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.15);
  transform: scale(1.08);
  animation: kenburns 14s linear forwards;
}
@keyframes kenburns { to { transform: scale(1.2); } }
.banner-slide:before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  opacity: .52;
  z-index: 1;
}
.banner-slide .content-box { position: relative; z-index: 5; max-width: 640px; }
.banner-slide h2 {
  font-size: 86px;
  line-height: 92px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}
.banner-slide p { color: #d6d6d6; font-size: 18px; max-width: 480px; margin-bottom: 28px; }
.banner-nav {
  position: absolute; right: 50px; top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex; flex-direction: column; gap: 10px;
}
.banner-nav button {
  width: 50px; height: 50px;
  border-radius: 50% 50% 0 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}
.banner-nav button:hover { background: var(--pink); }
.banner-dots {
  position: absolute; left: 50%; bottom: 40px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex; gap: 12px;
}
.banner-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.banner-dots button.active { background: var(--pink); }

/* Intro overlap cards */
.intro-section {
  position: relative;
  margin-top: -90px;
  z-index: 8;
  padding-bottom: 40px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr .9fr;
  gap: 24px;
  align-items: stretch;
}
.intro-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 50px rgba(39,46,57,.08);
  overflow: hidden;
}
.intro-card.location {
  background: var(--light);
  padding: 36px 32px;
}
.intro-card.location .pin {
  width: 64px; height: 64px;
  border-radius: 50% 50% 0 50%;
  background: var(--purple);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.intro-card.location h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.intro-card.photo img { width: 100%; height: 220px; object-fit: cover; }
.intro-card.consult {
  background: var(--purple);
  color: #fff;
  padding: 36px 32px;
}
.intro-card.consult h4 { color: #fff; font-weight: 600; font-size: 22px; margin-bottom: 10px; }
.intro-card.consult p { color: #e0d6f4; }
.intro-card.consult .theme-btn { margin-top: 18px; background: #fff; color: var(--navy); }
.intro-card.consult .theme-btn:before { background: var(--pink); }

/* About / Experts */
.about-section { padding: 110px 0 80px; }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-images .main-img {
  width: 78%;
  border-radius: 200px 200px 0 200px;
  object-fit: cover;
  height: 420px;
}
.about-images .badge {
  position: absolute;
  right: 0; bottom: 40px;
  background: var(--purple);
  color: #fff;
  padding: 28px 26px;
  border-radius: 30px 30px 0 30px;
  max-width: 220px;
}
.about-images .badge h3 { color: #fff; font-size: 42px; font-weight: 700; line-height: 1; }
.about-images .badge p { color: #e0d6f4; font-size: 15px; margin-top: 6px; }
.feature-list { margin: 22px 0 28px; }
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
}
.feature-list li:before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

/* Funfacts */
.funfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.funfact {
  background: var(--light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.funfact h3 { font-size: 36px; font-weight: 700; color: var(--purple); }
.funfact p { font-size: 15px; }
.funfact:nth-child(1) { background: var(--purple); }
.funfact:nth-child(1) h3, .funfact:nth-child(1) p { color: #fff; }
.funfact:nth-child(2) { background: var(--pink); }
.funfact:nth-child(2) h3, .funfact:nth-child(2) p { color: #fff; }
.funfact:nth-child(3) { background: var(--magenta); }
.funfact:nth-child(3) h3, .funfact:nth-child(3) p { color: #fff; }

/* Services */
.service-section { padding: 80px 0 120px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-block { border-radius: 10px 10px 0 40px; padding-top: 10px; }
.service-block.one { background: var(--purple); }
.service-block.two { background: var(--pink); }
.service-block.three { background: var(--magenta); }
.service-block .inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px 40px 40px 44px;
  min-height: 340px;
  transition: .5s;
}
.service-block.one:hover .inner { border-color: var(--purple); }
.service-block.two:hover .inner { border-color: var(--pink); }
.service-block.three:hover .inner { border-color: var(--magenta); }
.service-block .icon-box {
  position: relative;
  display: inline-block;
  font-size: 48px;
  margin-bottom: 28px;
  padding-right: 36px;
}
.service-block.one .icon-box { color: var(--purple); }
.service-block.two .icon-box { color: var(--pink); }
.service-block.three .icon-box { color: var(--magenta); }
.service-block .icon-box:before {
  content: '';
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50% 50% 0 50%;
  right: 0; bottom: 0;
  z-index: -1;
}
.service-block.one .icon-box:before { background: var(--light); }
.service-block.two .icon-box:before { background: var(--pink-bg); }
.service-block.three .icon-box:before { background: var(--magenta-bg); }
.service-block .count {
  position: absolute; right: 0; bottom: -4px;
  font-size: 18px; font-weight: 700; font-family: 'Urbanist', sans-serif;
}
.service-block h3 { font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.service-block h3 a { color: var(--navy); }
.service-block h3 a:hover { text-decoration: underline; }
.service-block .link { font-weight: 600; color: var(--navy); }
.service-block.one .link:hover { color: var(--purple); }
.service-block.two .link:hover { color: var(--pink); }
.service-block.three .link:hover { color: var(--magenta); }

/* Dark strategy */
.strategy-section {
  position: relative;
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
}
.strategy-section:after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.strategy-section .moon {
  position: absolute;
  left: 8%; top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  object-fit: cover;
  opacity: .9;
}
.strategy-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.strategy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.strategy-card {
  background: #2f3642;
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.strategy-card .num { color: var(--pink); font-weight: 700; font-family: 'Urbanist', sans-serif; margin-bottom: 8px; }
.strategy-card h4 { color: #fff; font-weight: 600; font-size: 20px; margin-bottom: 8px; }
.strategy-card p { color: var(--muted); font-size: 15px; }

/* Industries */
.industries-section { padding: 110px 0; }
.industry-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
}
.industry-nav {
  background: var(--navy);
  border-radius: 30px 30px 0 30px;
  padding: 48px 40px;
}
.industry-nav h2 { color: #fff; font-size: 42px; font-weight: 600; margin-bottom: 30px; }
.industry-nav button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 8px;
}
.industry-nav button.active { background: var(--purple); }
.industry-panel {
  background: var(--light);
  border-radius: var(--radius-card);
  padding: 48px 40px;
}
.industry-panel h3 { font-size: 28px; font-weight: 600; margin-bottom: 14px; }
.industry-panel ul { margin-top: 18px; }
.industry-panel ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.industry-panel ul li:before {
  content: '›';
  position: absolute; left: 0; color: var(--purple); font-weight: 700;
}

/* Process */
.process-section { padding: 40px 0 100px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.process-card img { width: 100%; height: 280px; object-fit: cover; }
.process-card .cap {
  position: absolute; left: 20px; bottom: 20px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 20px 20px 0 20px;
}
.process-card .cap span { color: var(--purple); font-weight: 700; font-size: 14px; }
.process-card .cap h4 { font-weight: 600; font-size: 20px; }

/* News */
.news-section { padding: 40px 0 110px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: .4s;
}
.news-card:hover { box-shadow: 0 20px 50px rgba(39,46,57,.1); }
.news-card img { width: 100%; height: 220px; object-fit: cover; }
.news-card .content { padding: 26px 24px 30px; }
.news-card .meta { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.news-card h3 { font-size: 22px; font-weight: 600; line-height: 30px; }
.news-card h3 a { color: var(--navy); }
.news-card h3 a:hover { color: var(--purple); }
.news-card .more { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--purple); }

/* Testimonials */
.testimonial-section {
  background: var(--purple);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section:before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border: 40px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.quote-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  max-width: 640px;
  margin: 0 auto;
}
.quote-card .stars { color: #f5b942; margin-bottom: 12px; }
.quote-card h3 { font-weight: 600; margin-bottom: 10px; }
.author { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.author img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.author h5 { font-weight: 600; font-size: 18px; }
.author span { font-size: 14px; color: var(--text); }
.rating-note { color: #fff; text-align: center; margin-top: 22px; opacity: .9; }

/* FAQ home */
.faq-section { padding: 110px 0; }
.faq-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.faq-image {
  position: relative;
}
.faq-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 220px 220px 0 220px;
}
.accordion .acc-item {
  background: var(--light);
  border-radius: 18px 18px 0 18px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion .acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion .acc-btn i { color: var(--purple); }
.accordion .acc-item.active .acc-btn { color: var(--purple); }
.accordion .acc-body {
  display: none;
  padding: 0 22px 18px;
}
.accordion .acc-item.active .acc-body { display: block; }

/* Newsletter home */
.newsletter-band {
  position: relative;
  background: var(--light);
  padding: 80px 0;
  overflow: hidden;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.newsletter-inner h2 { font-size: 48px; font-weight: 600; margin-bottom: 16px; }
.newsletter-inner form {
  display: flex;
  flex-wrap: wrap;
  max-width: 560px;
  margin-top: 24px;
  align-items: flex-start;
}
.newsletter-inner form .success-msg { width: 100%; }
.newsletter-inner form .form-group { flex: 1; min-width: 180px; }
.newsletter-inner input[type="email"] {
  width: 100%;
  height: 64px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 32px 0 0 32px;
  padding: 0 24px;
}
.newsletter-inner .theme-btn {
  border-radius: 0 32px 0 0;
  background: var(--purple);
  color: #fff;
  height: 64px;
  padding: 16px 28px;
}
.blob-art {
  position: relative;
  min-height: 280px;
}
.blob-art .blob {
  width: 260px; height: 260px;
  background: var(--pink);
  border-radius: 50%;
  margin-left: auto;
}
.blob-art img {
  position: absolute;
  right: 20px; bottom: 0;
  width: 240px;
  border-radius: 20px;
}

/* CTA */
.cta-section { padding: 40px 0 0; }
.cta-inner {
  position: relative;
  background: var(--navy);
  border-radius: 30px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: .8fr 1.4fr .8fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}
.cta-inner img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
}
.cta-inner h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 52px;
  margin-bottom: 14px;
}
.cta-inner p { color: var(--muted); margin-bottom: 22px; }
.cta-bubble {
  position: absolute;
  right: 28%; top: 28px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 20px 20px 20px 0;
  max-width: 150px;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
}

/* ========== FOOTER ========== */
.main-footer { background: #fff; padding-top: 90px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { width: 48px; height: 48px; }
.footer-logo strong { font-size: 24px; font-weight: 700; font-family: 'Urbanist', sans-serif; color: var(--navy); }
.main-footer .copyright h5 { font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.footer-about { max-width: 420px; }
.newsletter-widget h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.newsletter-widget p { margin-bottom: 22px; max-width: 380px; }
.newsletter-widget .form-group {
  position: relative;
  max-width: 480px;
  padding-right: 160px;
}
.newsletter-widget input[type="email"] {
  width: 100%;
  height: 60px;
  border: 1px solid var(--border);
  border-radius: 30px 30px 0 30px;
  padding: 10px 24px;
  color: #68646c;
}
.newsletter-widget .theme-btn {
  position: absolute; top: 0; right: 0;
  width: 160px;
  border-radius: 0 30px 0 0;
  padding: 15px 20px;
  background: var(--pink);
  color: #fff;
}
.newsletter-widget .theme-btn:before { background: var(--purple); }

.widget-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 30px;
  padding: 50px 0 80px;
}
.widget-title {
  padding-bottom: 11px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.widget-title h3 { font-size: 22px; font-weight: 600; }
.links-widget li { margin-bottom: 10px; }
.links-widget a {
  color: var(--text);
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
}
.links-widget a:hover { color: var(--purple); }
.links-widget a:before { content: '> '; color: var(--purple); font-weight: 700; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50% 50% 0 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.social-row a:hover { background: var(--purple); color: #fff; }
.pop-post { display: flex; gap: 12px; margin-bottom: 16px; }
.pop-post img { width: 70px; height: 70px; object-fit: cover; border-radius: 16px 16px 0 16px; }
.pop-post h6 { font-size: 15px; font-weight: 600; line-height: 22px; }
.pop-post h6 a { color: var(--navy); }
.pop-post h6 a:hover { color: var(--purple); }
.pop-post span { font-size: 12px; color: var(--pink); font-weight: 700; letter-spacing: 1px; }

.footer-bottom {
  background: var(--navy);
  padding: 18px 0;
}
.footer-bottom .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 15px;
}
.footer-bottom a { color: var(--muted); font-size: 15px; margin-left: 22px; font-family: 'Mulish', sans-serif; }
.footer-bottom a:hover { color: var(--pink); }
.back-top {
  position: fixed; right: 24px; bottom: 24px;
  background: var(--pink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 20px 20px 0 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 50;
  display: none;
}
.back-top.show { display: inline-block; }

/* Page title */
.page-title {
  position: relative;
  padding: 160px 0 40px;
  overflow: hidden;
}
.page-title .bg-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.25);
}
.page-title .bg-layer:before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  opacity: .5;
}
.page-title h1 {
  position: relative;
  font-size: 72px;
  line-height: 80px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 90px;
}
.bread-crumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
}
.bread-crumb a { color: #fff; }
.bread-crumb a:hover { color: var(--pink); }

/* Generic content */
.section { padding: 100px 0; }
.legal-content h2 { font-size: 28px; font-weight: 600; margin: 32px 0 12px; }
.legal-content h3 { font-size: 22px; font-weight: 600; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content ul li { list-style: disc; margin-bottom: 8px; color: var(--text); }

/* Forms */
.form-card {
  background: var(--light);
  border-radius: var(--radius-card);
  padding: 40px;
}
.form-dark {
  background: var(--navy);
  color: #fff;
  border-radius: 30px;
  padding: 50px 40px;
}
.form-dark h2, .form-dark h3, .form-dark label { color: #fff; }
.contact-form-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: start;
}
.form-dark label,
.form-dark .form-group label { font-size: 15px; color: #f4f1fa; margin-bottom: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { margin-bottom: 4px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-control, select.form-control, textarea.form-control {
  width: 100%;
  height: 56px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px 28px 0 28px;
  padding: 12px 20px;
  font-size: 16px;
  color: var(--navy);
  font-family: 'Mulish', sans-serif;
}
textarea.form-control { height: 140px; resize: vertical; border-radius: 24px 24px 0 24px; }
.form-dark .form-control {
  background: #3a4250;
  border: 1px solid #4a5568;
  color: #fff;
}
.form-dark .form-control::placeholder { color: #9ca4af; }
.form-control.error { border-color: var(--pink); }
.error-text { color: var(--pink); font-size: 13px; min-height: 18px; display: block; }
.success-msg {
  display: none;
  background: #e8f8f2;
  color: #1d7a55;
  padding: 16px 20px;
  border-radius: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}
.success-msg.show { display: block; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.check-row input { margin-top: 6px; }

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(39,46,57,.05);
}
.info-card h3 { font-weight: 600; margin-bottom: 12px; }
.info-card .icon {
  width: 56px; height: 56px;
  border-radius: 50% 50% 0 50%;
  background: var(--light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 20px 28px;
  text-align: center;
  transition: .4s;
}
.team-card:hover { box-shadow: 0 20px 50px rgba(39,46,57,.1); }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px 24px 0 24px;
  margin-bottom: 18px;
}
.team-card h3 { font-size: 22px; font-weight: 600; }
.team-card span { color: var(--purple); font-size: 14px; font-weight: 600; }
.team-card p { margin-top: 8px; font-size: 15px; }

/* Projects */
.filter-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tabs button {
  background: var(--light);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 24px 24px 0 24px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  cursor: pointer;
}
.filter-tabs button.active, .filter-tabs button:hover { background: var(--purple); color: #fff; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-item {
  position: relative;
  border-radius: 40px 40px 0 40px;
  overflow: hidden;
}
.project-item img { width: 100%; height: 260px; object-fit: cover; }
.project-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(39,46,57,.8), transparent);
  display: flex; align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: .4s;
}
.project-item:hover .overlay { opacity: 1; }
.project-item h4 { color: #fff; font-weight: 600; }

/* Blog layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1.6fr .8fr;
  gap: 40px;
}
.blog-list .news-card { display: grid; grid-template-columns: 220px 1fr; margin-bottom: 24px; }
.blog-list .news-card img { height: 100%; min-height: 180px; }
.sidebar-widget {
  background: var(--light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-widget h3 { font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.cat-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a {
  background: #fff;
  padding: 6px 14px;
  border-radius: 16px 16px 0 16px;
  font-size: 14px;
}
.promo-widget {
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 32px 24px;
}
.promo-widget h3 { color: #fff; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  background: #fff;
}
.price-card.featured { background: var(--navy); }
.price-card.featured h3, .price-card.featured h2, .price-card.featured p, .price-card.featured li { color: #fff; }
.price-card h5 { color: var(--pink); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px; }
.price-card h2 { font-size: 48px; font-weight: 700; margin: 10px 0; }
.price-card ul { margin: 20px 0 28px; }
.price-card li { padding: 8px 0 8px 22px; position: relative; }
.price-card li:before { content: '✓'; position: absolute; left: 0; color: var(--purple); }
.price-card.featured li:before { color: var(--pink); }

/* Choose us */
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.choose-card {
  background: #2f3642;
  border-radius: var(--radius-alt);
  padding: 32px 28px;
  color: #fff;
}
.choose-card .num { color: var(--pink); font-weight: 700; }
.choose-card h3 { color: #fff; font-weight: 600; margin: 8px 0; }
.choose-card p { color: var(--muted); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 40px; }
.pagination a, .pagination span {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50% 50% 0 50%;
  background: var(--light);
  color: var(--navy);
  font-weight: 600;
}
.pagination a.active, .pagination a:hover { background: var(--purple); color: #fff; }

.article-body { max-width: 820px; }
.article-body p { margin-bottom: 16px; }
.article-body h2 { font-size: 28px; font-weight: 600; margin: 28px 0 12px; }
.article-hero { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-card); margin-bottom: 30px; }

/* Trust logos */
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.trust-item {
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 22px 10px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: 1px;
}

/* FAQ page */
.faq-page-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
}

/* Responsive */
@media (max-width: 1199px) {
  .banner-slide h2 { font-size: 64px; line-height: 72px; }
  .page-title h1 { font-size: 52px; }
  .header-top, .header-upper, .header-lower .outer-box, .sticky-bar .inner { padding-left: 20px; padding-right: 20px; }
  .intro-grid, .about-wrap, .service-grid, .strategy-grid, .industries-section .industry-layout,
  .process-grid, .news-grid, .faq-layout, .newsletter-inner, .cta-inner,
  .footer-top, .widget-section, .team-grid, .project-grid, .blog-layout, .faq-page-grid, .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner, .widget-section { grid-template-columns: 1fr 1fr; }
  .strategy-section .moon { opacity: .25; }
}

@media (max-width: 991px) {
  .header-top { display: none; }
  .header-upper .award-box, .header-upper .support-box { display: none; }
  .main-menu { display: none; }
  .mobile-nav-toggler { display: block; }
  .menu-right-content .search-btn span { display: none; }
  .banner-slide { padding: 110px 0 150px; min-height: 480px; }
  .banner-slide h2 { font-size: 46px; line-height: 54px; }
  .sec-title h2 { font-size: 36px; line-height: 44px; }
  .intro-grid, .about-wrap, .service-grid, .strategy-grid, .industry-layout,
  .process-grid, .news-grid, .faq-layout, .newsletter-inner, .cta-inner,
  .footer-top, .widget-section, .team-grid, .project-grid, .blog-layout,
  .faq-page-grid, .pricing-grid, .contact-cards, .choose-grid, .form-grid, .funfacts, .trust-row,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
  .blog-list .news-card { grid-template-columns: 1fr; }
  .footer-bottom .inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom a { margin: 0 8px; }
  .page-title h1 { font-size: 42px; line-height: 50px; margin-bottom: 50px; }
  .cta-bubble { display: none; }
}

@media (max-width: 575px) {
  .header-upper { padding: 0 12px; border-radius: 16px 16px 0 0; }
  .logo-box .brand-text strong { font-size: 16px; }
  .theme-btn { padding: 12px 22px; font-size: 16px; }
  .banner-slide h2 { font-size: 36px; line-height: 42px; }
  .about-images .main-img { width: 100%; height: 300px; }
}
