/* =====================================================================
   Happy Branding – Premium CSS Stylesheet
   Brand: Digital Growth Partner for Local Businesses
   Colors: #FFC107 (Yellow), #E30613 (Red), #1F2937 (Dark), #FFFFFF, #F8FAFC
   Fonts: Poppins (Headings), Inter (Body)
   ===================================================================== */

/* ========================= CSS Custom Properties ========================= */
:root {
  /* Brand Colors */
  --color-yellow:      #FFC107;
  --color-yellow-dark: #E6A800;
  --color-yellow-light:#FFF3CD;
  --color-red:         #E30613;
  --color-red-dark:    #B5050F;
  --color-dark:        #1F2937;
  --color-dark-2:      #111827;
  --color-dark-3:      #374151;
  --color-white:       #FFFFFF;
  --color-light:       #F8FAFC;
  --color-light-2:     #F1F5F9;
  --color-border:      #E2E8F0;
  --color-text:        #374151;
  --color-text-muted:  #6B7280;
  --color-text-light:  #9CA3AF;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.10);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.12);
  --shadow-yellow: 0 8px 32px rgba(255, 193, 7, 0.25);
  --shadow-red:    0 8px 32px rgba(227, 6, 19, 0.20);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Glassmorphism */
  --glass-bg:     rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur:   blur(20px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul { list-style: none; padding: 0; margin: 0; }

/* ========================= Accessibility ========================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 99999;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 1rem;
}

/* Focus Visible Styles */
:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ========================= Typography ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  background: rgba(227, 6, 19, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(227, 6, 19, 0.15);
}

.eyebrow-light {
  color: var(--color-yellow);
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subheading {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.75;
}

.text-highlight {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #FF8F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-padding {
  padding: var(--space-3xl) 0;
}

/* ========================= Buttons ========================= */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #FF8F00 100%);
  color: var(--color-dark) !important;
  padding: 0.85rem 2rem;
  box-shadow: var(--shadow-yellow);
  font-size: 0.9375rem;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.40);
  color: var(--color-dark) !important;
}
.btn-primary-custom:active {
  transform: translateY(0);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white) !important;
  padding: 0.85rem 2rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.30);
  font-size: 0.9375rem;
}
.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.40);
  color: var(--color-white) !important;
}

.btn-nav-cta {
  background: var(--color-dark);
  color: var(--color-white) !important;
  padding: 0.55rem 1.4rem;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.btn-nav-cta:hover {
  background: var(--color-yellow);
  color: var(--color-dark) !important;
  transform: translateY(-1px);
}

.btn-outline-custom {
  background: transparent;
  color: var(--color-dark) !important;
  border: 2px solid var(--color-border);
  padding: 0.85rem 2rem;
  font-size: 0.9375rem;
}
.btn-outline-custom:hover {
  border-color: var(--color-yellow);
  background: var(--color-yellow-light);
  color: var(--color-dark) !important;
}

.btn-service-cta {
  background: transparent;
  color: var(--color-dark) !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--color-yellow);
  border-radius: 0;
  gap: 0.4rem;
}
.btn-service-cta:hover {
  color: var(--color-red) !important;
  border-color: var(--color-red);
  gap: 0.75rem;
}

/* CTA Section Buttons */
.btn-cta-primary {
  background: var(--color-white);
  color: var(--color-dark) !important;
  padding: 0.95rem 2rem;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-md);
}
.btn-cta-primary:hover {
  background: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
  color: var(--color-dark) !important;
}

.btn-cta-whatsapp {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--color-white) !important;
  padding: 0.95rem 2rem;
  font-size: 0.9375rem;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-cta-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-2px);
  color: var(--color-white) !important;
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #FF8F00 100%);
  color: var(--color-dark) !important;
  padding: 0.9rem 2rem;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-yellow);
  border-radius: var(--radius-full);
}
.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.45);
  color: var(--color-dark) !important;
}

/* ========================= NAVBAR ========================= */
#navbar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.85rem 0;
  transition: all var(--transition-normal);
  z-index: 1000;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 0.65rem 0;
}

/* Brand Logo */
.brand-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-yellow) 0%, #FF8F00 60%, var(--color-red) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: var(--shadow-yellow);
  flex-shrink: 0;
}

.logo-h { color: var(--color-dark); }
.logo-b { color: var(--color-white); }

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-dark);
}
.brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

/* Nav Links */
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark-3) !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-dark) !important;
  background: var(--color-light-2);
}

/* Custom Toggler */
.custom-toggler {
  border: none;
  background: none;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
}
.toggler-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-normal);
}
.custom-toggler:focus { box-shadow: none; }
.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}
.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
  }
  .nav-link { padding: 0.65rem 1rem !important; }
  .btn-nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }
}

/* ========================= HERO SECTION ========================= */
.hero-section {
  background: linear-gradient(160deg, #FFFFFF 0%, #FFFBF0 40%, #FFF5F5 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background Blobs */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: blobFloat1 8s ease-in-out infinite;
}
.hero-bg-blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.10) 0%, transparent 70%);
  bottom: 0px;
  left: -100px;
  animation: blobFloat2 10s ease-in-out infinite;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 40%, transparent 100%);
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-section .container { position: relative; z-index: 1; }

/* Hero Copy */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.30);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #92680A;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 52ch;
}

/* Social Proof */
.hero-social-proof { padding-top: 0.5rem; }
.proof-stat {
  display: flex;
  flex-direction: column;
}
.proof-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  align-self: center;
}

/* ========================= HERO ILLUSTRATION ========================= */
.hero-visual {
  position: relative;
  padding: 2rem 0;
}

.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem;
}

/* Laptop Device Card */
.device-card {
  position: relative;
  z-index: 2;
}
.laptop-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
}
.device-screen {
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.screen-browser-bar {
  background: #252540;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot.red    { background: #FF5F57; }
.browser-dot.yellow { background: #FEBC2E; }
.browser-dot.green  { background: #28C840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  height: 20px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  font-family: monospace;
}
.screen-content {
  padding: 0.75rem;
  min-height: 220px;
  background: linear-gradient(180deg, #0f0f1a, #1a1a2e);
}
.screen-hero-block {
  background: linear-gradient(135deg, rgba(255,193,7,0.15), rgba(227,6,19,0.1));
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}
.screen-hero-text {
  height: 10px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  margin-bottom: 0.4rem;
  width: 80%;
}
.screen-hero-text.short { width: 55%; }
.screen-cards-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.screen-mini-card {
  flex: 1;
  height: 50px;
  border-radius: 6px;
  opacity: 0.8;
}
.card-y { background: linear-gradient(135deg, rgba(255,193,7,0.4), rgba(255,193,7,0.2)); }
.card-r { background: linear-gradient(135deg, rgba(227,6,19,0.4), rgba(227,6,19,0.2)); }
.card-g { background: linear-gradient(135deg, rgba(34,197,94,0.4), rgba(34,197,94,0.2)); }

.screen-chart-area {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  padding: 0.25rem;
}
.chart-bar {
  flex: 1;
  background: rgba(255,193,7,0.3);
  border-radius: 3px 3px 0 0;
  height: var(--h);
  transition: height 0.5s ease;
}
.chart-bar.active {
  background: var(--color-yellow);
  animation: barGrow 2s ease-in-out infinite alternate;
}
@keyframes barGrow {
  from { height: calc(var(--h) - 10%); }
  to   { height: var(--h); }
}

.device-base {
  height: 12px;
  background: linear-gradient(180deg, #e8e8e8, #d0d0d0);
  border-radius: 0 0 4px 4px;
}

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  flex-shrink: 0;
}
.float-card-content {
  display: flex;
  flex-direction: column;
}
.float-card-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}
.float-card-sub {
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

.float-maps    { top: -20px;  right: -20px; animation-delay: 0s; }
.float-analytics { bottom: 40px; right: -30px; animation-delay: 1.5s; }
.float-mobile  { bottom: -10px; left: -10px; animation-delay: 0.75s; }

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

/* Digital Business Card Floating */
.float-biz-card {
  position: absolute;
  top: 20px;
  left: -40px;
  z-index: 5;
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: 2s;
}
.biz-card-inner {
  background: linear-gradient(135deg, var(--color-dark) 0%, #374151 100%);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-xl);
  min-width: 180px;
  border: 1px solid rgba(255,255,255,0.1);
}
.biz-logo-pill {
  background: linear-gradient(135deg, var(--color-yellow), #FF8F00);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}
.biz-card-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}
.biz-card-role {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Orbit Ring */
.orbit-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border: 1px dashed rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
  z-index: 0;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  cursor: pointer;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--color-yellow);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(14px); opacity: 0.3; }
}

/* ========================= TRUST BAR ========================= */
.trust-bar {
  background: var(--color-dark);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
}
.trust-item i {
  color: var(--color-yellow);
  font-size: 1rem;
}
.trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  .trust-sep:nth-child(even) { display: none; }
}

/* ========================= CLIENTS TICKER ========================= */
.clients-section { background: var(--color-light); }
.clients-ticker-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.clients-ticker-track {
  display: flex;
  gap: 1rem;
  animation: tickerMove 30s linear infinite;
  width: max-content;
}
.clients-ticker-track:hover { animation-play-state: paused; }
.client-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
  cursor: default;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}
.client-tag i { color: var(--color-yellow); }
.client-tag:hover {
  border-color: var(--color-yellow);
  background: var(--color-yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================= SERVICES SECTION ========================= */
.services-section {
  background: var(--color-white);
}

.service-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--color-yellow);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-yellow);
  transform: translateY(-6px);
}

.service-card--featured {
  background: linear-gradient(160deg, #FFFDF0 0%, #FFFFF8 100%);
  border-color: rgba(255, 193, 7, 0.40);
  box-shadow: var(--shadow-yellow);
}
.service-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.25), 0 0 0 2px var(--color-yellow);
}

.service-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-yellow), #FF8F00);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-yellow);
  transition: all var(--transition-normal);
  --icon-color: #FFC107;
}
.service-card:hover .service-icon-wrap {
  transform: rotate(-5deg) scale(1.05);
}
.service-icon-wrap:not(:first-of-type) {
  background: linear-gradient(135deg, var(--icon-color, #FFC107), color-mix(in srgb, var(--icon-color, #FFC107) 70%, black));
  color: white;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--icon-color, #FFC107) 40%, transparent);
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-benefits {
  margin-bottom: 1.5rem;
}
.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.service-benefits li i {
  color: #22c55e;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ========================= WHY CHOOSE US – BENTO GRID ========================= */
.why-section { background: var(--color-light); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: default;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 193, 7, 0.5);
}
.bento-card--wide {
  grid-column: span 2;
}

.bento-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-yellow), #FF8F00);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-yellow);
}
.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(-3deg);
}
.bento-icon--red    { background: linear-gradient(135deg, #E30613, #c0050f); color: white; box-shadow: var(--shadow-red); }
.bento-icon--blue   { background: linear-gradient(135deg, #0EA5E9, #0284C7); color: white; box-shadow: 0 8px 24px rgba(14,165,233,0.3); }
.bento-icon--green  { background: linear-gradient(135deg, #22c55e, #16a34a); color: white; box-shadow: 0 8px 24px rgba(34,197,94,0.3); }
.bento-icon--yellow { background: linear-gradient(135deg, #FFC107, #FF8F00); color: var(--color-dark); box-shadow: var(--shadow-yellow); }
.bento-icon--purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); color: white; box-shadow: 0 8px 24px rgba(139,92,246,0.3); }

.bento-title {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}
.bento-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.bento-decoration {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,193,7,0.12) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
  pointer-events: none;
}
.bento-decoration--right {
  left: auto;
  right: -40px;
}

@media (max-width: 991px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 2; }
}
@media (max-width: 576px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
}

/* ========================= PROCESS SECTION ========================= */
.process-section { background: var(--color-white); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number-wrap {
  position: relative;
  z-index: 2;
  margin: 0 auto 1rem;
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border: 3px solid var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px white, var(--shadow-yellow);
  transition: all var(--transition-normal);
}
.process-step:hover .step-number-wrap {
  background: var(--color-yellow);
  transform: scale(1.1);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-dark);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-light), var(--color-border));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-dark);
  margin: 0 auto 0.75rem;
  transition: all var(--transition-normal);
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--color-yellow), #FF8F00);
  color: var(--color-dark);
  transform: rotate(-5deg);
}

.step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
}
@media (max-width: 576px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* ========================= PORTFOLIO SECTION ========================= */
.portfolio-section { background: var(--color-light); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition-normal);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-yellow);
}

.portfolio-card-visual {
  padding: 1.5rem 1.5rem 0;
  background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
  min-height: 200px;
}
.portfolio-card-visual--clinic   { background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 100%); }
.portfolio-card-visual--restaurant { background: linear-gradient(180deg, #FFF7ED 0%, #FED7AA 100%); }
.portfolio-card-visual--realestate { background: linear-gradient(180deg, #F0FDF4 0%, #DCFCE7 100%); }

.portfolio-mockup-browser {
  background: var(--color-white);
  border-radius: 10px 10px 0 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.mockup-bar {
  background: #f1f5f9;
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid var(--color-border);
}
.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}
.mockup-bar span:nth-child(1) { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FEBC2E; }
.mockup-bar span:nth-child(3) { background: #28C840; }
.mockup-url {
  flex: 1;
  background: white;
  border-radius: 4px;
  height: 16px;
  font-size: 0.6rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
  border: 1px solid var(--color-border);
}
.mockup-content { padding: 0.5rem; }
.mockup-nav-strip {
  height: 24px;
  background: var(--color-light);
  border-radius: 4px;
  margin-bottom: 0.4rem;
  border: 1px solid var(--color-border);
}
.dark-strip { background: var(--color-dark); border-color: var(--color-dark); }
.mockup-hero-strip {
  display: flex;
  gap: 0.4rem;
  height: 70px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-radius: 6px;
  margin-bottom: 0.4rem;
  padding: 0.5rem;
  overflow: hidden;
}
.dark-hero { background: linear-gradient(135deg, #1F2937, #374151); }
.mockup-hero-text { flex: 2; display: flex; flex-direction: column; justify-content: center; gap: 0.3rem; }
.mockup-line {
  height: 6px;
  background: rgba(0,0,0,0.12);
  border-radius: 3px;
  width: 80%;
}
.mockup-line.thick { height: 9px; }
.light-line { background: rgba(255,255,255,0.35); }
.mockup-btn-strip {
  height: 14px;
  width: 50px;
  background: var(--color-yellow);
  border-radius: 7px;
  margin-top: 0.25rem;
}
.yellow-btn { background: var(--color-yellow); }
.mockup-hero-img-placeholder {
  flex: 1;
  border-radius: 6px;
  background: rgba(0,0,0,0.08);
}
.clinic-img { background: linear-gradient(135deg, #93C5FD, #60A5FA); }
.resto-img { background: linear-gradient(135deg, #FCA5A5, #F87171); }
.mockup-stats-row {
  display: flex;
  gap: 0.3rem;
}
.mockup-stat-pill {
  flex: 1;
  height: 20px;
  background: var(--color-light);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
.mockup-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
}
.mockup-menu-item {
  height: 30px;
  background: var(--color-light);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
.mockup-search-bar {
  height: 22px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.mockup-property-grid {
  display: flex;
  gap: 0.3rem;
}
.mockup-property-card {
  flex: 1;
  height: 50px;
  background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
  border-radius: 4px;
}

.portfolio-card-info {
  padding: 1.25rem 1.5rem;
}
.portfolio-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
  background: var(--color-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.portfolio-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}
.portfolio-result {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}
.portfolio-result i { color: #22c55e; }

@media (max-width: 991px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ========================= TESTIMONIALS ========================= */
.testimonials-section { background: var(--color-white); }

.testimonial-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-size: 8rem;
  font-family: var(--font-heading);
  color: rgba(255, 193, 7, 0.15);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 193, 7, 0.4);
}
.testimonial-card--featured {
  background: linear-gradient(160deg, #FFFDF0, #FFFFF8);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: var(--shadow-yellow);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.testimonial-stars i { color: var(--color-yellow); font-size: 0.875rem; }

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: white;
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  font-style: normal;
}
.author-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Review Summary Bar */
.review-summary-bar {
  margin-top: 3rem;
  background: var(--color-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.review-score {
  text-align: center;
}
.score-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
  display: block;
}
.score-stars { display: flex; gap: 0.2rem; justify-content: center; margin: 0.25rem 0; }
.score-stars i { color: var(--color-yellow); font-size: 0.875rem; }
.score-label { font-size: 0.75rem; color: var(--color-text-muted); }
.review-summary-divider { width: 1px; height: 60px; background: var(--color-border); }
.review-platforms { display: flex; flex-direction: column; gap: 0.5rem; }
.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}
.platform-badge i.bi-google { color: #EA4335; }
.platform-badge i.bi-facebook { color: #1877F2; }
.count-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-dark);
  display: block;
}
.count-label { font-size: 0.75rem; color: var(--color-text-muted); }

/* ========================= FAQ SECTION ========================= */
.faq-section { background: var(--color-light); }

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}
.faq-item:hover {
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: left;
  transition: all var(--transition-fast);
}
.faq-question:hover {
  background: var(--color-light);
}
.faq-question[aria-expanded="true"] {
  color: var(--color-dark);
  background: rgba(255, 193, 7, 0.06);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  font-size: 0.875rem;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--color-yellow);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  overflow: hidden;
  /* max-height and opacity controlled entirely by JS via inline styles */
  transition:
    max-height 0.35s ease,
    opacity    0.25s ease,
    padding    0.35s ease;
}
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
.faq-answer strong { color: var(--color-dark); }

/* ========================= CTA SECTION ========================= */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark) 50%, #2D1B00 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-decoration { position: absolute; inset: 0; pointer-events: none; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.cta-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
}
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-inner { position: relative; z-index: 1; }

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cta-subheadline {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.cta-subheadline strong { color: var(--color-yellow); }

.cta-hours-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hours-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.hours-item i { color: var(--color-yellow); }
.hours-item strong { color: var(--color-white); }

/* Contact Form Card */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.form-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}
.form-card-subtitle {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}
.custom-input, .custom-select {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: all var(--transition-fast);
}
.custom-input:focus, .custom-select:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
  outline: none;
}
.custom-input::placeholder { color: var(--color-text-light); }

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.form-privacy-note i { color: #22c55e; }

/* Form Success */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.success-icon { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.success-icon i { animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.form-success h4 { font-size: 1.25rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.875rem; color: var(--color-text-muted); }

/* Spinner */
.spin { animation: spin 1s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ========================= FOOTER ========================= */
.site-footer {
  background: var(--color-dark-2);
  color: rgba(255,255,255,0.7);
}

.footer-top { padding: 4rem 0 3rem; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer-brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-yellow), #FF8F00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.875rem;
  color: var(--color-dark);
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-white);
  display: block;
  line-height: 1.2;
}
.footer-brand-tagline {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  display: block;
}
.footer-about-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--transition-fast);
}
.social-link:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.footer-link:hover {
  color: var(--color-yellow);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.contact-item i {
  color: var(--color-yellow);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item a { color: rgba(255,255,255,0.55); }
.contact-item a:hover { color: var(--color-yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-legal { display: flex; gap: 1rem; }
.footer-legal-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}
.footer-legal-link:hover { color: var(--color-yellow); }

/* ========================= FLOATING WHATSAPP ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition-normal);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  color: white !important;
}
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ========================= BACK TO TOP ========================= */
/* ========================= SCROLL NAVIGATOR ========================= */
/* Paired top ↑ / bottom ↓ navigator — fixed bottom-right */

.scroll-nav {
  position: fixed;
  bottom: 6.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 998;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-nav.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.scroll-nav-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-dark-3);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}
.scroll-nav-btn:hover {
  background: var(--color-yellow);
  color: var(--color-dark);
}
.scroll-nav-btn:active {
  transform: scale(0.92);
}
.scroll-nav-btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: -3px;
}

.scroll-nav-divider {
  width: 22px;
  height: 1px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Bottom arrow — yellow tint to hint it's a secondary action */
.scroll-nav-bottom { color: var(--color-text-muted); }
.scroll-nav-bottom:hover { background: var(--color-dark); color: var(--color-white); }

/* Mobile: make slightly smaller and move slightly inward */
@media (max-width: 480px) {
  .scroll-nav {
    bottom: 5.5rem;
    right: 1rem;
  }
  .scroll-nav-btn { width: 36px; height: 36px; font-size: 0.8rem; }
}


/* ========================= RESPONSIVE ADJUSTMENTS ========================= */
@media (max-width: 991px) {
  .hero-visual { margin-top: 2rem; }
  .float-biz-card { left: 0; top: 10px; }
  .float-maps { right: -10px; }
  .float-analytics { right: -10px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 3rem 0; }
  .hero-heading { font-size: 2rem; }
  .hero-section .min-vh-100 { min-height: auto; padding: 6rem 0 3rem; }
  .hero-social-proof { gap: 1.5rem; }
  .trust-bar-inner { gap: 0.75rem; }
  .trust-sep { display: none; }
  .review-summary-bar { gap: 1rem; }
  .review-summary-divider { display: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-heading { font-size: 1.75rem; }
  .hero-illustration-wrapper { padding: 1rem; }
  .float-biz-card { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .bento-grid { gap: 0.75rem; }
}

/* ========================= PRINT STYLES ========================= */
@media print {
  .navbar, .whatsapp-float, .scroll-nav, .scroll-indicator { display: none !important; }
  body { font-size: 12pt; }
}

/* ========================= REDUCED MOTION ========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   CREATIVE DIRECTOR GLOBAL REFINEMENTS
   Applied last to enforce premium design principles sitewide.
   "Premium before colorful. Clean before decorative."
   ===================================================================== */

/* ─── Typography: Max Reading Width ─────────────────────────────── */
/* Body copy should never stretch beyond 65 characters per line */
.section-sub,
.hero-subheadline,
.pf-hero-sub,
.faq-hero-sub,
.ch-sub,
.cfp-header p,
.sds-desc p,
.pf-cta-sub,
.faq-cta-text p {
  max-width: 60ch;
}

/* ─── Typography: Heading Letter-Spacing Polish ──────────────────── */
.hero-heading,
.section-heading,
.pf-hero-heading,
.faq-hero-heading,
.ch-headline {
  letter-spacing: -0.04em;
}

/* ─── Section Spacing: 8px Grid Enforcement ─────────────────────── */
.section-padding {
  padding-top:    5rem;   /* 80px = 10 × 8px */
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .section-padding {
    padding-top:    3.5rem; /* 56px = 7 × 8px */
    padding-bottom: 3.5rem;
  }
}

/* ─── Color Discipline: Yellow only on key CTAs ──────────────────── */
/* Ensure section tags use a neutral label, not yellow backgrounds everywhere */
.section-tag {
  background: var(--color-light-2);
  color: var(--color-dark-3);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  display: inline-block;
  margin-bottom: 0.875rem;
}

/* ─── Buttons: Premium Refinements ──────────────────────────────── */
/* Primary CTA button */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-yellow), #FF8F00);
  color: var(--color-dark) !important;
  border-radius: var(--radius-full);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-yellow);
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn-primary-custom::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.btn-primary-custom:hover::before { opacity: 1; }
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,193,7,0.45);
  color: var(--color-dark) !important;
}
.btn-primary-custom:active { transform: translateY(0); }

/* WhatsApp button */
.btn-wa-custom {
  background: #25D366;
  color: var(--color-white) !important;
  border-radius: var(--radius-full);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn-wa-custom:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
  color: var(--color-white) !important;
}

/* Outline dark button */
.btn-outline-dark-custom {
  background: transparent;
  color: var(--color-dark) !important;
  border: 2px solid var(--color-dark);
  border-radius: var(--radius-full);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn-outline-dark-custom:hover {
  background: var(--color-dark);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline white (for dark sections) */
.btn-outline-white {
  background: transparent;
  color: var(--color-white) !important;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-full);
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

/* ─── Cards: Glassmorphism Utility ───────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

/* ─── Text Highlight: Yellow underline accent ────────────────────── */
.text-highlight {
  position: relative;
  display: inline-block;
  color: inherit;
}
.text-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-yellow), #FF8F00);
  border-radius: 3px;
  opacity: 0.45;
  z-index: -1;
}

/* ─── Focus States: Accessible + Premium ────────────────────────── */
:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Call Float: Shared across contact + other pages ───────────── */
/* (Defined in contact.css but used sitewide via script.js) */
.call-float {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(59,130,246,0.4);
  z-index: 990;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
}
.call-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(59,130,246,0.55);
  color: white;
}

/* ─── Print: Hide decorative elements ───────────────────────────── */
@media print {
  .whatsapp-float,
  .call-float,
  .scroll-nav,
  .consult-float-bar,
  .navbar { display: none !important; }
  body { font-size: 12pt; color: black; }
}

/* =====================================================================
   SCROLL ANIMATIONS
   Animation styles are injected dynamically by js/aos.js.
   The trigger class is .hb-anim-in (not .aos-animate).
   No AOS library CSS here — removing CDN dependency was intentional.
   ===================================================================== */
