/* ===================================================
   WEBNIFY - DESIGN SYSTEM & MASTER STYLESHEET
   Crafted with modern aesthetics, fluid typography, 
   and responsive micro-interactions.
   =================================================== */

/* -------------------- CSS RESET & TOKENS -------------------- */
:root {
  /* Color Palette */
  --color-primary: #0F172A;
  --color-primary-light: #1E293B;
  --color-secondary: #4F46E5;
  --color-accent-orange: #FF5E3A;
  --color-accent-orange-hover: #E84D29;
  --color-accent-coral: #FF7A00;
  --color-accent-purple: #7928CA;
  --color-accent-pink: #EC4899;
  --color-accent-cyan: #06B6D4;
  --color-success: #10B981;

  /* Neutral & Surfaces */
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0D0F24;
  --bg-dark-card: rgba(255, 255, 255, 0.04);
  --bg-dark-card-hover: rgba(255, 255, 255, 0.08);

  /* Text Colors */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #F1F5F9;
  --text-muted-light: #94A3B8;

  /* Borders & Shadows */
  --border-light: rgba(15, 23, 42, 0.08);
  --border-focus: rgba(79, 70, 229, 0.4);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-hover: rgba(255, 255, 255, 0.2);

  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 10px 30px -5px rgba(255, 94, 58, 0.3);
  --shadow-purple-glow: 0 10px 30px -5px rgba(121, 40, 202, 0.35);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-alt: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Transitions */
  --container-max: 1200px;
  --container-padding: 24px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* -------------------- REUSABLE UTILITIES -------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.text-center { text-align: center; }
.text-white { color: #FFFFFF !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.85) !important; }
.text-muted-light { color: var(--text-muted-light) !important; }

.section-header {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 94, 58, 0.12);
  color: var(--color-accent-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 94, 58, 0.2);
}

.pill-badge.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #FFA07A;
  border-color: rgba(255, 255, 255, 0.15);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  box-shadow: 0 0 8px var(--color-accent-orange);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1E2238 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1E2238 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--color-accent-orange) 0%, #FF7A00 100%);
  color: #FFFFFF;
  padding: 10px 22px;
  box-shadow: var(--shadow-glow);
  font-size: 0.9rem;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(255, 94, 58, 0.45);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #131738 0%, #202758 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-orange) 0%, #FF7A00 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-hero-secondary {
  background: rgba(15, 23, 42, 0.05);
  color: var(--color-primary);
  border: 1px solid var(--border-light);
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-hero-secondary:hover {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--color-primary);
  padding: 12px 24px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--color-accent-orange) 0%, #FF8A00 100%);
  color: #FFFFFF;
  padding: 16px 36px;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(255, 94, 58, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(255, 94, 58, 0.55);
}

.btn-block {
  width: 100%;
}

/* -------------------- SITE HEADER & NAVIGATION -------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.92;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  max-width: 320px;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 36px;
  max-width: 320px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-orange), var(--color-secondary));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

.header-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active .bar-1 {
  transform: translateY(10px) rotate(45deg);
}
.mobile-toggle.active .bar-2 {
  opacity: 0;
}
.mobile-toggle.active .bar-3 {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-drawer.open {
  max-height: 480px;
}

.mobile-drawer-inner {
  padding: 24px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

/* -------------------- HERO SECTION -------------------- */
.hero-section {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255, 94, 58, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(121, 40, 202, 0.06) 0%, transparent 45%);
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.12) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

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

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.avatar-circle:first-child {
  margin-left: 0;
}

.avatar-1 { background: linear-gradient(135deg, #FF5E3A, #FF7A00); }
.avatar-2 { background: linear-gradient(135deg, #4F46E5, #7928CA); }
.avatar-3 { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.avatar-4 { background: linear-gradient(135deg, #10B981, #059669); }

.star-rating {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.proof-subtext {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Hero Visual Right */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-outer {
  width: 105%;
  height: 105%;
  border: 1.5px dashed rgba(79, 70, 229, 0.25);
  animation: rotateOrbit 60s linear infinite;
}

.ring-inner {
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.15) 0%, rgba(6, 182, 212, 0.05) 70%, transparent 100%);
  border-radius: 50%;
}

.hero-image-wrap {
  width: 82%;
  height: 82%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  border: 6px solid #FFFFFF;
  background-color: #E2E8F0;
  position: relative;
  z-index: 2;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

/* Floating Micro Badges */
.floating-badge {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: transform var(--transition-fast);
}

.badge-telegram {
  top: 6%;
  left: 12%;
  background: linear-gradient(135deg, #0088CC, #29B6F6);
  animation: floatBob 4s ease-in-out infinite;
}

.badge-heart {
  top: 28%;
  left: -2%;
  background: linear-gradient(135deg, #E11D48, #F43F5E);
  animation: floatBob 4.5s ease-in-out infinite 0.5s;
}

.badge-code {
  bottom: 18%;
  left: 2%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  animation: floatBob 5s ease-in-out infinite 1s;
}

.badge-instagram {
  top: 30%;
  right: -3%;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
  animation: floatBob 4.8s ease-in-out infinite 1.2s;
}

.badge-twitter {
  bottom: 8%;
  right: 10%;
  background: #000000;
  animation: floatBob 4.2s ease-in-out infinite 0.8s;
}

.floating-metric-chip {
  position: absolute;
  bottom: 2%;
  left: 20%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  z-index: 6;
  animation: floatBob 5.5s ease-in-out infinite 1.5s;
}

.floating-metric-chip .metric-icon {
  font-size: 1.2rem;
}

.floating-metric-chip .metric-info {
  display: flex;
  flex-direction: column;
}

.floating-metric-chip .metric-info strong {
  font-size: 0.85rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.floating-metric-chip .metric-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* -------------------- FLOATING HIGHLIGHT STRIP -------------------- */
.highlight-strip-section {
  position: relative;
  margin-top: -30px;
  margin-bottom: 70px;
  z-index: 10;
}

.highlight-strip-card {
  background: #111432;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  padding: 16px;
  gap: 12px;
  box-shadow: 0 20px 45px rgba(17, 20, 50, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-item {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.strip-intro .strip-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.strip-intro .strip-desc {
  color: var(--text-muted-light);
  font-size: 0.88rem;
  line-height: 1.55;
}

.strip-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA07A;
  margin-bottom: 14px;
}

.strip-subheading {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.strip-desc {
  color: var(--text-muted-light);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Featured Orange Strip Item */
.strip-featured {
  background: linear-gradient(135deg, var(--color-accent-orange) 0%, #FF7A00 100%);
  box-shadow: 0 8px 24px rgba(255, 94, 58, 0.35);
}

.strip-icon-featured {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* -------------------- ABOUT / EXPERIENCE SECTION -------------------- */
.about-section {
  padding: 60px 0 100px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 64px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
}

.about-backdrop-circle {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: #FEE7DB;
  border-radius: 50%;
  z-index: 1;
}

.about-main-img {
  position: relative;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  object-fit: cover;
  margin: 6% auto;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border: 5px solid #FFFFFF;
}

.about-float-badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-light);
  z-index: 5;
}

.badge-exp {
  top: 12%;
  left: -2%;
  animation: floatBob 5s ease-in-out infinite;
}

.badge-stat {
  bottom: 8%;
  right: -2%;
  animation: floatBob 5.5s ease-in-out infinite 1s;
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-chart-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-badge-content {
  display: flex;
  flex-direction: column;
}

.float-badge-content strong {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.float-badge-content span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-content .section-title {
  margin-bottom: 18px;
}

.about-content .section-lead {
  margin-bottom: 32px;
}

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

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #FFFFFF;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.about-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #2563EB;
}

.box-purple {
  background: rgba(121, 40, 202, 0.12);
  color: #7928CA;
}

.box-orange {
  background: rgba(255, 94, 58, 0.12);
  color: var(--color-accent-orange);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* -------------------- SERVICES SECTION (DARK) -------------------- */
.services-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  transition: background-color 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Pinned scroll zone: the section spans 6 viewports while the wheel
   stays sticky, so page scroll scrubs the carousel slide by slide */
.services-section.wheel-pinned {
  height: 100vh;
  padding: 0;
  overflow: visible;
}

/* Sticky only travels inside its parent, so the wrapper must span the pin zone */
.wheel-pinned > .container {
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Vertical wheel carousel (reference hero animation) */
.services-wheel {
  position: relative;
  margin-top: 56px;
  height: min(78vh, 720px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.wheel-pinned .services-wheel {
  position: sticky;
  top: 0;
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  height: 100vh;
  min-height: 100vh;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.wheel-pinned::before {
  display: none;
}

.wheel-pinned .services-wheel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Compact one-line header band sitting in the sticky header zone so the
   wheel animation owns the rest of the viewport */
.wheel-pinned .wheel-header {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 900px);
  margin: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wheel-pinned .wheel-header .pill-badge {
  margin: 0;
}

.wheel-pinned .wheel-header .section-title {
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  margin: 0;
}

.wheel-pinned .wheel-header .section-lead {
  display: none;
}

.wheel-pinned .wheel-slide {
  padding-top: 96px;
}

.wheel-pinned .wheel-giant {
  top: calc(50% + 48px);
}

/* Keep the counter below the sticky header and the controls above the
   fixed WhatsApp button while the wheel covers the whole viewport */
.wheel-pinned .wheel-counter {
  top: 96px;
}

.wheel-pinned .wheel-controls {
  bottom: 104px;
}

.wheel-track {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* the rAF lerp in main.js drives this transform for a fluid glide */
  transition: none;
  will-change: transform;
}

.wheel-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Giant product-style word sitting BEHIND the center plate */
.wheel-giant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%) scale(0.9);
  margin: 0;
  font-family: 'Baloo 2', var(--font-main);
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #FFFFFF;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.wheel-center {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wheel-visual {
  display: block;
  width: clamp(300px, 44vw, 620px);
  height: auto;
  border-radius: 26px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.18);
  animation: wheelBob 7s ease-in-out infinite;
}

/* Floating "ingredient" blobs with depth-of-field blur */
.wheel-float {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background: var(--slide-accent, var(--color-secondary));
  opacity: 0;
  transition: opacity 0.7s ease;
  animation: wheelFloat 7s ease-in-out infinite;
  pointer-events: none;
}

.wf-1 { width: 26px; height: 26px; top: 20%; left: 16%; }
.wf-2 { width: 16px; height: 16px; top: 30%; right: 20%; animation-duration: 9s; }
.wf-3 { width: 44px; height: 44px; top: 30%; left: 6%; filter: blur(7px); animation-duration: 11s; }
.wf-4 { width: 34px; height: 34px; bottom: 18%; right: 14%; filter: blur(4px); animation-duration: 8s; }

.wheel-chip {
  position: absolute;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  animation: wheelFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.pos-a { top: 16%; right: 26%; }
.pos-b { top: 44%; left: 7%; animation-delay: 1.2s; }

.wheel-info {
  position: absolute;
  left: 5%;
  bottom: 7%;
  z-index: 4;
  max-width: 340px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.wheel-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--slide-accent, var(--color-accent-orange)), #FF7A00);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.wheel-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 12px 0 8px;
}

.wheel-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.wheel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition-fast), gap var(--transition-fast);
}

.wheel-cta:hover {
  transform: translateY(-2px);
  gap: 14px;
}

.wheel-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wheel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.wheel-btn:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  transform: translateY(-2px);
}

.wheel-counter {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* Staggered reveal per active slide (text settles after the plate) */
.wheel-slide.active .wheel-center { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.wheel-slide.active .wheel-giant { opacity: 0.96; transform: translate(-50%, -50%) scale(1); transition-delay: 0.3s; }
.wheel-slide.active .wheel-info { opacity: 1; transition-delay: 0.45s; }
.wheel-slide.active .wheel-float { opacity: 0.9; transition-delay: 0.5s; }
.wheel-slide.active .wheel-chip { opacity: 1; transition-delay: 0.55s; }

@keyframes wheelFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(12px, -18px, 0) rotate(8deg); }
}

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

/* Services wheel mobile adjustments */
@media (max-width: 768px) {
  .services-section.wheel-pinned {
    height: 100vh;
  }

  .services-wheel {
    min-height: 560px;
  }

  .wheel-pinned .wheel-header {
    top: 64px;
  }

  .wheel-pinned .wheel-header .pill-badge {
    display: none;
  }

  .wheel-pinned .wheel-slide {
    align-items: center;
    padding-top: 88px;
  }

  .wheel-pinned .wheel-giant {
    top: calc(50% + 44px);
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .wheel-visual {
    width: clamp(230px, 80vw, 420px);
    border-radius: 18px;
  }

  .wheel-info {
    left: 6%;
    right: 6%;
    max-width: none;
    bottom: 5%;
  }

  .wheel-controls {
    right: 14px;
    bottom: 96px;
    flex-direction: row;
  }

  .wheel-counter {
    top: 84px;
    right: 16px;
  }
}

/* -------------------- PRICING SECTION -------------------- */
.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-body);
}

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

.pricing-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.card-featured {
  border: 2px solid #818CF8;
  background: linear-gradient(180deg, #F5F7FF 0%, #FFFFFF 100%);
  box-shadow: var(--shadow-purple-glow);
  transform: scale(1.03);
}

.pricing-card.card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent-orange), #FF7A00);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(255, 94, 58, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pricing-icon-wrap.icon-featured {
  background: linear-gradient(135deg, var(--color-accent-orange), #FF7A00);
  color: #FFFFFF;
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.plan-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 2px;
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing-features .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -------------------- ACHIEVEMENTS / STATS SECTION -------------------- */
.achievements-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.achievements-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 60px;
}

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

.stat-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.stat-peach {
  background: #FFF1EB;
}
.stat-peach .stat-icon-wrap {
  color: #EA580C;
}

.stat-lavender {
  background: #EEF2FF;
}
.stat-lavender .stat-icon-wrap {
  color: #4F46E5;
}

.stat-blue {
  background: #E0F2FE;
}
.stat-blue .stat-icon-wrap {
  color: #0284C7;
}

.stat-coral {
  background: #FEF3C7;
}
.stat-coral .stat-icon-wrap {
  color: #D97706;
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 6px;
}

.stat-counter {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* -------------------- CLIENT SHOWCASE CARDS -------------------- */
/* -------------------- CLIENT LOGO MARQUEE SECTION -------------------- */
.clients-section {
  padding: 85px 0 95px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.clients-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 20px;
  margin-top: 8px;
  /* Smooth edge fade masks for seamless horizontal flow */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: clientsTicker 28s linear infinite;
  will-change: transform;
}

.clients-marquee-wrapper:hover .clients-marquee-track {
  animation-play-state: paused;
}

@keyframes clientsTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-marquee-item {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 86px;
  padding: 14px 32px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Subtle top accent highlight on card */
.client-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.35), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.client-marquee-item:hover .client-logo-card {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 14px 30px -8px rgba(79, 70, 229, 0.16), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.client-marquee-item:hover .client-logo-card::before {
  opacity: 1;
}

/* Brand Logos Base */
.client-brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  filter: grayscale(10%) opacity(0.92);
}

.client-marquee-item:hover .client-brand-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.04);
}

/* Logo Specific Optical Sizing */
.logo-glowgadi {
  max-height: 48px;
  max-width: 145px;
}

.logo-opdone {
  max-height: 44px;
  max-width: 165px;
}

.logo-jagdambbe {
  max-height: 40px;
  max-width: 175px;
}

.logo-baillji {
  max-height: 52px;
  max-width: 125px;
}

/* -------------------- CTA BANNER SECTION -------------------- */
.cta-banner-section {
  padding: 80px 0;
  background: var(--bg-body);
}

.cta-banner-card {
  background: radial-gradient(circle at 90% 20%, rgba(255, 94, 58, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(121, 40, 202, 0.3) 0%, transparent 60%),
              #111432;
  border-radius: var(--radius-xl);
  padding: 70px 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(17, 20, 50, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner-subtitle {
  color: var(--text-muted-light);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* -------------------- CONTACT SECTION -------------------- */
.contact-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.contact-card-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  border: 1px solid var(--border-light);
}

.card-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 94, 58, 0.12);
  color: var(--color-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-circle.circle-purple {
  background: rgba(121, 40, 202, 0.12);
  color: var(--color-accent-purple);
}

.card-icon-circle.circle-whatsapp {
  background: rgba(37, 211, 102, 0.14);
  color: #25D366;
}

.contact-highlight-link {
  color: var(--color-primary);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.contact-highlight-link:hover {
  color: var(--color-secondary);
}

.contact-wa-link {
  color: #25D366;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.contact-wa-link:hover {
  color: #1EBE5B;
  text-decoration: underline;
}

.sep-dot {
  margin: 0 6px;
  color: var(--text-muted);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-social-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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(--color-primary);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-wa-social {
  color: #25D366;
}

.btn-wa-social:hover {
  background: #25D366 !important;
  color: #FFFFFF !important;
  border-color: #25D366 !important;
}

.f-link {
  color: var(--text-muted-light);
  transition: color var(--transition-fast);
}

.f-link:hover {
  color: #FFFFFF;
}

/* Contact Form Card */
.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-label .required {
  color: var(--color-accent-orange);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  color: var(--color-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-secondary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-control.error {
  border-color: #EF4444;
  background: #FEF2F2;
}

.field-error {
  font-size: 0.78rem;
  color: #EF4444;
  display: none;
}

.field-error.show {
  display: block;
}

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

.btn-submit {
  padding: 14px;
  font-size: 1rem;
}

/* -------------------- FOOTER -------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-muted-light);
  padding-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.f-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.92rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.newsletter-form {
  margin-bottom: 20px;
}

.newsletter-input-group {
  display: flex;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 6px;
}

.newsletter-input {
  background: transparent;
  border: none;
  color: #FFFFFF;
  padding: 8px 14px;
  font-size: 0.88rem;
  flex-grow: 1;
  width: 100%;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--color-accent-orange), #FF7A00);
  color: #FFFFFF;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.newsletter-btn:hover {
  opacity: 0.9;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-social-icons a {
  color: var(--text-muted-light);
}

.footer-social-icons a:hover {
  color: #FFFFFF;
}

.footer-bottom-bar {
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

.back-to-top {
  color: var(--color-accent-orange) !important;
  font-weight: 700;
}

/* -------------------- TOAST NOTIFICATION -------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: #111432;
  color: #FFFFFF;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--color-accent-orange);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  animation: slideToast 0.35s ease forwards;
}

/* -------------------- ANIMATIONS -------------------- */
@keyframes floatBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideToast {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- FLOATING WHATSAPP CTA -------------------- */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wa-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-smooth);
  animation: pulseWa 2.8s infinite;
}

.floating-wa-btn:hover .wa-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
}

.wa-tooltip {
  background: #111432;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  pointer-events: none;
  white-space: nowrap;
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulseWa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* -------------------- RESPONSIVE BREAKPOINTS -------------------- */
@media (max-width: 1024px) {
  .hero-container,
  .about-container,
  .achievements-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .highlight-strip-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card.card-featured {
    transform: none;
  }
  .pricing-card.card-featured:hover {
    transform: translateY(-6px);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-action .btn-header-cta {
    display: none;
  }

  .mobile-toggle,
  .mobile-drawer {
    display: flex;
  }

  .brand-logo-img {
    height: 28px;
    max-width: 240px;
  }

  .highlight-strip-card {
    grid-template-columns: 1fr;
  }

  /* Client Marquee Mobile Adjustments */
  .clients-marquee-wrapper {
    padding: 20px 0 10px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }

  .clients-marquee-track {
    gap: 18px;
    animation-duration: 22s;
  }

  .client-logo-card {
    min-width: 170px;
    height: 72px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
  }

  .logo-glowgadi {
    max-height: 38px;
    max-width: 120px;
  }

  .logo-opdone {
    max-height: 34px;
    max-width: 135px;
  }

  .logo-jagdambbe {
    max-height: 32px;
    max-width: 145px;
  }

  .logo-baillji {
    max-height: 42px;
    max-width: 105px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
  }

  .cta-banner-card {
    padding: 48px 24px;
  }

  .hero-visual-frame {
    max-width: 320px;
  }

  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
  }

  .wa-tooltip {
    display: none;
  }
}
