/* ==========================================================================
   DIGYFYND IT SOLUTIONS - FULL-BLEED 3D BACKGROUND & SLEEK AGENCY LAYOUT
   Typography: ROBOTO (Google Fonts)
   ========================================================================== */

:root {
  /* Clean Light Theme Palette */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.9);
  --bg-accent-light: #eff6ff;

  /* Vibrant & Cool Primary Brand Colors */
  --primary: #2563eb;          /* Electric Royal Blue */
  --primary-hover: #1d4ed8;
  --primary-light: #dbeafe;
  --cyan: #0284c7;             /* Crisp Ocean Cyan */
  --indigo: #4f46e5;           /* Modern Indigo */
  --purple: #7c3aed;           /* Radiant Purple */
  --pink: #db2777;             /* Vibrant Rose Pink */
  --emerald: #10b981;          /* Growth Emerald */
  --amber: #f59e0b;            /* Warm Amber */

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  --grad-vibrant: linear-gradient(135deg, #4f46e5 0%, #db2777 100%);
  --grad-emerald: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --grad-hero: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0284c7 100%);

  /* High Contrast Typography Colors */
  --text-heading: #0f172a;     /* Deep Slate 900 */
  --text-body: #334155;        /* Slate 700 */
  --text-muted: #64748b;       /* Slate 500 */
  --text-dim: #94a3b8;         /* Slate 400 */

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-focus: #bfdbfe;
  --border-accent: rgba(37, 99, 235, 0.25);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.1), 0 8px 16px rgba(15, 23, 42, 0.05);
  --shadow-primary: 0 8px 24px rgba(37, 99, 235, 0.28);
  --shadow-whatsapp: 0 8px 24px rgba(37, 211, 102, 0.35);

  /* Font Family - Pure Roboto */
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.15s ease;
  --trans-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL BASE
   ========================================================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   DYNAMIC MOUSE ANIMATOR (Interactive Cursor & Sparkle Trail)
   ========================================================================== */

#cursorSparkleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99998;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, background-color 0.2s ease;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(37, 99, 235, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background-color 0.3s ease;
}

.custom-cursor-ring.hovering {
  width: 54px;
  height: 54px;
  border-color: var(--pink);
  background-color: rgba(219, 39, 119, 0.08);
  box-shadow: 0 0 16px rgba(219, 39, 119, 0.25);
}

.custom-cursor-ring.clicking {
  transform: translate(-50%, -50%) scale(0.75);
}

@media (hover: none) or (max-width: 768px) {
  #cursorSparkleCanvas,
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}

::selection {
  background: var(--primary-light);
  color: var(--primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-gradient {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-vibrant {
  background: var(--grad-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--trans-normal);
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-heading);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--trans-normal);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-heading);
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(2, 132, 199, 0.28));
  transition: transform var(--trans-normal);
}

.logo:hover .brand-logo-img {
  transform: scale(1.08);
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--trans-fast);
  padding: 0.3rem 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-normal);
}
.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 1002;
  box-shadow: var(--shadow-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--trans-smooth);
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-nav-list a {
  text-decoration: none;
  color: var(--text-heading);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}
.mobile-nav-list a:hover {
  color: var(--primary);
}

/* ==========================================================================
   FULL-SCREEN 3D HERO SECTION
   ========================================================================== */

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  padding: 9.5rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
}

/* The Canvas that spans the ENTIRE background behind the hero */
#fullscreen3dCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-center-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem;
  border-radius: 32px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 255, 255, 0) 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 6px var(--emerald);
}

.hero-title-big {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: #0f172a;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.9);
}

.hero-subtitle-big {
  font-size: clamp(1.12rem, 1.4vw, 1.3rem);
  color: #1e293b;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto 2.5rem;
  max-width: 740px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.95);
}

.hero-btn-group-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Floating Glass Stat Proof Badges */
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hero-proof-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--trans-normal), box-shadow var(--trans-normal);
}

.hero-proof-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.hero-proof-card h4 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-proof-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   PARTNERS / TRUST BAR
   ========================================================================== */

.trust-section {
  padding: 2.2rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
}

.trust-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-body);
  opacity: 0.85;
}

.trust-item i {
  color: var(--primary);
  font-size: 1.4rem;
}

/* ==========================================================================
   SERVICES SECTION (Clean & Impactful Grid)
   ========================================================================== */

.services-section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  transition: transform var(--trans-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-heading);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.68;
  margin-bottom: 1.6rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
}

.service-features li i {
  color: var(--emerald);
  font-size: 0.9rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap var(--trans-fast);
}

.service-btn:hover {
  gap: 0.75rem;
  color: var(--primary-hover);
}

/* ==========================================================================
   ROI SIMULATOR (Sleek Clean Card)
   ========================================================================== */

.roi-section {
  padding: 7rem 0;
  background: var(--bg-surface-subtle);
  position: relative;
  z-index: 2;
}

.roi-card-wrap {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 3.2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
}

.slider-block {
  margin-bottom: 2rem;
}

.slider-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.slider-top label {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-heading);
}

.slider-value-pill {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
}

.clean-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
}

.clean-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  border: 2px solid #fff;
  transition: transform var(--trans-fast);
}

.clean-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.industry-btn {
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.industry-btn:hover,
.industry-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.roi-dashboard {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roi-revenue-highlight {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.roi-revenue-highlight .label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.roi-revenue-highlight .val {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--emerald);
  line-height: 1.1;
}

.roi-sub-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.roi-sub-stat-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.roi-sub-stat-card .title {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.roi-sub-stat-card .num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-heading);
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */

.portfolio-section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-primary);
}

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

.portfolio-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-normal);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.portfolio-preview {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--primary);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
}

.category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ffffff;
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.portfolio-content {
  padding: 1.6rem;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.portfolio-content p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.portfolio-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-light);
}

.stat-pill-green {
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
  padding: 7rem 0;
  background: var(--bg-surface-subtle);
  position: relative;
  z-index: 2;
}

.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.billing-toggle-wrap span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-muted);
}

.billing-toggle-wrap span.active {
  color: var(--text-heading);
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: #cbd5e1;
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background var(--trans-fast);
}

.toggle-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-fast);
}

.toggle-switch.yearly {
  background: var(--primary);
}

.toggle-switch.yearly .toggle-dot {
  transform: translateX(24px);
}

.save-pill {
  background: #dcfce7;
  color: var(--emerald);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.6rem 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--trans-normal);
}

.pricing-card.highlighted {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.35rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.pricing-card .desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
  min-height: 44px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-light);
}

.price-row .curr {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
}

.price-row .amt {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-heading);
}

.price-row .period {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.94rem;
  color: var(--text-body);
}

.features-list li i {
  color: var(--primary);
  margin-top: 3px;
}

.features-list li.dimmed {
  color: var(--text-dim);
  text-decoration: line-through;
}

.features-list li.dimmed i {
  color: var(--text-dim);
}

/* Custom Addon Estimator */
.custom-estimator {
  margin-top: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-sm);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.8rem 0;
}

.addon-pill {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.addon-pill:hover,
.addon-pill.active {
  background: var(--primary-light);
  border-color: var(--primary);
}

.addon-pill .name {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.addon-pill .cost {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS & GOOGLE MAPS REVIEWS (LIVE FEED)
   ========================================================================== */

.testimonials-section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}

.google-reviews-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.2rem 2rem;
  margin-bottom: 2.8rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 1.2rem;
}

.google-brand-summary {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.google-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ea4335;
}

.google-rating-details {
  display: flex;
  flex-direction: column;
}

.google-rating-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-stars {
  color: #f59e0b;
  font-size: 0.95rem;
}

.google-rating-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--trans-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.google-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1a73e8;
  background: #e8f0fe;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.stars {
  color: var(--amber);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  padding: 7rem 0;
  background: var(--bg-surface-subtle);
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.6rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.contact-info-card p {
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.contact-methods-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-heading);
  transition: all var(--trans-fast);
}

.contact-item:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.6rem;
  box-shadow: var(--shadow-md);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-bottom: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
}

.form-ctrl {
  width: 100%;
  padding: 0.88rem 1.15rem;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: var(--text-heading);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--trans-fast);
}

select.form-ctrl {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 14px;
  padding-right: 2.6rem;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.form-ctrl:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

textarea.form-ctrl {
  min-height: 110px;
  resize: vertical;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  text-decoration: none;
  transition: all var(--trans-fast);
}

.social-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--trans-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   FLOATING ACTIONS: LEFT WHATSAPP & CENTER-RIGHT CALL NOW TAB
   ========================================================================== */

/* 1. WhatsApp on LEFT */
.floating-wa-left {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.floating-wa-left:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* 2. Vertical Ribbon "Contact Now" Tab on RIGHT SIDE SCREEN CENTER */
.floating-contact-vertical-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #173b75;
  color: #ffffff;
  padding: 1.4rem 0.75rem 1.2rem;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: -4px 6px 24px rgba(15, 35, 75, 0.4);
  z-index: 9999;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  cursor: pointer;
}

.floating-contact-vertical-tab:hover {
  background: #1e40af;
  box-shadow: -6px 12px 32px rgba(30, 64, 175, 0.55);
  color: #ffffff;
  transform: translateY(-50%) translateX(-6px);
}

.floating-contact-vertical-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-family: var(--font-main);
  text-transform: none;
}

.floating-contact-vertical-tab i {
  font-size: 1.15rem;
  color: #ffffff;
}

/* 3. Scroll to Top on Right Bottom */
.floating-top-right {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--trans-normal);
  z-index: 999;
}

.floating-top-right:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}

.floating-top-right.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==========================================================================
   FAQ SECTION (SEO RICH SNIPPETS)
   ========================================================================== */

.faq-section {
  padding: 7rem 0;
  background: var(--bg-surface);
  position: relative;
  z-index: 2;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-normal);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform var(--trans-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem;
}

/* ==========================================================================
   GMB MAP & NOIDA HEADQUARTERS
   ========================================================================== */

.gmb-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
  background: #ffffff;
}

.gmb-map-frame {
  width: 100%;
  height: 320px;
  border: none;
}

.gmb-meta-bar {
  padding: 1.2rem 1.6rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
}

/* Mobile Quick Floating Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .hero-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roi-card-wrap,
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonials-grid,
  .addon-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Clean Floating Actions on Mobile */
  .floating-wa-left,
  .floating-contact-vertical-tab {
    display: none !important;
  }

  .floating-top-right {
    bottom: 5rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .mobile-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
  }

  .mobile-bottom-bar .btn {
    flex: 1;
    padding: 0.7rem 0.4rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  /* ROI Simulator Mobile Refinements - Full Width Stacking */
  .roi-section {
    padding: 4.5rem 0;
  }

  .roi-card-wrap {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.5rem 1.1rem;
    border-radius: var(--radius-lg);
    gap: 2rem;
    width: 100%;
  }

  .roi-card-wrap > div {
    width: 100%;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .industry-btn {
    padding: 0.65rem 0.35rem;
    font-size: 0.82rem;
  }

  .slider-top label {
    font-size: 0.9rem;
  }

  .slider-value-pill {
    font-size: 0.86rem;
    padding: 0.22rem 0.65rem;
  }

  .roi-dashboard {
    width: 100%;
    padding: 1.6rem 1.2rem;
  }

  .roi-revenue-highlight .val {
    font-size: 2.3rem;
  }

  .roi-sub-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .roi-sub-stat-card {
    padding: 0.85rem;
  }

  .roi-sub-stat-card .num {
    font-size: 1.25rem;
  }

  .roi-dashboard .btn {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  /* Contact Section Mobile Refinements - Full Width Stacking */
  .contact-section {
    padding: 4.5rem 0;
  }

  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
    width: 100%;
  }

  .contact-info-card,
  .contact-form-card {
    width: 100%;
    padding: 1.6rem 1.2rem;
    border-radius: var(--radius-lg);
  }

  .contact-info-card h3 {
    font-size: 1.5rem;
  }

  .contact-info-card p {
    margin-bottom: 1.5rem;
  }

  .contact-form-card .btn-primary {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  /* Premium Floating Bottom Action Capsule */
  .mobile-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: calc(100% - 24px);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    padding: 0.6rem 0.75rem;
  }

  .mobile-bottom-bar .btn {
    flex: 1;
    padding: 0.65rem 0.4rem;
    font-size: 0.84rem;
    white-space: nowrap;
    border-radius: var(--radius-full);
  }

  /* Body Bottom Spacer */
  body {
    padding-bottom: 5.2rem;
  }

  /* Premium Mobile Hero Section */
  .hero-fullscreen {
    padding: 7.2rem 0 3.5rem;
    min-height: auto;
  }

  .hero-center-content {
    padding: 2.2rem 1.3rem 1.8rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.6);
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.1rem;
  }

  .hero-title-big {
    font-size: 1.95rem;
    font-weight: 900;
    line-height: 1.24;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .hero-subtitle-big {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 1.6rem;
  }

  .hero-btn-group-center {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
  }

  .hero-btn-group-center .btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
  }

  .hero-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hero-proof-card {
    padding: 1rem 0.75rem;
    border-radius: 16px;
  }

  .hero-proof-card h4 {
    font-size: 1.5rem;
  }

  .hero-proof-card p {
    font-size: 0.76rem;
  }

  /* General Mobile Typography & Grids */
  .nav-menu, .nav-cta-group .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonials-grid,
  .addon-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlighted {
    transform: none;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .google-reviews-header-card {
    padding: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
