/* ===================================================================
   Buanda – Main Stylesheet
   Primary color palette derived from logo:
     Gold:        #B7893A  (main brand)
     Gold Dark:   #8C6420  (hover / deep accent)
     Gold Light:  #D4AA6A  (highlights)
     Gold Pale:   #F5EDD8  (light bg tints)
     Dark:        #1C1C1E  (text / footer)
     Mid:         #3A3A3C  (secondary text)
     Light:       #FAFAF8  (page bg)
=================================================================== */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #B7893A;
  --gold-dark:   #8C6420;
  --gold-light:  #D4AA6A;
  --gold-pale:   #F5EDD8;
  --dark:        #1C1C1E;
  --mid:         #4A4A4C;
  --light:       #FAFAF8;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(183,137,58,.15);
  --shadow-md:   0 6px 24px rgba(183,137,58,.2);
  --shadow-lg:   0 16px 48px rgba(183,137,58,.25);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font-main:   'Inter', 'Lato', system-ui, sans-serif;
  --font-heading:'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}

/* ── Utility ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-pad { padding-block: 5rem; }
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.bg-pale      { background: var(--gold-pale); }
.bg-dark      { background: var(--dark); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

/* ── Scroll-to-top ────────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  border: none;
  box-shadow: var(--shadow-md);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ── Navigation ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding-block: 1rem;
}

#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding-block: .6rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(183,137,58,.3));
  transition: height var(--transition);
}

#navbar.scrolled .nav-logo img { height: 40px; }

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

.nav-links a {
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition);
}

#navbar.scrolled .nav-links a { color: var(--dark); }

.nav-links a:hover,
.nav-links a.active {
  background: var(--gold);
  color: var(--white) !important;
}

.nav-lang {
  display: flex;
  gap: .25rem;
}

.nav-lang a {
  padding: .3rem .7rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  transition: all var(--transition);
}

#navbar.scrolled .nav-lang a { color: var(--gold); border-color: var(--gold); }

.nav-lang a:hover,
.nav-lang a.current {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

#navbar.scrolled .nav-hamburger span { background: var(--dark); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1208 0%, #2e1f0a 35%, #3d2a0e 60%, #1a1208 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(183,137,58,.25) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative golden ring */
.hero-ring {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(183,137,58,.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-ring-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(183,137,58,.18);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 6s infinite;
}

@keyframes particleFade {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  50%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
  padding: 2rem 1.5rem;
}

.hero-logo-wrap {
  display: inline-block;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(183,137,58,.3);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.hero-logo-wrap img {
  height: 100px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(183,137,58,.5));
}

.hero-tagline {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-content h1 .accent {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.5); opacity: .4; }
}

/* ── Section headers ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: .8rem;
}

.section-header p {
  color: var(--mid);
  max-width: 640px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ── Services overview cards ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(183,137,58,.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--gold);
  transition: all var(--transition);
}

.service-card:hover .icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
}

.service-card p {
  color: var(--mid);
  font-size: .95rem;
}

/* ── Pricing cards ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(183,137,58,.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #fff8ee, #fffcf5);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::after {
  content: '★ Popular';
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .25rem .75rem;
  border-radius: 50px;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.pricing-card ul li {
  font-size: .9rem;
  color: var(--mid);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* ── Contact strip ────────────────────────────────────────────── */
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid rgba(183,137,58,.2);
  border-radius: 50px;
  padding: .65rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.contact-item:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-item .ci-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}

.contact-item:hover .ci-icon { background: rgba(255,255,255,.2); }

/* ── Special offer banner ─────────────────────────────────────── */
.offer-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.offer-banner .ob-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.offer-banner h3 {
  color: var(--white);
  margin-bottom: .3rem;
}

.offer-banner p {
  opacity: .9;
  font-size: .95rem;
}

/* ── Tech tags ────────────────────────────────────────────────── */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.tech-tag {
  background: var(--white);
  border: 1px solid rgba(183,137,58,.25);
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.tech-tag:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Why us stats strip ───────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-block: 4rem;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,.1); }

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
}

.stat-item .stat-label {
  font-size: .85rem;
  opacity: .88;
  letter-spacing: .03em;
}

/* ── Accordion (FAQ-style) ────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: .75rem; }

.acc-item {
  background: var(--white);
  border: 1px solid rgba(183,137,58,.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.acc-item.open { border-color: var(--gold); }

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.acc-trigger:hover { color: var(--gold); }

.acc-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: all var(--transition);
}

.acc-item.open .acc-arrow {
  background: var(--gold);
  color: var(--white);
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.acc-item.open .acc-body { max-height: 500px; }

.acc-body-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--mid);
  font-size: .95rem;
}

.acc-body-inner ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}

.acc-body-inner ul li {
  padding-left: 1.4rem;
  position: relative;
}

.acc-body-inner ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Footer ───────────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(1.1) drop-shadow(0 2px 6px rgba(183,137,58,.4));
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.65);
}

.footer-contact-item .fci-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(183,137,58,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-light); }

.footer-links { display: flex; gap: 1.25rem; }

/* ── Animations ───────────────────────────────────────────────── */
/* Content is always visible. JS adds .js-reveal-ready to <body>
   only after confirming IntersectionObserver works, then hides
   elements again so the reveal animation can play.             */

body.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

body.js-reveal-ready [data-reveal="left"]  { transform: translateX(-28px); }
body.js-reveal-ready [data-reveal="right"] { transform: translateX(28px); }

body.js-reveal-ready [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

body.js-reveal-ready [data-delay="1"] { transition-delay: .1s; }
body.js-reveal-ready [data-delay="2"] { transition-delay: .2s; }
body.js-reveal-ready [data-delay="3"] { transition-delay: .3s; }
body.js-reveal-ready [data-delay="4"] { transition-delay: .4s; }
body.js-reveal-ready [data-delay="5"] { transition-delay: .5s; }
body.js-reveal-ready [data-delay="6"] { transition-delay: .6s; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-lang {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 0.75rem;
    box-shadow: var(--shadow-md);
    gap: .5rem;
  }

  .nav-lang.open {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem 1rem;
    box-shadow: var(--shadow-md);
    gap: .5rem;
    justify-content: center;
    border-top: 1px solid rgba(0,0,0,.08);
  }

  .nav-mobile-open .nav-links,
  .nav-mobile-open .nav-lang {
    display: flex;
  }

  .nav-links a { color: var(--dark) !important; }
  .nav-lang a  { color: var(--gold) !important; border-color: var(--gold); }

  .nav-hamburger { display: flex; }

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

  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.15); }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  .offer-banner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-item:last-child { border-bottom: none; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* ── Company info card alignment fix ─────────────────────────── */
.service-card > div[style*="flex-direction:column"] {
  display: inline-flex !important;
  align-items: flex-start;
}

.service-card .footer-contact-item {
  justify-content: flex-start !important;
  margin-bottom: 0;
  color: var(--mid);
}

.service-card .contact-item {
  display: flex;
  justify-content: flex-start !important;
  border: none;
  box-shadow: none;
  padding: 0;
  background: none;
  font-weight: 500;
  color: var(--mid);
}

.service-card .contact-item:hover {
  background: none;
  transform: none;
  box-shadow: none;
  color: var(--gold);
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(183,137,58,.15);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .3;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card .author-info strong {
  display: block;
  font-size: .9rem;
  color: var(--dark);
}

.testimonial-card .author-info span {
  font-size: .8rem;
  color: var(--mid);
}

/* ── How We Work (process steps) ──────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 15px rgba(183,137,58,.3);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.process-step p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

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