@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://use.typekit.net/mwe5hxs.css');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&display=swap');

:root {
  --font-primary: 'Kumbh Sans', sans-serif;
  --font-heading: 'roc-grotesk', sans-serif;
  
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  
  --border-color: #E2E8F0;
  --border-light: rgba(15, 23, 42, 0.08);
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  
  --color-gold: #D97706;
  --color-purple: #9333EA;
  --color-indigo: #3B54A4;
  --color-dark-gray: #F1F5F9;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(226, 232, 240, 0.9);
  --glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Custom Scrollbar (Dark Theme) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #23232F;
  border-radius: 9999px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: #3B54A4;
}

/* Lenis Smooth Scroll Setup */
html.lenis, html.lenis body {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Interactive Cursor (Gold/Purple Theme) */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .custom-cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(244, 198, 70, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  }

  /* Hover states for interactive items */
  .custom-cursor-hover .custom-cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--color-purple);
    background-color: rgba(175, 98, 254, 0.05);
  }
}

/* Watermark Background Text (Witrex Style) */
.watermark-text-bg {
  font-family: var(--font-heading);
  font-size: 15vw;
  font-weight: 800;
  line-height: 1;
  color: rgba(15, 23, 42, 0.04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
  transform: translateY(-20px);
}

/* Glassmorphism Styles (Witrex Style) */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

/* Light-bluish Scrolled Header state */
#main-header.scrolled {
  background: rgba(240, 246, 255, 0.94) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 84, 164, 0.18);
  box-shadow: 0 10px 30px -10px rgba(59, 84, 164, 0.12);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Service Categories Marquee Card Badge */
.marquee-card-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.marquee-card-item:hover {
  background: linear-gradient(135deg, rgba(59, 84, 164, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
  border-color: rgba(59, 84, 164, 0.3);
  color: #3B54A4;
  transform: translateY(-2px);
}

/* Outlined Grid Layout (Witrex Style) */
.outline-grid-container {
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.outline-grid-item {
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.4s ease;
}

.outline-grid-item:hover {
  background-color: rgba(241, 245, 249, 0.8);
}

/* Text Gradient Effect */
.text-gradient {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, var(--color-purple) 0%, #3B54A4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #3B54A4 0%, #9333EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sidebar circular reveal overlay overrides */
#right-sidebar {
  transform: none !important;
  clip-path: circle(0% at calc(100% - 40px) 45px);
  pointer-events: none;
  transition: clip-path 2.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#right-sidebar.active {
  pointer-events: auto;
}

/* Custom thin scrollbar for sidebar */
#right-sidebar::-webkit-scrollbar {
  width: 4px;
}
#right-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
#right-sidebar::-webkit-scrollbar-thumb {
  background: #23232F;
  border-radius: 10px;
}
#right-sidebar::-webkit-scrollbar-thumb:hover {
  background: #F4C646;
}

/* Logo Marquee Layout */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: marquee-animation 25s linear infinite;
  word-spacing: 0.3em;
  padding: 0.5rem 0;
}

@keyframes marquee-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hover-Lift Card Style */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 198, 70, 0.3);
  box-shadow: 0 15px 35px -10px rgba(244, 198, 70, 0.15);
}

/* Gradient Glow effects */
.bg-glow {
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
}

/* Grid Pattern Overlay (Subtle Light Pattern) */
.grid-pattern {
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(226, 232, 240, 0.8) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.8) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, #000 75%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, #000 75%, transparent 100%);
}

/* Custom Outlined Button */
.btn-gold-outline {
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background-color: var(--color-gold);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.2);
}

.btn-gold-solid {
  background-color: var(--color-gold);
  color: #FFFFFF;
  border: 1.5px solid var(--color-gold);
  transition: all 0.3s ease;
}

.btn-gold-solid:hover {
  background-color: transparent;
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.25);
}

/* ==========================================================================
   "Our works" Section Transition & Hover Preview Styles
   ========================================================================== */
.works-blend {
  mix-blend-mode: normal;
  color: var(--text-primary);
}

.works-row {
  position: relative;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Project Image Hover Preview Card */
#works-hover-container {
  display: none !important;
  position: fixed;
  width: 320px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.95);
  z-index: 9999;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#works-hover-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Marquee Card Hover Effect (Transparent & Outline) */
.marquee-card-item {
  background-color: #F1F5F9;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-card-item:hover {
  background-color: transparent !important;
  border-color: #0F172A !important;
  color: transparent !important;
  -webkit-text-stroke: 1px #0F172A;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(15, 23, 42, 0.1);
}

/* Overrides for Marquee inside a White Section */
.bg-white .marquee-card-item {
  background-color: transparent !important;
  color: transparent !important;
  border: none !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800;
  -webkit-text-stroke: 2.5px #334155 !important;
  box-shadow: none !important;
}

.bg-white .marquee-card-item:hover {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #0F172A !important;
  -webkit-text-stroke: 0px transparent !important;
  transform: scale(1.08);
  box-shadow: none !important;
}

/* Typing text cursor caret */
#typing-text::after {
  content: '|';
  animation: blink 0.75s step-end infinite;
  margin-left: 4px;
  color: #3B54A4;
  font-weight: 300;
}
@keyframes blink {
  from, to { color: transparent }
  50% { color: #3B54A4 }
}

/* Timeline Custom Dot */
.timeline-dot-inner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0F172A;
  border: 6px solid #FFFFFF;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-dot-inner:hover {
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.8);
  background-color: #F4C646;
}

/* Capabilities list custom bullets */
.capability-bullet {
  width: 6px;
  height: 6px;
  background-color: #3B54A4;
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.group:hover .capability-bullet {
  transform: scale(1.3) rotate(45deg);
  background-color: #F4C646;
}

/* ==========================================================================
   "Our Magic Team" Flip-Card Section
   ========================================================================== */

.team-section {
  background: #fff;
  padding: 32px 0 16px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .team-section {
    padding: 48px 0 24px 0;
  }
}
@media (min-width: 1024px) {
  .team-section {
    padding: 56px 0 32px 0;
  }
}

.team-section-header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .team-section-header {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .team-section-header {
    margin-bottom: 64px;
  }
}

.team-section-header .section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F4C646;
  margin-bottom: 12px;
}

.team-section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B0B0D;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.team-section-header p {
  font-size: 1rem;
  color: #475569;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-section-header p strong {
  color: #cc1c1c;
  font-weight: 700;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 320px;
  }
}

/* Flip Card Wrapper */
.flip-card {
  perspective: 1000px;
  height: 380px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.45, 0, 0.15, 1);
  border-radius: 18px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back shared */
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ---- FRONT ---- */
.flip-card-front {
  background: #0d0d11;
}

.flip-card-front .member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
  display: block;
}

.flip-card-front .member-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 100%);
}

.flip-card-front .member-badge .badge-inner {
  display: inline-block;
  background: #C07320;
  padding: 8px 14px;
  border-radius: 4px;
}

.flip-card-front .member-badge .badge-inner h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}

.flip-card-front .member-badge .badge-inner span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
}

/* ---- BACK ---- */
.flip-card-back {
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  box-shadow: inset 0 0 60px rgba(175, 98, 254, 0.08);
}

.flip-card-back::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,198,70,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.flip-card-back .cartoon-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F4C646;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateZ(10px) scale(0.95);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.8s ease, border-color 0.4s ease;
}

.flip-card-back .cartoon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back .back-name {
  font-size: 1rem;
  font-weight: 800;
  color: #F4C646;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transform: translateZ(5px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.flip-card-back .back-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  transform: translateZ(5px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.flip-card-back .back-socials {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
  transform: translateZ(5px);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 3D Pop Out Transitions when Flipped / Hovered */
.flip-card:hover .flip-card-back .cartoon-wrap {
  transform: translateZ(75px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(244, 198, 70, 0.2);
  border-color: #ffffff;
}

.flip-card:hover .flip-card-back .back-name {
  transform: translateZ(45px);
}

.flip-card:hover .flip-card-back .back-role {
  transform: translateZ(35px);
}

.flip-card:hover .flip-card-back .back-socials {
  transform: translateZ(25px);
}

.flip-card-back .back-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,198,70,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.flip-card-back .back-socials a:hover {
  background: #F4C646;
  border-color: #F4C646;
  color: #0B0B0D;
  transform: scale(1.12);
}

/* Hover hint on front */
.flip-card-front .hover-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.flip-card:hover .flip-card-front .hover-hint {
  opacity: 1;
  transform: translateY(0);
}

.flip-card-front .hover-hint i {
  color: #fff;
  font-size: 12px;
}

/* ==========================================================================
   Dark FAQ Two-Column Grid
   ========================================================================== */

/* Responsive: stack to 1 column on tablet/mobile */
@media (max-width: 768px) {
  .faq-two-col-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Active (open) FAQ item */
.faq-dark-item.active,
.faq-item.active {
  border-color: rgba(59, 84, 164, 0.35) !important;
  background: #F0F6FF !important;
  box-shadow: 0 4px 20px rgba(59, 84, 164, 0.08) !important;
}

/* Hover state for FAQ items */
.faq-dark-item:hover,
.faq-item:hover {
  border-color: rgba(59, 84, 164, 0.25) !important;
  transition: border-color 0.25s ease;
}

/* Rotate chevron icon when item is open */
.faq-dark-item.active .faq-icon,
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(59, 84, 164, 0.12) !important;
  color: #3B54A4 !important;
}

/* ==========================================================================
   Animated Contact Form — ct- component styles
   ========================================================================== */

/* Label */
.ct-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 8px;
}

/* Input wrapper — icon + field + focus bar */
.ct-input-wrap {
  position: relative;
}

.ct-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748B;
  font-size: 13px;
  pointer-events: none;
  transition: color 0.25s ease;
  z-index: 1;
}

.ct-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  color: #0F172A;
  font-size: 0.85rem;
  font-family: var(--font-primary);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.ct-input::placeholder {
  color: #94A3B8;
}

.ct-input:focus {
  border-color: #3B54A4;
  background: #F8FAFC;
  box-shadow: 0 0 0 3px rgba(59, 84, 164, 0.1);
}

.ct-input:focus + .ct-focus-bar,
.ct-input-wrap:focus-within .ct-icon {
  color: #3B54A4;
}

/* Blue animated bottom-bar on focus */
.ct-focus-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B54A4, transparent);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.ct-input:focus ~ .ct-focus-bar {
  width: 80%;
}

/* Select styling */
.ct-select {
  cursor: pointer;
  color: #0F172A;
}

.ct-select option {
  background: #FFFFFF;
  color: #0F172A;
}

/* Typing dots indicator */
.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.typing-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F4C646;
  animation: dotBounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-4px); opacity: 1; }
}

/* Cursor blink for contact heading */
@keyframes ctCursorBlink {
  from, to { opacity: 1; }
  50%       { opacity: 0; }
}

/* Green online pulse */
@keyframes ctPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Submit button hover */
#ct-submit-btn:hover {
  background: #ffd257 !important;
  box-shadow: 0 8px 25px rgba(244, 198, 70, 0.3);
  transform: translateY(-1px);
}

#ct-submit-btn:hover #ct-btn-icon {
  transform: translateX(4px) rotate(-30deg);
}

/* Form field stagger entrance — set via JS */
.contact-form-field {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-form-field.ct-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Interactive Mascot Chibi Anime Girl Doll Styles & Animations
   ========================================================================== */

#mascot-upper-body {
  animation: bodyBreathe 3.8s ease-in-out infinite;
  transform-origin: 80px 110px;
}

/* Leg Swing Animations */
#mascot-leg-left {
  animation: legSwingLeft 4s ease-in-out infinite alternate;
  transform-origin: 71px 110px;
}

#mascot-leg-right {
  animation: legSwingRight 4.4s ease-in-out infinite alternate;
  transform-origin: 89px 110px;
}

/* Float (Breathing) Animation */
@keyframes bodyBreathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px); /* gentle breathing bob */
  }
}

/* Leg swinging keyframes */
@keyframes legSwingLeft {
  0% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(4deg);
  }
}

@keyframes legSwingRight {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

/* Dual Eye Blink Animation */
.mascot-eye-clip {
  animation: mascotBlink 4.5s ease-in-out infinite;
}

#mascot-eye-clip-left {
  transform-origin: 69px 50px;
}

#mascot-eye-clip-right {
  transform-origin: 91px 50px;
}

@keyframes mascotBlink {
  0%, 93%, 100% {
    transform: scaleY(1);
  }
  96% {
    transform: scaleY(0.08);
  }
}

/* Smooth tracking transition */
.mascot-iris-group {
  transition: transform 0.1s ease-out;
}

/* Eyelid defaults */
.mascot-eyelid-top {
  transform: translateY(-12px) rotate(0deg);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mascot-eyelid-bottom {
  transform: translateY(12px) rotate(0deg);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Happy Emotion (Start Typing) */
#mascot-container.emotion-happy .mascot-eyelid-top {
  transform: translateY(-7px) rotate(0deg);
}
#mascot-container.emotion-happy .mascot-eyelid-bottom {
  transform: translateY(-5px) rotate(0deg); /* curves up from bottom, squinting happily */
}

/* Inactive/Idle Emotion (Stop Typing) - Keep eyes fully open & awake */
#mascot-container.emotion-sad #mascot-eyelid-left-top,
#mascot-container.emotion-sad #mascot-eyelid-right-top {
  transform: translateY(-12px) rotate(0deg);
}
#mascot-container.emotion-sad #mascot-eyelid-left-bottom,
#mascot-container.emotion-sad #mascot-eyelid-right-bottom {
  transform: translateY(12px) rotate(0deg);
}

/* Celebration Emotion (Submitted) */
#mascot-container.emotion-celebration .mascot-eyelid-top {
  transform: translateY(-12px) rotate(0deg); /* fully open */
}
#mascot-container.emotion-celebration .mascot-eyelid-bottom {
  transform: translateY(12px) rotate(0deg);
}

/* Celebration Star-Eyes styles */
#mascot-container.emotion-celebration .mascot-stars {
  transform: scale(1) !important;
  opacity: 1 !important;
  animation: starPulse 1.5s ease-in-out infinite alternate;
}

#mascot-star-left {
  transform-origin: 69px 50px;
}

#mascot-star-right {
  transform-origin: 91px 50px;
}

#mascot-container.emotion-celebration .mascot-iris-group {
  opacity: 0;
}

@keyframes starPulse {
  0% {
    transform: scale(0.9) rotate(-5deg);
  }
  100% {
    transform: scale(1.1) rotate(5deg);
  }
}

/* ==========================================================================
   Expressive Mascot Emotions (Mouth, Eyebrows, Blush Cheeks)
   ========================================================================== */

/* Mouth visibility states */
.mascot-mouth {
  display: none;
}
#mascot-container.emotion-sad #mascot-mouth-neutral,
#mascot-container:not(.emotion-happy):not(.emotion-celebration) #mascot-mouth-neutral {
  display: block;
}
#mascot-container.emotion-happy #mascot-mouth-happy {
  display: block;
}
#mascot-container.emotion-celebration #mascot-mouth-celebration {
  display: block;
}

/* Eyebrow transition & transform origins */
#mascot-eyebrow-left {
  transform-origin: 68px 38px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#mascot-eyebrow-right {
  transform-origin: 92px 38px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Happy (Typing) Eyebrows: raised and curved */
#mascot-container.emotion-happy #mascot-eyebrow-left {
  transform: translateY(-2.5px) rotate(-3deg);
}
#mascot-container.emotion-happy #mascot-eyebrow-right {
  transform: translateY(-2.5px) rotate(3deg);
}

/* Celebration (Success) Eyebrows: raised higher */
#mascot-container.emotion-celebration #mascot-eyebrow-left {
  transform: translateY(-4px) scaleY(0.9);
}
#mascot-container.emotion-celebration #mascot-eyebrow-right {
  transform: translateY(-4px) scaleY(0.9);
}

/* Inactive/Idle Eyebrows: relaxed and neutral */
#mascot-container.emotion-sad #mascot-eyebrow-left,
#mascot-container:not(.emotion-happy):not(.emotion-celebration) #mascot-eyebrow-left {
  transform: translateY(0) rotate(0);
}
#mascot-container.emotion-sad #mascot-eyebrow-right,
#mascot-container:not(.emotion-happy):not(.emotion-celebration) #mascot-eyebrow-right {
  transform: translateY(0) rotate(0);
}

/* Cheeks Blush transition & scale */
.mascot-blush {
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
  opacity: 0.6;
}
#mascot-blush-left {
  transform-origin: 63px 56px;
}
#mascot-blush-right {
  transform-origin: 97px 56px;
}

/* Brighter and bigger blush during active typing (happy) and success (celebration) */
#mascot-container.emotion-happy .mascot-blush {
  transform: scale(1.35);
  opacity: 0.95;
}
#mascot-container.emotion-celebration .mascot-blush {
  transform: scale(1.5);
  opacity: 1;
}

/* Mascot container base (with drop-shadow and smooth 3D depth) */
#mascot-container {
  filter: drop-shadow(0 12px 18px rgba(2, 0, 2, 0.65));
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Clapping Animation Support */
#mascot-arm-left {
  transform-origin: 64px 84px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#mascot-arm-right {
  transform-origin: 96px 84px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Left arm celebration (clapping) */
#mascot-container.emotion-celebration #mascot-arm-left {
  animation: leftClap 0.28s ease-in-out infinite alternate;
}

/* Right arm celebration (clapping) */
#mascot-container.emotion-celebration #mascot-arm-right {
  animation: rightClap 0.28s ease-in-out infinite alternate;
}

/* Clapping Sparkle animation */
#mascot-container.emotion-celebration #mascot-clap-spark path {
  animation: clapSpark 0.28s ease-in-out infinite alternate;
}

@keyframes leftClap {
  0% {
    transform: rotate(-58deg);
  }
  100% {
    transform: rotate(-72deg);
  }
}

@keyframes rightClap {
  0% {
    transform: rotate(58deg);
  }
  100% {
    transform: rotate(72deg);
  }
}

@keyframes clapSpark {
  0% {
    transform: scale(0.5);
    opacity: 0;
    transform-origin: 80px 105px;
  }
  80% {
    transform: scale(1.2);
    opacity: 0.95;
    transform-origin: 80px 105px;
  }
  100% {
    transform: scale(1.35);
    opacity: 1;
    transform-origin: 80px 105px;
  }
}

/* =====================================================
   NAVBAR ANIMATIONS
   ===================================================== */

/* Base navbar */
.navbar-animated {
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              box-shadow 0.4s ease;
  animation: navbarSlideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  position: fixed;
  top: 0; left: 0; right: 0;
}

@keyframes navbarSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Animated shimmer border at bottom */
.navbar-border-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(175,98,254,0.6) 20%,
    rgba(244,198,70,0.9) 50%,
    rgba(59,84,164,0.6) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: borderShimmer 4s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.navbar-animated.scrolled .navbar-border-line { opacity: 1; }

@keyframes borderShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Scrolled: glassmorphism */
.navbar-animated.scrolled {
  background: rgba(2, 0, 2, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.55);
}

/* ── Logo ── */
.navbar-logo { position: relative; }

.logo-letter {
  color: #ffffff;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}
.navbar-logo:hover .logo-letter {
  animation: logoLetterWave 0.6s ease forwards;
}
.navbar-logo:hover .logo-letter:nth-child(1) { animation-delay: 0s;    }
.navbar-logo:hover .logo-letter:nth-child(2) { animation-delay: 0.07s; }
.navbar-logo:hover .logo-letter:nth-child(3) { animation-delay: 0.14s; }

@keyframes logoLetterWave {
  0%   { transform: translateY(0);   color: #ffffff; }
  40%  { transform: translateY(-6px); color: #F4C646; }
  100% { transform: translateY(0);   color: #ffffff; }
}

.logo-accent {
  color: #F4C646;
  display: inline-block;
  transition: letter-spacing 0.3s ease;
}
.navbar-logo:hover .logo-accent { letter-spacing: 0.04em; }

.logo-pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #AF62FE;
  margin-left: 4px;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(175,98,254,0.6);
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(175,98,254,0.6); transform: scale(1);   }
  50%     { box-shadow: 0 0 0 7px rgba(175,98,254,0); transform: scale(1.25); }
}

/* ── Sliding pill indicator ── */
.nav-link {
  position: relative; z-index: 1;
  font-size: 0.875rem; font-weight: 500;
  color: #475569;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-8px);
  animation: navLinkFadeIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.nav-link:nth-child(2)  { animation-delay: 0.15s; }
.nav-link:nth-child(3)  { animation-delay: 0.22s; }
.nav-link:nth-child(4)  { animation-delay: 0.29s; }
.nav-link:nth-child(5)  { animation-delay: 0.36s; }
.nav-link:nth-child(6)  { animation-delay: 0.43s; }
.nav-link:nth-child(7)  { animation-delay: 0.50s; }

@keyframes navLinkFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav-link:hover, .nav-link.nav-link-active {
  color: #0F172A;
  font-weight: 600;
}

.nav-pill {
  position: absolute;
  top: 50%; left: 0;
  height: 34px;
  border-radius: 999px;
  background: rgba(59, 84, 164, 0.1);
  border: 1px solid rgba(59, 84, 164, 0.25);
  pointer-events: none; z-index: 0;
  transition: left 0.35s cubic-bezier(0.34,1.56,0.64,1),
              width 0.35s cubic-bezier(0.34,1.56,0.64,1);
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(59, 84, 164, 0.12);
}

/* ── CTA button ── */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: #020002;
  background: #F4C646;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: navLinkFadeIn 0.5s 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.navbar-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.navbar-cta:hover::before { transform: translateX(100%); }
.navbar-cta:hover {
  box-shadow: 0 0 22px rgba(244,198,70,0.5);
  transform: translateY(-1px);
}
.navbar-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.navbar-cta:hover .navbar-cta-arrow { transform: translateX(4px); }

/* ── Dots grid button ── */
.dots-btn {
  background: none; border: none; cursor: pointer;
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  animation: navLinkFadeIn 0.5s 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
.dots-grid {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  grid-template-rows: repeat(3, 5px);
  gap: 3px;
}
.dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #A3A3B4;
  transition: transform 0.3s ease, background 0.3s ease;
}
.dots-btn:hover .dot { background: #F4C646; }
.dots-btn:hover .dot:nth-child(1) { transform: translate(-2px,-2px); }
.dots-btn:hover .dot:nth-child(3) { transform: translate(2px,-2px);  }
.dots-btn:hover .dot:nth-child(7) { transform: translate(-2px,2px);  }
.dots-btn:hover .dot:nth-child(9) { transform: translate(2px,2px);   }
.dots-btn:hover .dot:nth-child(5) { background: #AF62FE; transform: scale(1.6); }

/* =====================================================
   FOOTER ANIMATIONS
   ===================================================== */

.footer-animated {
  background: #020002;
  border-top: 1px solid #23232F;
}

/* Floating orbs */
.footer-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.footer-orb-gold {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F4C646 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-duration: 9s;
}
.footer-orb-purple {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #AF62FE 0%, transparent 70%);
  bottom: -80px; right: 0;
  animation-duration: 11s;
  animation-delay: -4s;
  opacity: 0.1;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1);     }
  to   { transform: translate(40px,-30px) scale(1.1); }
}

/* Dot grid overlay */
.footer-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; opacity: 0.6;
}

/* Scrolling ticker */
.footer-ticker-wrap {
  width: 100%; overflow: hidden;
  border-bottom: 1px solid #23232F;
  border-top: 1px solid rgba(244,198,70,0.15);
  background: rgba(10,10,14,0.6);
  padding: 12px 0;
}
.footer-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.footer-ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}
.footer-ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #7E7A91; padding: 0 40px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.footer-ticker-item:hover { color: #F4C646; }
.footer-ticker-dot {
  color: #F4C646; font-size: 0.45rem;
  animation: dotSpin 3s linear infinite;
}
@keyframes dotSpin {
  to { transform: rotate(360deg); }
}

/* Big headline */
.footer-headline-row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 32px; padding: 64px 0 40px;
  flex-wrap: wrap;
}
.footer-big-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.08;
  color: #F7F7F8; letter-spacing: -0.02em;
  margin: 0;
}
.footer-headline-accent {
  font-style: normal;
  background: linear-gradient(135deg, #F4C646 0%, #AF62FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer CTA */
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
  color: #020002;
  background: linear-gradient(135deg, #F4C646, #f0b429);
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.footer-cta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.footer-cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(244,198,70,0.4); }
.footer-cta-btn:hover::before { opacity: 1; }
.footer-cta-arrow { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.footer-cta-btn:hover .footer-cta-arrow { transform: translateX(5px); }

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #23232F 30%, rgba(244,198,70,0.2) 50%, #23232F 70%, transparent);
  margin-bottom: 48px;
}

/* Column headings */
.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 10px; position: relative;
}
.footer-col-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 20px; height: 2px;
  background: #F4C646; border-radius: 2px;
  transition: width 0.35s ease;
}
.footer-col:hover .footer-col-heading::after { width: 48px; }

/* Nav links */
.footer-nav-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: #A3A3B4;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}
.footer-nav-link:hover { color: #ffffff; gap: 14px; }
.footer-link-arrow {
  color: #F4C646; font-size: 0.75rem; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.footer-nav-link:hover .footer-link-arrow { transform: translateX(4px); }

/* Social icons */
.footer-social-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid #23232F;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #A3A3B4;
  text-decoration: none; position: relative; overflow: hidden;
  transition: border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.footer-social-icon::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #F4C646, #AF62FE);
  opacity: 0; transition: opacity 0.3s ease;
}
.footer-social-icon i { position: relative; z-index: 1; }
.footer-social-icon:hover {
  color: #020002; border-color: transparent;
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(244,198,70,0.3);
}
.footer-social-icon:hover::before { opacity: 1; }

/* Contact chips */
.footer-contact-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600;
  color: #A3A3B4;
  background: rgba(35,35,47,0.5);
  border: 1px solid #23232F;
  border-radius: 999px; padding: 6px 14px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-contact-chip:hover {
  background: rgba(244,198,70,0.1);
  border-color: rgba(244,198,70,0.4);
  color: #F4C646;
}
.footer-chip-flag { font-size: 1rem; }

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  border: 1px solid #23232F;
  border-radius: 12px; overflow: hidden;
  background: #0A0A0E;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.footer-newsletter-form:focus-within {
  border-color: rgba(244,198,70,0.5);
  box-shadow: 0 0 0 3px rgba(244,198,70,0.07);
}
.footer-email-input {
  flex: 1; padding: 10px 14px;
  font-size: 0.78rem; background: transparent;
  color: #ffffff; border: none; outline: none; min-width: 0;
}
.footer-email-input::placeholder { color: #7E7A91; }
.footer-email-btn {
  padding: 10px 16px; background: #F4C646;
  color: #020002; border: none; cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.25s, transform 0.2s;
}
.footer-email-btn:hover { background: #e8b630; transform: scale(1.05); }

/* Badges */
.footer-badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.67rem; font-weight: 600;
  color: #7E7A91;
  background: rgba(35,35,47,0.5);
  border: 1px solid #23232F;
  border-radius: 999px; padding: 3px 10px;
  letter-spacing: 0.04em;
}

/* Copyright */
.footer-bottom {
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 32px;
  border-top: 1px solid #23232F;
  font-size: 0.68rem; color: #7E7A91;
  letter-spacing: 0.03em;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

/* Scroll reveal */
.footer-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--reveal-delay, 0s);
}
.footer-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Services Page — Styles
   ============================================ */

/* Section number text-stroke outline */
.text-stroke {
  font-weight: 900;
  font-family: var(--font-heading);
  -webkit-text-stroke: 1.5px rgba(247, 247, 248, 0.08);
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  user-select: none;
  /* Belt-AND-suspenders: both display:none and font-size:0 so it cannot show on mobile */
  display: none !important;
  font-size: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
@media (min-width: 768px) {
  .text-stroke {
    display: block !important;
    font-size: 6rem !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
  }
}
@media (min-width: 1024px) {
  .text-stroke {
    font-size: 9rem !important;
  }
}

/* Service Interactive Cards */
.service-card-interactive {
  position: relative;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.service-card-interactive::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 198, 70, 0.05) 0%, rgba(175, 98, 254, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card-interactive:hover { border-color: var(--color-purple); box-shadow: 0 10px 40px -10px rgba(175, 98, 254, 0.15); }
.service-card-interactive:hover::before { opacity: 1; }

/* Service Visual Wrapper */
.service-visual-wrapper { perspective: 1000px; }

/* Visual Panel — compact on mobile, full aspect-ratio on tablet+ */
.service-visual-panel {
  position: relative;
  width: 100%;
  max-height: 220px;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: rgba(13, 13, 17, 0.5);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}
@media (min-width: 768px) {
  .service-visual-panel {
    aspect-ratio: 4/3;
    max-height: none;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }
}

/* Web mockup elements */
.web-mockup-bar { border-bottom: 1px solid var(--border-color); background: rgba(2, 0, 2, 0.3); }
.web-mockup-line { background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%); height: 4px; border-radius: 2px; }
.web-mockup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

/* Ecommerce bar chart */
.ecommerce-bar {
  width: 12%;
  background: linear-gradient(0deg, var(--color-purple) 0%, var(--color-gold) 100%);
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
}

/* Phone mockup — smaller on mobile */
.phone-mockup-border {
  width: 110px;
  height: 200px;
  border: 7px solid #23232F;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-primary);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .phone-mockup-border {
    width: 200px;
    height: 380px;
    border: 10px solid #23232F;
    border-radius: 36px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }
}
.phone-mockup-notch {
  width: 55px; height: 13px;
  background: #23232F;
  border-radius: 0 0 8px 8px;
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); z-index: 20;
}
@media (min-width: 768px) {
  .phone-mockup-notch { width: 90px; height: 18px; border-radius: 0 0 12px 12px; }
}
.phone-mockup-screen {
  width: 100%; height: 100%;
  padding: 16px 8px 8px;
  position: relative;
  background: linear-gradient(180deg, #0A0A0E 0%, #020002 100%);
}
@media (min-width: 768px) {
  .phone-mockup-screen { padding: 24px 12px 12px; }
}

/* Hero mesh background */
.services-mesh-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(35, 35, 47, 0.15) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(35, 35, 47, 0.15) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
  background-position: center;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Scroll drop animation */
.word-drop { display: inline-block; will-change: transform, opacity; }

/* Responsive container padding adjustments on mobile viewports (< 640px) */
@media (max-width: 639px) {
  .container.px-6 {
    padding-left: 1rem !important; /* 16px instead of 24px */
    padding-right: 1rem !important;
  }
}

