/* ========================================
   BONZAIRE HOMEPAGE REDESIGN v2
   Premium, minimal, structured
   Font: Inter | 8px spacing system
   Inspired by refractweb.com quality level
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --hp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hp-dark: #060918;
  --hp-dark-2: #0B1120;
  --hp-text: #0F172A;
  --hp-text-secondary: #334155;
  --hp-muted: #64748B;
  --hp-light: #94A3B8;
  --hp-lighter: #CBD5E1;
  --hp-bg: #FFFFFF;
  --hp-bg-alt: #F8FAFC;
  --hp-bg-soft: #F1F5F9;
  --hp-border: #E2E8F0;
  --hp-border-light: #F1F5F9;
  --hp-blue: #1E40AF;
  --hp-blue-light: #3B82F6;
  --hp-blue-pale: #EFF6FF;
  --hp-teal: #0EA5A4;
  --hp-teal-light: #14B8A6;
  --hp-gold: #D4AF37;
  --hp-radius: 12px;
  --hp-radius-lg: 16px;
  --hp-radius-xl: 24px;
  --hp-shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --hp-shadow: 0 4px 16px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --hp-shadow-md: 0 12px 32px rgba(0,0,0,.08), 0 4px 8px rgba(0,0,0,.04);
  --hp-shadow-lg: 0 24px 64px rgba(0,0,0,.1), 0 8px 20px rgba(0,0,0,.06);
  --hp-shadow-xl: 0 32px 80px rgba(0,0,0,.14), 0 12px 32px rgba(0,0,0,.08);
  --hp-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --hp-max-width: 1200px;
}

/* ===== BASE OVERRIDES FOR HOMEPAGE ===== */
body[data-page="home"] {
  font-family: var(--hp-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--hp-text);
  font-size: 16px;
  line-height: 1.6;
}

body[data-page="home"] main {
  overflow-x: hidden;
}

body[data-page="home"] .container {
  max-width: var(--hp-max-width);
}

/* ===== TYPOGRAPHY HIERARCHY ===== */
body[data-page="home"] h1 {
  font-family: var(--hp-font);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
}

body[data-page="home"] h2 {
  font-family: var(--hp-font);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

body[data-page="home"] h3 {
  font-family: var(--hp-font);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

body[data-page="home"] h4 {
  font-family: var(--hp-font);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

body[data-page="home"] p {
  font-family: var(--hp-font);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Additional reveal directions */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== PAGE LOAD FADE-IN ===== */
@keyframes hp-page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
body[data-page="home"] main {
  animation: hp-page-enter 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* =============================================
   HERO SECTION — dominant, immersive
   ============================================= */
.hero-modern {
  background: var(--hp-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Layered ambient background for depth */
.hero-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(30,64,175,.4) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(14,165,164,.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 90%, rgba(59,130,246,.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Subtle grid texture for visual depth */
.hero-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-modern .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 96px;
  align-items: center;
  padding: 120px 0 140px;
}

.hero-content {
  max-width: 680px;
}

/* Badge / social proof chip */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30,64,175,.12);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-blue-light);
  margin-bottom: 40px;
  backdrop-filter: blur(12px);
  letter-spacing: 0.2px;
  animation: heroBadgePop 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes heroBadgePop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* HERO HEADLINE — dominant, largest element on page */
.hero-title {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  color: #FFFFFF;
  margin: 0 0 32px 0;
  letter-spacing: -3px;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #60A5FA 0%, var(--hp-teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.75;
  color: var(--hp-light);
  margin: 0 0 48px 0;
  max-width: 540px;
  font-weight: 400;
}

/* CTA BUTTONS — large, bold, visually dominant */
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--hp-radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--hp-font);
  letter-spacing: -0.2px;
}

.btn-hero svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn-primary-hero {
  background: #FFFFFF;
  color: var(--hp-dark);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 8px 32px rgba(0,0,0,.25);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15),
    0 16px 48px rgba(0,0,0,.35);
  color: var(--hp-dark);
  background: #FFFFFF;
}

.btn-secondary-hero {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
}

.btn-secondary-hero:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-3px);
  color: #fff;
}

/* Feature bullets under CTA */
.hero-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hp-light);
  font-size: 14px;
  font-weight: 500;
}

.hero-feature-item svg {
  color: var(--hp-teal-light);
  flex-shrink: 0;
}

/* Hero Visual Side */
.hero-logo-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,64,175,.3) 0%, rgba(14,165,164,.12) 35%, transparent 65%);
  animation: heroGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 1; }
}

.hero-logo-img {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 32px 80px rgba(0,0,0,.6),
    0 8px 24px rgba(0,0,0,.3);
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}


/* =============================================
   TRUST / CREDIBILITY STRIP
   ============================================= */
.trust-strip {
  background: var(--hp-bg);
  border-bottom: 1px solid var(--hp-border);
  padding: 56px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
  padding: 0 24px;
}

.trust-stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--hp-text);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-stat-label {
  font-size: 14px;
  color: var(--hp-muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.trust-divider {
  width: 1px;
  height: 56px;
  background: var(--hp-border);
}


/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.hp-section {
  padding: 128px 0;
}

.hp-section-alt {
  background: var(--hp-bg-alt);
}

.hp-section-dark {
  background: var(--hp-dark);
}

.hp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.hp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hp-blue);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.hp-section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--hp-blue), var(--hp-teal));
}

.hp-section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--hp-text);
  margin: 0 0 20px;
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.hp-section-dark .hp-section-title {
  color: #FFFFFF;
}

.hp-section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--hp-muted);
  margin: 0;
  font-weight: 400;
}

.hp-section-dark .hp-section-subtitle {
  color: var(--hp-light);
}


/* =============================================
   SERVICES SECTION — equal-height card grid
   ============================================= */
#services {
  background: var(--hp-bg-alt);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,64,175,.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

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

.service-card-new {
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  padding: 40px 36px;
  text-decoration: none;
  color: inherit;
  transition: var(--hp-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 4px 20px rgba(0,0,0,.03);
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hp-blue) 0%, var(--hp-teal) 100%);
  opacity: 0;
  transition: var(--hp-transition);
}

.service-card-new:hover {
  border-color: rgba(30,64,175,.1);
  box-shadow: var(--hp-shadow-xl);
  transform: translateY(-8px);
  background: #fff;
}

.service-card-new:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--hp-radius);
  background: var(--hp-blue-pale);
  color: var(--hp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--hp-transition);
}

.service-card-new:hover .service-card-icon {
  background: linear-gradient(135deg, var(--hp-blue) 0%, var(--hp-blue-light) 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(30,64,175,.25);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.service-card-new h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-text);
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.service-card-new p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hp-muted);
  margin: 0;
  flex-grow: 1;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hp-blue);
  margin-top: 24px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--hp-transition);
}

.service-card-new:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease;
}

.service-card-new:hover .service-card-arrow svg {
  transform: translateX(3px);
}


/* =============================================
   ABOUT SECTION — clean split layout
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--hp-radius-xl);
  overflow: hidden;
}

.about-visual .carousel {
  border-radius: var(--hp-radius-xl);
  overflow: hidden;
  box-shadow: var(--hp-shadow-lg);
}

.about-visual .carousel-slide img {
  border-radius: 0;
}

.about-content {
  max-width: 520px;
}

.about-content .hp-section-label {
  text-align: left;
}

.about-content .hp-section-title {
  text-align: left;
  margin-bottom: 28px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--hp-text-secondary);
  margin: 0 0 40px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--hp-radius);
  background: var(--hp-blue-pale);
  color: var(--hp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--hp-transition);
}

.about-highlight-item:hover .about-highlight-icon {
  background: var(--hp-blue);
  color: #fff;
  transform: scale(1.05);
}

.about-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.about-highlight-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-text);
  margin: 0;
  padding-top: 11px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(212,175,55,.08), rgba(212,175,55,.03));
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--hp-radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--hp-text);
}


/* =============================================
   WHY CHOOSE US — dark immersive section
   ============================================= */
.section-why-choose {
  background: var(--hp-dark);
  position: relative;
  overflow: hidden;
}

.section-why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 100%, rgba(14,165,164,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 0%, rgba(30,64,175,.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grid texture (matches hero) */
.section-why-choose::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--hp-radius-lg);
  padding: 40px 36px;
  transition: var(--hp-transition);
  backdrop-filter: blur(8px);
  color: #fff;
}

.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
}

.why-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,.12);
  border-radius: var(--hp-radius);
  color: var(--hp-blue-light);
  margin-bottom: 28px;
  transition: var(--hp-transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--hp-blue) 0%, var(--hp-blue-light) 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(30,64,175,.35);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.why-card-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--hp-lighter);
  margin: 0;
}

.why-read-more-btn {
  display: none;
}

.section-why-choose .hp-section-header {
  position: relative;
  z-index: 2;
}


/* =============================================
   CTA SECTION — bold, conversion-focused
   ============================================= */
.cta-section {
  background: var(--hp-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(184,134,11,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(30,64,175,.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 90% 20%, rgba(14,165,164,.1) 0%, transparent 45%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin: 0 0 48px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 20px 44px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--hp-radius);
  background: #FFFFFF;
  color: var(--hp-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--hp-transition);
  border: none;
  cursor: pointer;
  font-family: var(--hp-font);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  letter-spacing: -0.2px;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  color: var(--hp-blue);
}

.btn-cta-primary svg {
  width: 20px;
  height: 20px;
}

.btn-cta-secondary {
  padding: 20px 44px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--hp-radius);
  background: transparent;
  border: 2px solid rgba(255,255,255,.35);
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--hp-transition);
  cursor: pointer;
  font-family: var(--hp-font);
  letter-spacing: -0.2px;
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
  color: #fff;
}


/* =============================================
   CLIENTS / TRUST LOGOS
   ============================================= */
.clients-section .hp-section-header {
  margin-bottom: 56px;
}

.clients-pyramid {
  max-width: 900px;
  margin: 0 auto;
}

/* Enhanced client logo hover */
.client-logo {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease !important;
}

.client-logo:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.12) !important;
  border-color: rgba(30,64,175,.25) !important;
}


/* =============================================
   FEEDBACK & MAP SECTION
   ============================================= */
.feedback-section {
  background: var(--hp-bg-alt);
}

#feedback-map {
  background: var(--hp-bg-alt);
  position: relative;
}

.feedback-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.feedback-split > .card {
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border);
  box-shadow: 0 4px 20px rgba(0,0,0,.05), 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-split > .card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.09), 0 4px 12px rgba(0,0,0,.05);
  transform: translateY(-4px);
}

/* ===== MAP / CONTACT INFO ===== */
.map-section .card {
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-border);
  box-shadow: var(--hp-shadow);
}

.service-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.service-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--hp-text-secondary);
}

.service-info-item svg {
  flex-shrink: 0;
  color: var(--hp-blue);
}

.service-info-item a {
  color: var(--hp-blue);
  text-decoration: none;
  font-weight: 500;
}

.service-info-item a:hover {
  text-decoration: underline;
}


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

/* Large Desktop */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 72px;
  }
  .about-split {
    gap: 72px;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hp-section {
    padding: 96px 0;
  }

  .hp-section-header {
    margin-bottom: 64px;
  }

  .hero-modern {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px 0 100px;
  }

  .hero-logo-showcase {
    order: -1;
  }

  .hero-logo-img {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-logo-glow {
    width: 320px;
    height: 320px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content .hp-section-label,
  .about-content .hp-section-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-highlights {
    align-items: flex-start;
    width: 100%;
  }

  .about-highlight-item {
    width: 100%;
    align-items: center;
  }

  .about-badge {
    align-self: flex-start;
    margin: 0;
  }

  .trust-strip-inner {
    gap: 40px;
  }

  .feedback-split {
    grid-template-columns: 1fr;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .hp-section {
    padding: 80px 0;
  }

  .hp-section-header {
    margin-bottom: 56px;
  }

  .hp-section-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .hp-section-subtitle {
    font-size: 16px;
  }

  .hero-grid {
    padding: 56px 0 72px;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-badge {
    margin-bottom: 32px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 18px 32px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .trust-strip {
    padding: 40px 0;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 28px;
  }

  .trust-divider {
    width: 56px;
    height: 1px;
  }

  .trust-stat-number {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-new {
    padding: 32px 28px;
  }

  .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 32px 28px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 18px 32px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hp-section {
    padding: 64px 0;
  }

  .hero-grid {
    padding: 40px 0 56px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-logo-img {
    max-width: 220px;
  }

  .hero-logo-glow {
    width: 240px;
    height: 240px;
  }

  .service-card-new {
    padding: 28px 24px;
  }

  .service-card-icon {
    width: 52px;
    height: 52px;
  }

  .service-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .why-card {
    padding: 28px 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-logo-img {
    animation: none;
  }

  .hero-logo-glow {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
