/* =========================================================
   RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  --navy: #0c2f52;
  --navy-dark: #08223c;
  --gold: #b6944b;
  --gold-dark: #987a3e;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-bg: #f3f4f6;
  --border: #dde3ea;
  --text: #18222d;
  --muted: #5d6875;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   BASE
========================================================= */
html {
  scroll-behavior: auto;
}

section[id] {
  scroll-margin-top: 0;
}

body {
  padding-top: 0;
  font-family: "Open Sans", sans-serif;
  background: #ececec;
  color: var(--text);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

/* =========================================================
   LAYOUT
========================================================= */
.page-wrapper {
  max-width: 1200px;
  margin: 24px auto;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.container {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

/* =========================================================
   SHARED SECTION STYLES
========================================================= */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.light-label {
  color: #e5c989;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e8ebef;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.logo-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--navy-dark);
}

.logo-text p {
  font-size: 0.68rem;
  margin-top: 4px;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

/* =========================================================
   NAVIGATION
========================================================= */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.main-nav a,
.main-nav a.nav-link {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a.nav-link:hover,
.main-nav a.nav-link.active {
  color: var(--gold-dark);
}

/* =========================================================
   HAMBURGER MENU
========================================================= */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
  min-height: 52px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(182, 148, 75, 0.16);
}

.btn-white {
  background: var(--white);
  color: var(--navy-dark);
}

.btn-white:hover {
  background: #e9eef3;
}

.small-btn {
  padding: 11px 16px;
  font-size: 0.85rem;
}

.full-width-btn {
  width: 100%;
  text-align: center;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 34, 60, 0.92) 0%,
    rgba(8, 34, 60, 0.82) 36%,
    rgba(8, 34, 60, 0.38) 62%,
    rgba(8, 34, 60, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.hero-text-box {
  max-width: 640px;
  color: var(--white);
  padding: 50px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #e5c989;
  margin-bottom: 14px;
}

.hero-text-box h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.4rem;
  line-height: 1.04;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-subtext {
  max-width: 620px;
  font-size: 1.06rem;
  color: #f0f4f8;
  margin-bottom: 16px;
}

.hero-small {
  max-width: 600px;
  font-size: 0.98rem;
  color: #dce6ee;
  margin-bottom: 28px;
}

.hero-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 600px;
}

/* =========================================================
   ABOUT
========================================================= */
.intro-section {
  padding: 80px 0 50px;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.intro-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
  color: var(--navy-dark);
  margin-bottom: 18px;
}

.intro-text p {
  color: var(--muted);
  margin-bottom: 14px;
}

.intro-points {
  display: grid;
  gap: 18px;
}

.point-card {
  padding: 24px;
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}

.point-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.point-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================================
   SERVICES
========================================================= */
.services-section {
  padding: 40px 0 80px;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-top-line {
  height: 14px;
  background: var(--navy);
}

.card-bottom-line {
  height: 5px;
  background: var(--gold);
}

.card-body {
  padding: 28px 22px 24px;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f2e7;
  color: var(--navy-dark);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card-body h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.card-body ul {
  margin: 0 0 18px 18px;
  color: var(--muted);
}

.card-body li {
  margin-bottom: 8px;
  font-size: 0.94rem;
}

.card-body a {
  color: var(--gold-dark);
  font-weight: 700;
}

/* =========================================================
   PLANS
========================================================= */
.plans-section {
  padding: 80px 0;
  background: var(--white);
}

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

.plan-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.featured-plan {
  background: var(--off-white);
  color: var(--text);
  border: 4px solid var(--navy-dark);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.featured-plan h3,
.featured-plan .plan-price {
  color: var(--navy-dark);
}

.featured-plan p,
.featured-plan li {
  color: var(--muted);
}

.featured-plan .plan-tag {
  background: var(--navy);
  color: var(--white);
}

.plan-tag {
  display: inline-block;
  width: fit-content;
  padding: 6px 10px;
  background: #f2e4c0;
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.plan-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.plan-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.plan-card ul {
  margin: 0 0 22px 18px;
  flex-grow: 1;
}

.plan-card li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* =========================================================
   PROJECTS
========================================================= */
.projects-section {
  padding: 80px 0;
  background: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.project-card {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.project-card-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.project-card-gallery .project-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.project-card-gallery .project-img:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.project-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 22px;
}

/* =========================================================
   LIGHTBOX
========================================================= */
.project-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 30px;
}

.project-lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: #fff;
  font-size: 34px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  opacity: 0.8;
}

/* =========================================================
   RETAINER
========================================================= */
.retainer-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.retainer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.retainer-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.retainer-text p {
  color: var(--muted);
  margin-bottom: 14px;
}

.retainer-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.retainer-point {
  background: var(--white);
  border-radius: 6px;
  padding: 18px;
  border-left: 4px solid var(--gold);
}

.retainer-point strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.retainer-point span {
  color: var(--muted);
  font-size: 0.93rem;
}

.retainer-box {
  background: var(--navy-dark);
  color: var(--white);
  padding: 30px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.retainer-box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.retainer-box p,
.retainer-box li {
  color: #dce7f0;
}

.retainer-box p {
  margin-bottom: 16px;
}

.retainer-box ul {
  margin: 0 0 24px 18px;
}

.retainer-box li {
  margin-bottom: 8px;
}

/* =========================================================
   AUDIT
========================================================= */
.audit-section {
  padding: 80px 0;
  background: var(--white);
}

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

.audit-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}

.audit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.audit-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.audit-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* =========================================================
   PRICING
========================================================= */
.pricing-section {
  padding: 80px 0;
  background: var(--off-white);
}

.pricing-table {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-head {
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.pricing-note {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* =========================================================
   WHY US
========================================================= */
.why-section {
  padding: 80px 0;
  background: var(--white);
}

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

.why-card {
  background: var(--light-bg);
  padding: 22px 18px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  font-weight: 600;
  color: var(--navy-dark);
}

/* =========================================================
   TEAM
========================================================= */
.founders-section {
  padding: 80px 0;
  background: var(--off-white);
}

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

.founder-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-image {
  width: 100%;
  height: 320px;
  background: #e9edf2;
}

.founder-info {
  padding: 24px;
}

.founder-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.founder-info p {
  color: var(--muted);
}

.founder-email {
  margin-top: 12px;
  font-weight: 700;
  color: var(--navy-dark);
}

/* =========================================================
   CTA
========================================================= */
.cta-section {
  padding: 80px 0;
  background: var(--navy-dark);
}

.cta-box {
  text-align: center;
  max-width: 850px;
}

.cta-box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-box p {
  color: #dce7f0;
  max-width: 760px;
  margin: 0 auto 26px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.cta-buttons .btn {
  flex: 0 1 320px;
  max-width: 320px;
}

/* =========================================================
   CONTACT STRIP
========================================================= */
.contact-strip {
  background: var(--gold);
  padding: 14px 0;
}

.contact-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-strip-inner span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.94rem;
}

.contact-strip-inner a {
  color: var(--white);
  display: inline-block;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.contact-strip-inner a:hover {
  color: var(--navy-dark);
  transform: translateY(-1px);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--navy);
  padding: 20px 0;
}

.footer-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-inner.single-column {
  justify-content: center;
  text-align: center;
}

.site-footer p {
  color: #dce7f0;
  font-size: 0.9rem;
}

.footer-policy-link {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d48a;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: underline;
  letter-spacing: 0.5px;
}

.footer-policy-link:hover {
  color: #ffffff;
}

/* =========================================================
   FOOTER POLICY LINK
========================================================= */

.footer-policy-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

/* Hover effect */
.footer-policy-link:hover {
  color: var(--white);
}

/* =========================================================
   PRIVACY POPUP
========================================================= */
.privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  width: calc(100% - 40px);
  background: rgba(12, 47, 82, 0.98);
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 20px;
}

.privacy-popup-content p {
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #f1f4f8;
}

.privacy-popup-content a {
  color: #e5c989;
  text-decoration: underline;
}

.privacy-popup-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.privacy-popup-buttons button {
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
}

#acceptPrivacy {
  background: #b6944b;
  color: #ffffff;
}

#acceptPrivacy:hover {
  background: #987a3e;
}

.privacy-secondary {
  background: #ffffff;
  color: #08223c;
}

.privacy-secondary:hover {
  background: #e9eef3;
}

/* =========================================================
   PRIVACY POLICY PAGE
========================================================= */
.policy-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 80px 0 60px;
}

.policy-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 10px;
}

.policy-date {
  font-size: 1rem;
  color: #dce7f0;
}

.policy-section {
  padding: 70px 0;
  background: var(--off-white);
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.policy-intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.policy-block {
  margin-bottom: 30px;
}

.policy-block h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.policy-block p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.7;
}

.policy-block strong {
  color: var(--text);
}

.policy-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.policy-contact {
  background: var(--light-bg);
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.policy-contact a {
  color: var(--gold-dark);
  font-weight: 700;
}

.policy-back {
  margin-top: 30px;
  text-align: center;
}

/* =========================================================
   REVIEWS PAGE
========================================================= */
.reviews-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 90px 0 70px;
}

.reviews-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 16px;
}

.reviews-hero-text {
  max-width: 760px;
  color: #dce7f0;
  font-size: 1.05rem;
}

.reviews-intro {
  padding: 70px 0 20px;
  background: var(--white);
}

.reviews-section {
  padding: 20px 0 80px;
  background: var(--off-white);
}

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

.review-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.review-stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.review-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.review-card span {
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

/* =========================================================
   REVIEW CTA SECTION
========================================================= */
.review-cta-section {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.review-cta-box {
  max-width: 720px;
  margin: 0 auto;
}

.review-cta-box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.review-cta-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.review-cta-main-btn {
  min-width: 240px;
  min-height: 56px;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

@media (max-width: 640px) {
  .reviews-hero {
    padding: 70px 0 50px;
  }

  .reviews-hero h1 {
    font-size: 2.2rem;
  }

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

/* =========================================================
   REVIEW POPUP
========================================================= */
.review-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.review-popup.active {
  display: flex;
}

.review-popup-box {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: var(--shadow);
}

.review-popup-box input[type="date"] {
  color: var(--text);
}

.review-popup-box h2 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 18px;
  color: var(--navy-dark);
}

.review-popup-box input,
.review-popup-box select,
.review-popup-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
}

.review-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* -------- NAV BREAKPOINT -------- */
@media (max-width: 1250px) {
  .header-inner {
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    width: 100%;
    display: none;
    background: var(--white);
    border-top: 1px solid #e8ebef;
    margin-top: 12px;
    padding-top: 12px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a.nav-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eef1f4;
    font-size: 1rem;
  }

  .logo {
    max-width: calc(100% - 70px);
  }

  .logo-text h2 {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.62rem;
  }
}

/* -------- TABLET / SMALL LAPTOP -------- */
@media (max-width: 1100px) {
  .hero-text-box h1 {
    font-size: 2.9rem;
  }

  .service-grid,
  .plan-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .retainer-grid,
  .intro-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }
}

/* -------- TABLET -------- */
@media (max-width: 900px) {
  .hero {
    min-height: 700px;
  }

  .hero-content {
    min-height: 700px;
  }

  .hero-text-box h1 {
    font-size: 2.4rem;
  }

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

  .retainer-points,
  .service-grid,
  .plan-grid,
  .audit-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------- POLICY PAGE -------- */
@media (max-width: 768px) {
  .policy-hero {
    padding: 60px 0 45px;
  }

  .policy-hero h1 {
    font-size: 2.2rem;
  }

  .policy-card {
    padding: 24px;
  }

  .policy-block h2 {
    font-size: 1.2rem;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 640px) {
  .page-wrapper {
    margin: 0;
  }

  .container {
    width: 90%;
  }

  .hero-buttons {
    grid-template-columns: 1fr;
  }

  .hero-text-box h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .intro-text h2,
  .retainer-text h2,
  .cta-box h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 100%;
    flex: unset;
  }

  .contact-strip {
    padding: 22px 0;
  }

  .contact-strip-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }

  .contact-strip-inner span {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
  }


  .privacy-popup {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
    max-width: none;
  }

  .project-card {
    padding: 18px;
  }

  .project-card-gallery {
    gap: 8px;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 36px;
  }
}
