@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ============================================
   PROFITS FOR PARTNERS — Main Stylesheet
   ============================================ */

:root {
  --navy:        #1C2B4A;
  --navy-dark:   #111d32;
  --navy-mid:    #2a3d6b;
  --gold:        #B8962E;
  --gold-light:  #d4af5a;
  --cream:       #f5edd8;
  --bg:          #F8F6F2;
  --text:        #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #767676;
  --white:       #ffffff;
  --border:      #e0d9ce;
  --shadow:      0 2px 20px rgba(0,0,0,0.08);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, sans-serif;

  --max-w:        1100px;
  --section-pad:  84px 24px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 1.2em; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

/* ====================================================
   NAVIGATION
   ==================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > li > a {
  padding: 8px 11px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 3px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--navy); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 3px !important;
  margin-left: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.65em; opacity: 0.55; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  min-width: 248px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--bg);
  color: var(--navy);
  padding-left: 24px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   HERO — HOMEPAGE
   ==================================================== */
.hero {
  background: var(--navy);
  padding: 108px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e1829 0%, #1C2B4A 55%, #2a3d6b 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}

/* ====================================================
   PAGE HERO — inner pages
   ==================================================== */
.page-hero {
  background: var(--navy);
  padding: 64px 24px 68px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.page-hero .hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 0;
}
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ====================================================
   SECTION WRAPPERS
   ==================================================== */
.section { padding: var(--section-pad); }
.section-light  { background: var(--bg); }
.section-white  { background: var(--white); }
.section-navy   { background: var(--navy); }
.section-dark   { background: var(--navy-dark); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.gold-rule {
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ====================================================
   VALUE PROPS
   ==================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.value-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.value-card p  { font-size: 0.95rem; margin: 0; }

/* ====================================================
   SERVICES GRID
   ==================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.08rem; }
.service-card p  { font-size: 0.92rem; flex: 1; margin-bottom: 20px; }
.card-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: opacity 0.15s;
  margin-top: auto;
  display: inline-block;
}
.card-link:hover { opacity: 0.7; }
.card-link::after { content: ' →'; }

/* 7th card centering in 3-col grid */
.services-grid > .service-card:nth-child(7) {
  grid-column: 2;
}

/* ====================================================
   FEATURE TESTIMONIAL
   ==================================================== */
.testimonial-feature {
  background: var(--navy);
  padding: 88px 24px;
  text-align: center;
}
.testimonial-feature blockquote {
  max-width: 740px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 28px;
  display: block;
  opacity: 0.8;
}
.testimonial-feature blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 28px;
}
.testimonial-feature cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ====================================================
   ABOUT TEASER (homepage)
   ==================================================== */
.about-teaser-section {
  background: var(--bg);
}
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}
.about-teaser-text h2 { margin-bottom: 20px; }
.about-teaser-text p  { margin-bottom: 16px; }
.about-teaser-text .btn { margin-top: 8px; }

.about-stats {
  background: var(--navy);
  border-radius: 6px;
  padding: 48px 44px;
  color: var(--white);
}
.stat-item { margin-bottom: 36px; }
.stat-item:last-child { margin-bottom: 0; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: var(--gold);
  padding: 76px 24px;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}
.about-main h2 {
  margin: 44px 0 16px;
  font-size: 1.5rem;
}
.about-main h2:first-child { margin-top: 0; }
.about-main ul {
  margin: 4px 0 16px;
}
.about-main ul li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 0.96rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.about-main ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.about-sidebar {
  position: sticky;
  top: 88px;
}
.credentials-box {
  background: var(--navy);
  color: var(--white);
  padding: 36px 32px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.credentials-box h3 {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 24px;
}
.credentials-box ul li {
  padding: 13px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.5;
}
.credentials-box ul li:last-child { border-bottom: none; }
.credentials-box ul li strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1px;
}
.sidebar-cta-box {
  background: var(--bg);
  border-radius: 4px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.sidebar-cta-box h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.sidebar-cta-box p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.sidebar-cta-box .btn { width: 100%; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.diff-item {
  background: var(--bg);
  padding: 22px 20px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.diff-item p { font-size: 0.9rem; margin: 0; }

/* ====================================================
   SERVICES OVERVIEW PAGE
   ==================================================== */
.services-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.services-intro p { font-size: 1.05rem; }

/* ====================================================
   SERVICE DETAIL PAGES
   ==================================================== */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}
.service-detail-main h2 {
  margin: 40px 0 14px;
  font-size: 1.4rem;
}
.service-detail-main h2:first-child { margin-top: 0; }
.service-detail-main p { font-size: 0.97rem; }
.service-detail-main ul {
  margin: 8px 0 20px;
}
.service-detail-main ul li {
  padding: 9px 0 9px 22px;
  position: relative;
  font-size: 0.94rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.service-detail-main ul li:last-child { border-bottom: none; }
.service-detail-main ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8em;
  top: 11px;
}

.service-sidebar {
  position: sticky;
  top: 88px;
}
.sidebar-box {
  background: var(--bg);
  border-radius: 4px;
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.sidebar-box h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-nav-list li a {
  display: block;
  padding: 9px 0;
  font-size: 0.89rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}
.sidebar-nav-list li:last-child a { border-bottom: none; }
.sidebar-nav-list li a:hover  { color: var(--navy); padding-left: 4px; }
.sidebar-nav-list li a.active { color: var(--navy); font-weight: 700; }

.sidebar-consult {
  background: var(--navy);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
}
.sidebar-consult h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
}
.sidebar-consult p {
  color: rgba(255,255,255,0.68);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.sidebar-consult .btn { width: 100%; }

/* ====================================================
   TESTIMONIALS PAGE
   ==================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px 32px;
  position: relative;
}
.tcard::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 26px;
  opacity: 0.3;
}
.tcard blockquote {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.72;
  margin-bottom: 20px;
}
.tcard cite {
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}
.tcard .cite-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 3px;
}
.rep-work-note {
  background: var(--navy);
  border-radius: 4px;
  padding: 32px 40px;
  margin-top: 44px;
  text-align: center;
}
.rep-work-note p {
  color: rgba(255,255,255,0.72);
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}
.contact-form-area h2 { margin-bottom: 8px; font-size: 1.8rem; }
.contact-form-area > p { margin-bottom: 36px; font-size: 1.02rem; }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.12);
}
.form-group textarea { height: 160px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text span {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.contact-item-text a:hover { color: var(--gold); }

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
}
.linkedin-btn:hover { border-color: var(--navy); background: var(--bg); }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 68px 24px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.3fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand .logo-main {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 3px;
}
.footer-brand .logo-sub {
  display: block;
  color: rgba(255,255,255,0.38);
  font-size: 0.62rem;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}
.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-line {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 9px;
  line-height: 1.55;
}
.footer-contact-line a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-contact-line a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .value-grid       { grid-template-columns: 1fr 1fr; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid > .service-card:nth-child(7) { grid-column: auto; }
  .about-teaser     { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .about-layout     { grid-template-columns: 1fr; }
  .about-sidebar    { position: static; }
  .contact-layout   { grid-template-columns: 1fr; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar  { position: static; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .diff-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { padding: 12px 24px; border-radius: 0; display: block; }
  .nav-cta {
    margin: 10px 20px 0 !important;
    width: calc(100% - 40px) !important;
    display: block !important;
  }
  .nav-toggle { display: flex; }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    min-width: 100%;
    display: none;
  }
  .dropdown.open { display: block; }
  .has-dropdown:hover .dropdown { opacity: 1; transform: none; }
  .dropdown li a { padding: 10px 24px 10px 40px; }

  .hero { padding: 80px 24px 88px; }
  .hero-actions { flex-direction: column; align-items: center; }

  .value-grid       { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }
  .about-teaser     { grid-template-columns: 1fr; }
}
