/* ================================================
   P&A MARKETING AGENCY — styles.css
   Shared across all pages
   ================================================ */

/* 1. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* 2. RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* 3. CSS VARIABLES */
:root {
  --black:        #0D0D0D;
  --white:        #FFFFFF;
  --off-white:    #F5F5F3;
  --blue:         #1A56DB;
  --blue-hover:   #1344B5;
  --charcoal:     #1A1A1A;
  --body-text:    #374151;
  --muted:        #6B7280;
  --border:       #E5E7EB;
  --card-bg:      #FFFFFF;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;

  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.13);

  --nav-height:   72px;
  --transition:   0.3s ease;
}

/* 4. BASE */
body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 5. LAYOUT */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section     { padding: 100px 0; }
.section-sm  { padding: 64px 0; }

/* 6. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--black);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1rem; letter-spacing: 0; }
p  { font-size: 1rem; line-height: 1.75; color: var(--body-text); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

/* 7. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}

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

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

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* 8. NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  height: 62px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

/* TEXT FALLBACK — shown if logo.jpg is missing; hide once logo is added */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--blue); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu-phone {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.5rem;
}
.mobile-menu-phone a { font-size: 1rem; color: var(--muted); }

/* 9. PAGE HERO (interior pages) */
.page-hero {
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 72px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

/* 10. SECTION HEADERS */
.section-header { margin-bottom: 3.5rem; }
.section-header.center {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.9rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* 11. HERO (homepage) */
.hero {
  padding-top: calc(var(--nav-height) + 88px);
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-content h1 { margin-bottom: 1.4rem; }
.hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
  max-width: 430px;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-trust-dots {
  display: flex;
}
.hero-trust-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--black);
  margin-left: -8px;
}
.hero-trust-dot:first-child { margin-left: 0; }
.hero-trust-text {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-trust-text strong { color: var(--black); }

.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--off-white);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 14s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Floating card over hero image */
.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 200px;
}
.hero-float-icon {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.hero-float-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
  font-weight: 700;
}
.hero-float-label span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* 12. STATS BAR */
.stats-bar { background: var(--black); padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number sup { font-size: 1.5rem; color: var(--blue); }
.stat-suffix { color: var(--blue); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* 13. SERVICE CARDS (homepage overview) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--off-white);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body { padding: 1.75rem; }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 0.55rem; }
.service-card-body p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.65rem; }

/* 14. PARTNER / CLIENT CARDS */
.partners-section { background: var(--off-white); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.partner-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.partner-logo-wrap {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* IMAGE PLACEHOLDER: replace the emoji with <img src="partner-ozshine-logo.jpg"> once you have the logo */
.partner-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-logo-placeholder {
  font-size: 1.5rem;
}
.partner-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.partner-tag {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}
.partner-quote {
  font-size: 0.91rem;
  color: var(--body-text);
  font-style: italic;
  line-height: 1.7;
  border-left: 3px solid var(--blue);
  padding-left: 1rem;
}

/* 15. FAQ ACCORDION */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1rem;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.4rem;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
}

/* 16. CTA BANNER */
.cta-banner { background: var(--black); padding: 80px 0; }
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 480px;
  margin-bottom: 0.5rem;
}
.cta-banner-text p { color: rgba(255,255,255,0.5); font-size: 1rem; }

/* 17. FOOTER */
.footer {
  background: #0A0A0A;
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
  /* Invert to white for dark footer */
  filter: invert(1);
}
.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.9rem;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.social-row { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  overflow: hidden;
}
.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  /* Social icon images should be white; if they're dark, use filter below */
}
.social-btn:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.footer-contact-row .icon { color: var(--blue); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a,
.footer-contact-row span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  line-height: 1.55;
}
.footer-contact-row a:hover { color: var(--white); }

/* 23. SERVICES CONTACT SECTION */
.contact-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.contact-panel-copy {
  max-width: 720px;
  margin-bottom: 2rem;
}

.contact-panel-copy h2 {
  margin-bottom: 0.8rem;
}

.contact-panel-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 58ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 210px;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 86, 219, 0.18);
}

.contact-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.contact-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.contact-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--black);
  line-height: 1.25;
}

.contact-card-email strong {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-card span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card-static {
  cursor: default;
}

.contact-card-static:hover {
  transform: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  border-color: var(--border);
}

.contact-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.2); }

/* 18. PRICING CARDS (services page) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--black);
  border-width: 2px;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.pricing-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.65; }
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}
.pricing-amount .figure {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.pricing-amount .period { font-size: 0.9rem; color: var(--muted); }
.pricing-alt {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.pricing-features { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.pricing-features li {
  font-size: 0.9rem;
  color: var(--body-text);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 19. GUARANTEE SECTION */
.guarantee-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.guarantee-icon {
  width: 96px;
  height: 96px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.75rem;
}
.guarantee-inner h2 { margin-bottom: 0.85rem; }
.guarantee-inner p { color: var(--muted); font-size: 1.05rem; max-width: 480px; }

/* 20. REVIEW CARDS (services page) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 1rem; }
.review-text {
  font-size: 0.92rem;
  color: var(--body-text);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.review-name { font-size: 0.88rem; font-weight: 600; color: var(--black); }
.review-biz  { font-size: 0.78rem; color: var(--muted); }

/* 21. ABOUT PAGE */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off-white);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.pillar {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.pillar-icon { font-size: 1.75rem; margin-bottom: 0.65rem; }
.pillar h4 { font-size: 0.92rem; margin-bottom: 0.35rem; }
.pillar p  { font-size: 0.8rem; color: var(--muted); }

.values-section { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.value-card p  { font-size: 0.9rem; color: var(--muted); }

/* 22. MAP SECTION */
.map-section { background: var(--off-white); }
.map-frame {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.05);
}

/* 24. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* 25. RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-inner  { gap: 2.5rem; }
  .about-split { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-height) + 48px); padding-bottom: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-float-card { left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.5rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .services-grid,
  .partners-grid,
  .pricing-grid,
  .reviews-grid,
  .about-split,
  .about-pillars,
  .values-grid  { grid-template-columns: 1fr; }

  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-banner-inner { flex-direction: column; }
  .cta-banner-inner .btn { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-actions .btn { width: 100%; justify-content: center; }
}
