/* Design System & Core Styles */
:root {
    --color-dark-bg: #1E293B;
    --color-dark-grid: #0f172a;
    --color-brand-primary: #ea580c;
    --color-brand-hover: #c2410c;
    --color-brand-secondary: #FFEDD5;
    --color-brand-gradient: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    --color-pink: #c2410c; /* Mapped to hover */
    --color-orange: #ea580c;
    --color-success: #22C55E;
    --color-warning: #F59E0B;
    --color-danger: #EF4444;
    --color-info: #3B82F6;
    --text-dark: #0f172a; /* Dark Slate */
    --text-light: #000000;
    --text-muted: #475569; /* Muted Slate */
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}
:host, :root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em / 1 "Font Awesome 6 Free";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #F1F5F9;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Common Components & Buttons */
.gradient-text {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); /* Darker Orange */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-get-started {
  background: #ea580c; /* Darker Orange */
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
  transition: var(--transition);
}

.btn-get-started:hover {
  transform: translateY(-2px);
  background: #c2410c; /* Even Darker Orange */
  color: #fff;
  box-shadow: 0 6px 15px rgba(234, 88, 12, 0.4);
}



header {
  position: fixed;
  top: 8px;
  left: 2%;
  width: 96%;
  padding: 10px 40px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #1E293B; /* Dark Slate Sidebar / Header */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}


.logo-image {
  height: 50px;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

nav ul li a:hover {
  color: #ffffff;
}

nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Navigation Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sidebar-logo-container {
  display: none;
}
.hamburger, .close-menu {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 1001;
}
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFEDD5 0%, #ea580c 100%);
  padding: 180px 10% 120px 10%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-dark);
}

.hero-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ea580c; /* Darker Orange */
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 18px;
  color: #334155;
  font-weight: 500;
  margin-bottom: 35px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 45px;
}

.btn-primary-gradient {
  background: #ea580c; /* Darker Orange */
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
  transition: var(--transition);
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  background: #c2410c; /* Even Darker Orange */
  color: #fff;
  box-shadow: 0 6px 15px rgba(234, 88, 12, 0.4);
}

.btn-api {
  background: var(--color-brand-primary);
  color: var(--color-dark-bg);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(253, 186, 116, 0.3);
  transition: var(--transition);
}
.btn-api:hover {
  transform: translateY(-2px);
  background: var(--color-brand-hover);
  color: #fff;
  box-shadow: 0 6px 15px rgba(251, 146, 60, 0.4);
}

/* 4. Core Value Cards (About Page) */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }
}

.core-value-card {
  background: #FFEDD5 !important;
  border: 1px solid rgba(253, 186, 116, 0.35);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(253, 186, 116, 0.15), 0 5px 15px rgba(253, 186, 116, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.core-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 0; height: 4px;
  background: var(--color-brand-gradient);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transition: width 0.4s ease;
}
.core-value-card:hover {
  transform: translateY(-8px) translateZ(0);
  box-shadow: 0 20px 40px rgba(253, 186, 116, 0.12);
  border-color: rgba(253, 186, 116, 0.3);
}
.core-value-card:hover::before {
  width: 100%;
}
.core-value-card .cv-icon {
  background: rgba(253, 186, 116, 0.08);
  color: var(--color-brand-primary);
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}
.core-value-card:hover .cv-icon {
  background: var(--color-brand-primary);
  color: #ffffff;
  transform: scale(1.05) rotate(-5deg);
}
.core-value-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.core-value-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.btn-explore {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.btn-explore .play-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--text-dark);
  transition: var(--transition);
}

.btn-explore:hover .play-icon {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.reviews {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.review-text {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Hero Animated Dashboard */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: visible;
}

/* Paper Airplane */
.dash-airplane {
  position: absolute;
  top: -30px;
  right: 10px;
  font-size: 40px;
  color: #ff4ecd;
  transform: rotate(-35deg);
  filter: drop-shadow(0 0 18px rgba(255, 78, 205, 0.9));
  animation: planeFloat 4s ease-in-out infinite;
  z-index: 10;
}

@keyframes planeFloat {
  0%, 100% { transform: rotate(-35deg) translateY(0) translateX(0); }
  50% { transform: rotate(-35deg) translateY(-14px) translateX(10px); }
}

/* Floating Neon Orbs */
.dash-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.orb-1 {
  width: 18px; height: 18px;
  background: radial-gradient(circle, #8b5cf6, #6d28d9);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.9);
  top: 12%; left: 4%;
  animation: orbFloat 5s ease-in-out infinite;
}
.orb-2 {
  width: 13px; height: 13px;
  background: radial-gradient(circle, #3b82f6, #1d4ed8);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.9);
  top: 48%; left: 1%;
  animation: orbFloat 6s ease-in-out 1.5s infinite;
}
.orb-3 {
  width: 22px; height: 22px;
  background: radial-gradient(circle, #e40f7a, #9d174d);
  box-shadow: 0 0 22px rgba(228, 15, 122, 0.9);
  bottom: 18%; right: 3%;
  animation: orbFloat 5.5s ease-in-out 0.8s infinite;
}
.orb-4 {
  width: 12px; height: 12px;
  background: radial-gradient(circle, #8b5cf6, #5b21b6);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.8);
  top: 65%; right: 7%;
  animation: orbFloat 7s ease-in-out 2.2s infinite;
}
.orb-5 {
  width: 10px; height: 10px;
  background: radial-gradient(circle, #06b6d4, #0284c7);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
  bottom: 40%; left: 8%;
  animation: orbFloat 4.5s ease-in-out 3s infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.15); }
}

/* Dashboard Grid */
.hero-dash-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  width: 100%;
  max-width: 570px;
  transform: perspective(1200px) rotateY(-4deg) rotateX(3deg);
  animation: dashFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes dashFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-4deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-4deg) rotateX(3deg) translateY(-16px); }
}

.dash-bottom-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

/* Card Base */
.dash-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(253, 186, 116, 0.6) !important;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(253, 186, 116, 0.25), 0 4px 10px rgba(253, 186, 116, 0.1) !important;
  position: relative;
  overflow: hidden;
  animation: floatDashCard 5s ease-in-out infinite;
}

@keyframes floatDashCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09); }
}

.dash-card.card-main {
  animation-delay: 0s;
  box-shadow: 0 20px 45px rgba(234, 88, 12, 0.22), 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(253, 186, 116, 0.75) !important;
}
.dash-card.card-satisfaction { animation-delay: 1s; }
.dash-card.card-reach { animation-delay: 0.4s; }
.dash-card.card-response { animation-delay: 1.4s; }
.dash-card.card-messages { animation-delay: 0.8s; }

.dash-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
}

/* Card Topbar */
.card-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.topbar-dots { display: flex; gap: 4px; }
.tdot { width: 7px; height: 7px; border-radius: 50%; }
.tdot-red { background: #ff5f57; }
.tdot-yellow { background: #febc2e; }
.tdot-green { background: #28c840; }

.card-title-sm {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-dark);
}

/* SVG Chart */
.chart-wrap { width: 100%; }
.chart-svg { width: 100%; height: auto; overflow: visible; }

.anim-line-1 {
  animation: drawLine 2.5s ease-out forwards;
}
.anim-line-2 {
  animation: drawLine 2.8s ease-out 0.3s forwards;
}
@keyframes drawLine {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}
.anim-dot {
  opacity: 0;
  animation: dotAppear 0.4s ease-out 2.5s forwards;
}
@keyframes dotAppear {
  to { opacity: 1; }
}

/* Satisfaction Card */
.card-satisfaction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.donut-wrap { width: 100%; }
.donut-svg { width: 100%; height: auto; }
.donut-anim {
  animation: fillDonut 2s ease-out 0.5s forwards;
}
@keyframes fillDonut {
  from { stroke-dasharray: 0 264; }
  to { stroke-dasharray: 258 264; }
}

/* Bottom Mini Cards */
.card-reach, .card-response, .card-messages {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px;
}

.card-response {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, #ffffff 100%);
  border-color: rgba(249, 115, 22, 0.15);
}

.mini-icon-wrap {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 5px;
}
.icon-c-purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.icon-c-orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.icon-c-blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }

.mini-label {
  font-size: 9px;
  color: var(--text-light);
  font-weight: 600;
}
.mini-value {
  font-size: 21px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.5px;
}
.mini-sub {
  font-size: 8px;
  color: var(--text-muted);
}

/* Scroll Arrow Button */
.scroll-btn-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.scroll-btn {
  width: 52px;
  height: 52px;
  background: #ea580c; /* Darker Orange */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
  transition: var(--transition);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.scroll-btn:hover {
  transform: translateY(4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(253, 186, 116, 0.7);
}

/* Tagline / Intro Section */
.intro {
  padding: 120px 10% 60px 10%;
  text-align: center;
  background: #ffffff;
  border-radius: 60px 60px 0 0;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-light);
}

.intro-container span.tag-colvo {
  color: var(--color-pink);
  font-weight: 800;
}

.intro-container span.tag-blue {
  color: var(--color-blue);
  font-weight: 700;
}

/* Stats Section */
.stats {
  padding: 60px 10%;
  background: linear-gradient(135deg, #f0eeff 0%, #fff0f8 50%, #eef4ff 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  z-index: 5;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.stat-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.stat-text-box h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.stat-title {
  font-size: 15px;
  font-weight: 700;
  margin: 2px 0;
}

.stat-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Stat color variants */
.card-blue {
  background: #ddeaff;
}
.card-blue .stat-icon-wrapper {
  background: var(--color-blue);
  color: #ffffff;
}
.card-blue h3 {
  color: var(--color-blue);
}
.card-blue .stat-title {
  color: #1e3a8a;
}

.card-orange {
  background: #feecd8;
}
.card-orange .stat-icon-wrapper {
  background: var(--color-orange);
  color: #ffffff;
}
.card-orange h3 {
  color: var(--color-orange);
}
.card-orange .stat-title {
  color: #7c2d12;
}

.card-green {
  background: #d9f7eb;
}
.card-green .stat-icon-wrapper {
  background: var(--color-green);
  color: #ffffff;
}
.card-green h3 {
  color: var(--color-green);
}
.card-green .stat-title {
  color: #064e3b;
}

/* About Section */
.about-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #f8f9ff 0%, #fdf5fa 100%);
  overflow: hidden;
  max-width: 100%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.highlight-text {
  color: var(--color-pink);
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-features .checkmark {
  width: 24px;
  height: 24px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-brand-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.btn-learn-more {
  background: var(--color-dark-bg);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-learn-more:hover {
  background: #11112b;
  transform: translateY(-2px);
}

/* About Animated Graphic */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: visible;
}

.about-anim-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px 0 20px 80px;
}

/* iMac Monitor */
.about-imac-monitor {
  position: relative;
  z-index: 2;
  animation: aboutImacFloat 6s ease-in-out infinite;
}

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

.imac-body {
  width: 340px;
  background: linear-gradient(180deg, #eeeef8 0%, #e2e2f0 100%);
  border-radius: 18px 18px 6px 6px;
  padding: 12px 12px 18px;
  box-shadow: 0 30px 80px rgba(100,80,220,0.18), 0 0 0 1px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}

.imac-screen-area {
  background: linear-gradient(160deg, #fafafe 0%, #f4f4fc 100%);
  border-radius: 10px;
  padding: 12px 14px 0;
  min-height: 210px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
}

.imac-topbar {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.imac-ws {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
}
.imac-ws-r { background: #ff5f57; }
.imac-ws-y { background: #febc2e; }
.imac-ws-g { background: #28c840; }

.imac-bars-container {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 170px;
  padding-bottom: 0;
}

.imac-bar-item {
  flex: 1;
  border-radius: 6px 6px 0 0;
  transform-origin: bottom center;
  transform: scaleY(0);
  animation: imacBarGrow 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.12);
}

@keyframes imacBarGrow {
  from { transform: scaleY(0); opacity: 0.3; }
  to { transform: scaleY(1); opacity: 1; }
}

.imac-chin-bar {
  height: 22px;
  margin-top: 2px;
  border-radius: 0 0 5px 5px;
  background: rgba(0,0,0,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
}

.imac-chin-bar::after {
  content: '';
  width: 55px; height: 5px;
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
}

.imac-neck {
  width: 30px;
  height: 40px;
  background: linear-gradient(180deg, #d0d0e8 0%, #c0c0d8 100%);
  margin: 0 auto;
}

.imac-foot {
  width: 130px;
  height: 12px;
  background: linear-gradient(180deg, #d0d0e0 0%, #b8b8cc 100%);
  border-radius: 6px;
  margin: 0 auto;
}

/* Floating Donut */
.about-donut-float {
  position: absolute;
  left: -60px;
  top: 48%;
  transform: translateY(-50%);
  width: 150px;
  z-index: 3;
  animation: donutColorShift 6s linear infinite, donutBob 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 35px rgba(139,92,246,0.25));
}

.about-donut-float svg { width: 100%; height: auto; }

@keyframes donutColorShift {
  0%, 100% { filter: drop-shadow(0 16px 35px rgba(139,92,246,0.25)) hue-rotate(0deg); }
  50% { filter: drop-shadow(0 16px 35px rgba(228,15,122,0.25)) hue-rotate(30deg); }
}

@keyframes donutBob {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50% { transform: translateY(calc(-50% - 14px)) rotate(3deg); }
}

/* Floating Badges */
.about-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 16px 50px rgba(100,80,220,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 5;
  min-width: 110px;
}

.about-badge-growth {
  top: 0;
  left: 8%;
  animation: badgeFloatA 4s ease-in-out infinite;
}

.about-badge-perf {
  bottom: 8%;
  right: 0;
  animation: badgeFloatB 5s ease-in-out 1s infinite;
}

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

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

.about-badge-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 3px;
}

.about-badge-value {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: #10b981;
  line-height: 1.1;
  margin-bottom: 5px;
}

.about-badge-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
  color: #8b5cf6;
  font-size: 11px;
}

.about-badge-spark {
  width: 58px;
  display: block;
}

/* Paper airplane */
.about-plane-icon {
  position: absolute;
  top: 5%;
  right: 2%;
  font-size: 22px;
  background: linear-gradient(135deg, #e40f7a, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-35deg);
  animation: aboutPlaneAnim 4.5s ease-in-out infinite;
  z-index: 4;
  filter: drop-shadow(0 4px 8px rgba(228, 15, 122, 0.4));
}

@keyframes aboutPlaneAnim {
  0%, 100% { transform: rotate(-35deg) translateY(0) translateX(0); }
  50% { transform: rotate(-35deg) translateY(-10px) translateX(6px); }
}

/* Decorative dots */
.about-dot-grid {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  z-index: 1;
}

.about-dot-grid span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.3);
  display: block;
}

/* Services Section */
.services-section {
  padding: 80px 10%;
  background: #edf0f7;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.services-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.services-header p {
  color: var(--text-light);
  font-size: 16px;
}

.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-item {
  background: #FFEDD5 !important;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(253, 186, 116, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(253, 186, 116, 0.35);
  position: relative;
  overflow: hidden;
  width: 320px;
  max-width: 100%;
}

.service-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-brand-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(253, 186, 116, 0.3);
  border-color: rgba(251, 146, 60, 0.5);
}

.service-card-item:hover::before {
  transform: scaleX(1);
}

.service-card-item:hover .service-icon-box {
  transform: scale(1.15) rotate(5deg);
}

.service-icon-box {
  width: 72px;
  height: 72px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: var(--transition);
}

.service-icon-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-icon-box.service-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.08));
  border: 1px solid rgba(251, 146, 60, 0.4);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

.service-icon-box.service-email {
  background: linear-gradient(135deg, rgba(228, 15, 122, 0.2), rgba(228, 15, 122, 0.08));
  border: 1px solid rgba(251, 146, 60, 0.4);
  box-shadow: 0 4px 20px rgba(228, 15, 122, 0.15);
}

.service-icon-box.service-crm {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(251, 146, 60, 0.4);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.service-icon-box.service-invoice {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(251, 146, 60, 0.4);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.service-icon-box.service-analytics {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(251, 146, 60, 0.4);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.service-card-item h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-card-item p {
  font-size: 14px;
  font-weight: 500;
  color: #000000 !important;
  line-height: 1.6;
}

/* Platforms & Integrations Section */
.platforms-section {
  padding: 100px 10%;
  background: #f8f9fa; /* Slight gray background to make white cards pop */
  position: relative;
  overflow: hidden;
}

.platforms-header {
  text-align: center;
  margin-bottom: 60px;
}

.platforms-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.platforms-header h1, .platforms-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.platforms-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.platform-card {
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.2); /* Soft purple border */
  border-radius: 24px;
  padding: 35px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08); /* Soft purple shadow */
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
              0 0 25px rgba(139, 92, 246, 0.1);
}

.platform-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.platform-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.platform-card:hover .platform-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* Platform Brand Gradients */
.platform-icon-wrapper.wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.platform-icon-wrapper.mobile {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.platform-icon-wrapper.shop {
  background: linear-gradient(135deg, #f97316 0%, #e11d48 100%);
}

.platform-icon-wrapper.zap {
  background: linear-gradient(135deg, #ff4f00 0%, #ff8700 100%);
}

.platform-icon-wrapper.api {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.platform-icon-wrapper.db {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

.platform-status {
  position: absolute;
  top: 35px;
  right: 30px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.platform-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 10%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

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

.pricing-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.pricing-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.pricing-header p {
  color: var(--text-light);
  font-size: 16px;
}

/* Switch Billing Toggle */
.billing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.toggle-label.active {
  color: var(--text-dark);
}

.discount-badge {
  background: #ecfdf5;
  color: #10b981;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--color-brand-gradient);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Pricing Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-brand-gradient);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(253, 186, 116, 0.4);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(253, 186, 116, 0.6);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Pricing Slider Container */
.pricing-slider-container {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0; /* Add padding for shadow visibility */
}

.pricing-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.pricing-card {
  background: rgba(249, 250, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #ea580c; /* Increased visibility */
  border-radius: 24px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex: 0 0 calc((1000px - 60px) / 3);
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(253, 186, 116, 0.15);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(253, 186, 116, 0.2);
  border-color: rgba(253, 186, 116, 0.7);
}

/* Featured Card Highlights */
.pricing-card.popular,
.plan-autonomous-meta-ads-agent {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-brand-primary);
  box-shadow: 0 20px 45px rgba(253, 186, 116, 0.25), inset 0 0 0 1px var(--color-brand-primary);
}

.pricing-card.popular:hover,
.plan-autonomous-meta-ads-agent:hover {
  border-color: rgba(253, 186, 116, 1);
  box-shadow: 0 30px 60px rgba(253, 186, 116, 0.25), inset 0 0 0 2px rgba(253, 186, 116, 0.5);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.35);
}

.popular-badge::before {
  content: '\f521';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 5px;
}

.card-icon-wrapper {
  margin-bottom: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: rgba(253, 186, 116, 0.1);
  box-shadow: inset 0 0 0 1px rgba(253, 186, 116, 0.25);
}

.pricing-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  /* Make black first, then colorize to purple */
  filter: brightness(0) saturate(100%) invert(44%) sepia(36%) saturate(2203%) hue-rotate(239deg) brightness(99%) contrast(97%);
}

.card-plan-header {
  margin-bottom: 15px;
  min-height: 110px; /* Ensure uniform height so prices align perfectly horizontally */
}

.card-plan-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.plan-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.card-price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand-primary);
  align-self: flex-start;
  margin-top: 5px;
}

.price-val {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  background: var(--color-brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-period {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}

.plan-features li i {
  font-size: 16px;
}

.plan-features li i.fa-circle-check {
  color: var(--color-brand-primary);
}

.plan-features li.disabled {
  color: #94a3b8;
  font-weight: normal;
}

.plan-features li i.fa-circle-xmark {
  color: #cbd5e1;
}

.btn-pricing-action {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  color: #ffffff;
  background: var(--color-brand-gradient);
  border: 1px solid transparent;
}

.btn-pricing-action:hover {
  background: var(--color-brand-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 186, 116, 0.4);
}

/* Contact Section */
.contact-section {
  padding: 100px 10%;
  background: #f4f0ff;
}

.contact-outer-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #FFEDD5 !important;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(253, 186, 116, 0.25);
  border: 1px solid rgba(253, 186, 116, 0.4);
  position: relative;
}

.contact-info-side {
  padding: 60px;
  color: var(--text-dark);
  background: #FFEDD5 !important;
  border-right: 1px solid rgba(253, 186, 116, 0.3);
}

.connect-badge {
  font-size: 11px;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.contact-heading-stylish {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #0f172a;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.highlight-touch {
  color: var(--color-brand-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.highlight-touch::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-brand-primary);
  border-radius: 4px;
}
.text-purple {
  color: var(--color-brand-primary);
  font-size: 32px;
  transform: rotate(-10deg);
  margin-bottom: 10px;
}

.connect-desc {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-row-icon {
  width: 44px;
  height: 44px;
  background: rgba(253, 186, 116, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--color-brand-primary);
  flex-shrink: 0;
}

.info-row-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-row-text p {
  font-size: 14px;
  color: var(--text-light);
}

.social-links-row {
  display: flex;
  gap: 15px;
}

.social-links-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.connect-with-us {
  margin-top: 40px;
}
.connect-with-us h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.social-links-row a:hover {
  background: var(--color-brand-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-form-side {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card-inner {
  background: #FFEDD5 !important;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(253, 186, 116, 0.15);
  border: 1px solid rgba(253, 186, 116, 0.3);
  width: 100%;
}

.form-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.form-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-brand-primary);
  border-radius: 3px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 30px;
  margin-top: 15px;
}

.glass-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  position: relative;
}
.form-field.has-icon i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-brand-primary);
  font-size: 16px;
}
.form-field.has-icon.align-top i {
  top: 20px;
  transform: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-dark);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.form-field.has-icon input,
.form-field.has-icon textarea {
  padding-left: 45px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(253, 186, 116, 0.2);
}

.btn-submit-form {
  background: var(--color-brand-gradient);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 10px;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}
.privacy-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand-secondary);
  color: var(--color-brand-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.privacy-text {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.4;
}

.btn-submit-form:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228, 15, 122, 0.3);
}

/* Footer Section */
.main-footer {
  background: radial-gradient(circle at 50% -20%, #0c0b29 0%, #03030c 100%);
  padding: 60px 5% 0 5%;
  color: #94a3b8;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.footer-col-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-img {
  height: 50px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 260px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--color-brand-gradient) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: var(--color-brand-glow) !important;
}

.footer-col h3, .footer-col-newsletter h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-col h3::after, .footer-col-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-brand-gradient);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--color-brand-primary) !important;
  transform: translateX(4px);
}

.contact-info-list-footer {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-list-footer li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #94a3b8;
}

.contact-info-list-footer li i {
  margin-top: 3px;
  color: var(--color-brand-primary);
}

.footer-col-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-newsletter p {
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
}

.newsletter-form-box {
  display: flex;
  background: #ffffff;
  border: 1px solid rgba(253, 186, 116, 0.8);
  border-radius: 10px;
  overflow: hidden;
  padding: 5px;
  transition: var(--transition);
}

.newsletter-form-box:focus-within {
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.newsletter-form-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 12px;
  color: #0f172a;
  font-size: 14px;
}

.newsletter-form-box input::placeholder {
  color: rgba(15, 23, 42, 0.5);
}

.btn-newsletter-submit {
  background: var(--color-brand-gradient);
  border: none;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(228, 15, 122, 0.2);
  transition: var(--transition);
}

.btn-newsletter-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(228, 15, 122, 0.4);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 30px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.copyright-txt {
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.footer-legal-links a,
.footer-legal-links a:visited {
  color: #cbd5e1; /* Brighter grey for visibility */
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-legal-links a:hover,
.footer-legal-links a:active {
  color: #ea580c !important;
}

/* Responsive CSS */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
  .footer-col-newsletter {
    grid-column: 1 / -1;
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 20px 5%;
  }
  .hero {
    padding: 140px 5% 80px 5%;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    align-items: center;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image-wrapper {
    transform: scale(0.9);
  }
  .intro {
    padding: 100px 5% 50px 5%;
  }
  .stats {
    padding: 50px 5%;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-outer-card {
    grid-template-columns: 1fr;
  }
  .contact-form-side {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .stats-container {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pricing-card {
    flex: 0 0 100%; /* Show 1 card on tablet/mobile */
  }
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .platforms-section {
    padding: 80px 5%;
  }
}

@media (max-width: 768px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .logo-image {
    height: 40px;
  }
  .hamburger {
    display: block;
  }
  .nav-wrapper {
    position: fixed;
    top: 0; right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 40px;
    gap: 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-wrapper.active {
    right: 0;
  }
  .nav-wrapper.active ~ .hamburger {
    display: none;
  }
  .nav-overlay {
    display: block;
    pointer-events: none;
  }
  .close-menu {
    display: block;
    position: absolute;
    top: 30px; right: 30px;
  }
  nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .nav-wrapper .btn-get-started {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-image-wrapper {
    transform: scale(0.8);
  }
  .intro-container {
    font-size: 20px;
  }
  .about-anim-wrapper {
    transform: scale(0.8);
    transform-origin: center center;
    margin: -40px auto; 
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .platforms-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-legal-links {
    gap: 10px;
    justify-content: center;
  }
  .footer-legal-links a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 5% 60px 5%;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-image-wrapper {
    transform: scale(0.65);
    margin: -30px 0;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .btn-primary-gradient, .btn-explore {
    width: 100%;
    justify-content: center;
  }
  .intro {
    padding: 80px 5% 40px 5%;
  }
  .services-header h2 {
    font-size: 32px;
    white-space: nowrap;
  }
  .pricing-header h2 {
    font-size: 32px;
    white-space: nowrap;
  }
  .intro-container {
    font-size: 17px;
  }
  .services-header h2 {
    font-size: 26px;
    white-space: nowrap;
  }
  .pricing-header h2 {
    font-size: 21px;
    white-space: nowrap;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .about-anim-wrapper {
    transform: scale(0.6);
    margin: -60px auto;
    padding-left: 0;
  }
  .about-donut-float {
    left: -10px;
  }
  .about-badge-growth {
    left: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .platforms-section {
    padding: 60px 5%;
  }
  .contact-info-side, .contact-form-side {
    padding: 25px;
  }
  .contact-title {
    font-size: 26px;
  }
}

/* Inner Page Header */
.inner-page-header {
  position: relative;
  /* Using the global header background color */
}

/* --- New Content Sections --- */

/* Generic Section Padding & Titles */
.content-section {
  padding: 80px 10%;
}
.content-section:last-of-type {
  padding-bottom: 140px;
}
.content-section.bg-light {
  background-color: #e2e8f0;
}
.content-section.bg-dark {
  background-color: var(--color-dark-bg);
  color: white;
}
.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}
.section-badge {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-brand-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.section-header-center h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.bg-dark .section-header-center h2 {
  color: white;
}
.section-header-center p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.bg-dark .section-header-center p {
  color: rgba(255, 255, 255, 0.7);
}

/* Mission & Vision (Split Layout) */
.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.mission-text p {
  color: #000000;
  margin-bottom: 15px;
  font-size: 17px;
}
.mission-text ul li {
  color: #000000;
}
.mission-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Grid (Why Choose Us) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.feature-box {
  background: #FFEDD5 !important;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(253, 186, 116, 0.15), 0 4px 10px rgba(253, 186, 116, 0.08);
  border: 1px solid rgba(253, 186, 116, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 8px 20px rgba(253, 186, 116, 0.2);
  border-color: rgba(253, 186, 116, 0.8);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.icon-purple, .icon-pink, .icon-orange, .icon-blue { 
  background: rgba(234, 88, 12, 0.15); 
  color: #ea580c; 
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feature-box p {
  color: var(--text-light);
  font-size: 15px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.03);
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(139, 92, 246, 0.2);
}
.team-img-wrapper {
  height: 200px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  position: relative;
}
.team-card:hover .team-img-wrapper {
  background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
}
.team-img-wrapper i {
  font-size: 70px;
  color: #94a3b8;
  transition: all 0.5s ease;
}
.team-card:hover .team-img-wrapper i {
  transform: scale(1.1);
  color: var(--color-brand-primary);
}
.team-info {
  padding: 20px 20px;
  background: white;
  position: relative;
  z-index: 2;
}
.team-info h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.team-info span {
  font-size: 13px;
  color: #E40F7A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* How It Works (Steps) */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.step-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-brand-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.step-card p {
  color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: #FFE8D6 !important;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(253, 186, 116, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  z-index: 1;
}
.testimonial-card::after {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 85px;
  color: rgba(139, 92, 246, 0.06);
  line-height: 1;
  z-index: -1;
  transform: rotate(-5deg);
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.35);
}
.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 17px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.04);
  padding-top: 20px;
}
.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e40f7a 0%, #f97316 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 6px 15px rgba(228, 15, 122, 0.25);
}
.author-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
}
.author-info span {
  font-size: 13.5px;
  color: var(--text-light);
  font-weight: 500;
}

/* API CTA Banner */
.cta-banner {
  background: #ea580c !important; /* Darker Orange */
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.3);
}
.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.cta-banner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  background: #ffffff;
  color: #ea580c;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Accordion Placeholder */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #FFEDD5 !important;
  border: 1px solid rgba(253, 186, 116, 0.35);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 186, 116, 0.1);
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 186, 116, 0.25);
  border-color: rgba(251, 146, 60, 0.5);
}
.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.faq-item:hover .faq-question {
  color: #0f172a; /* Keep text dark and readable on hover */
}
.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: #ea580c;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover .faq-question::after {
  color: #ea580c;
}
.faq-item.active {
  border-color: #ea580c;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
}
.faq-item.active .faq-question {
  color: #0f172a; /* Keep text dark on click/active */
}
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
  color: #ea580c;
}
.faq-answer {
  color: #000000;
  line-height: 1.6;
  max-height: 0;
  padding: 0 25px;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.5s ease, margin 0.5s ease;
}
.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 15px 25px 25px 25px;
  opacity: 1;
  visibility: visible;
}

/* Global Offices */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.office-card {
  background: #FFEDD5 !important;
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(253, 186, 116, 0.2);
  transition: all 0.4s ease;
  border: 1px solid rgba(253, 186, 116, 0.35);
  position: relative;
  z-index: 1;
}
.office-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(253, 186, 116, 0.35);
  border-color: rgba(251, 146, 60, 0.5);
}
.office-icon {
  width: 80px;
  height: 80px;
  background: var(--color-brand-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 30px;
  box-shadow: var(--color-brand-glow);
  transition: transform 0.4s ease;
}
.office-card:hover .office-icon {
  transform: scale(1.1) rotate(5deg);
}
.office-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}
.office-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .mission-container {
    grid-template-columns: 1fr;
  }
  .steps-container {
    grid-template-columns: 1fr;
  }

  /* Hamburger Menu Styling */
  .hamburger {
    display: block;
    background: transparent;
    border: none;
    z-index: 1002;
    font-size: 28px;
  }
  .hamburger i {
    color: #ffffff;
  }
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 80px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-wrapper.active {
    right: 0;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }
  .nav-wrapper nav {
    display: block !important;
    width: 100%;
  }
  .sidebar-logo-container {
    display: block;
    position: absolute;
    top: 25px;
    left: 30px;
  }
  .sidebar-logo {
    height: 40px;
  }
  .close-menu {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    color: #ffffff;
  }
  nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  nav ul li a {
    color: #ffffff;
    font-size: 18px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
  }
  
  /* Core Layout Adjustments */
  .hero {
    padding-top: 120px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .feature-grid, .team-grid, .testimonials-grid, .offices-grid, .services-grid, .platforms-grid, .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    gap: 30px;
  }
  .content-section {
    padding: 50px 5%;
  }
  
  /* Contact Mobile Overrides */
  .contact-section {
    padding: 50px 5%;
  }
  .contact-info-side {
    padding: 40px 25px;
  }
  .contact-form-side {
    padding: 40px 25px;
  }
  .form-row-double {
    grid-template-columns: 1fr;
  }
  
  /* FAQ Mobile Overrides */
  .faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }
  .faq-answer {
    font-size: 14px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px 20px 20px;
  }
  .section-header-center h2 {
    font-size: 28px;
  }
  .platforms-header h1, .platforms-header h2 {
    font-size: 28px;
  }
  .platforms-section {
    padding: 60px 5%;
  }
  
  /* Pricing Mobile Overrides */
  .pricing-section {
    padding: 60px 0; /* Remove horizontal padding so slider can go edge-to-edge */
  }
  .pricing-header {
    padding: 0 5%;
  }
  .pricing-header h1 {
    font-size: 30px;
  }
  .pricing-slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 5%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 0;
    box-sizing: border-box;
  }
  .pricing-slider-container::-webkit-scrollbar {
    display: none;
  }
  .pricing-track {
    display: flex;
    gap: 15px; 
    padding-left: 0;
    padding-right: 5%;
    width: max-content;
  }
  /* The ultimate Safari fix: an invisible element that forces the exact right padding */
  .pricing-track::after {
    content: '';
    display: block;
    width: 5%;
    flex-shrink: 0;
  }
  .pricing-card {
    flex: 0 0 85vw !important;
    width: 85vw;
    max-width: 340px;
    margin: 0 !important;
    padding: 30px 20px;
    scroll-snap-align: center;
    box-sizing: border-box;
  }
  .slider-btn {
    display: none !important;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons a {
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
  }
}

/* Global Button Styles */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Mobile Action Bar */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 90px;
  }
  
  .mobile-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 43, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 40px;
    width: 92%;
    max-width: 400px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .mobile-action-bar .action-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-action-bar .icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 20px;
    transition: var(--transition);
  }
  
  .mobile-action-bar .icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .mobile-action-bar .icon-btn .fa-whatsapp {
    color: #25D366;
  }
  
  .mobile-action-bar .icon-btn .fa-phone {
    color: var(--color-blue);
  }
  
  .mobile-action-bar .text-btn {
    background: #ea580c; /* Darker Orange */
    color: #fff;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    flex-grow: 1;
    margin: 0 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
  }
}

/* ==========================================================================
   Premium Services Page UI Redesign
   ========================================================================== */

.premium-services-page {
  background: url('images/P1.png') no-repeat center center / cover fixed;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 5% 120px;
  font-family: var(--font-primary);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Background Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
  filter: blur(40px);
  z-index: 0;
}
.orb-top-left { width: 600px; height: 600px; top: -100px; left: -100px; }
.orb-center { width: 800px; height: 800px; top: 40%; left: 50%; transform: translate(-50%, -50%); opacity: 0.6; }
.orb-bottom-right { width: 500px; height: 500px; bottom: -50px; right: -50px; }

/* Sections */
.premium-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.premium-header {
  text-align: center;
  margin-bottom: 50px;
}
.premium-badge {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.premium-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}
.text-purple-accent {
  color: var(--color-brand-primary);
}
.premium-header p {
  color: #000000;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* 1. Services Grid */
.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.premium-service-card {
  background: #FFE8D6 !important;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(253, 186, 116, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(253, 186, 116, 0.35);
}
.premium-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(253, 186, 116, 0.35);
  border-color: rgba(251, 146, 60, 0.5);
}
.ps-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(234, 88, 12, 0.12);
  color: #ea580c;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}
.premium-service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}
.premium-service-card p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

/* 2. Process Section */
.premium-process-container {
  position: relative;
  padding: 40px 0;
}
.process-line-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 150px;
  transform: translateY(-50%);
  z-index: 0;
}
.process-line-svg path {
  stroke-dasharray: 10 10;
  animation: moveLine 1s linear infinite;
}

/* Ensure the animation plays continuously */
.aos-animate .process-line-svg path {
  animation: moveLine 1s linear infinite;
}

@keyframes moveLine {
  from { stroke-dashoffset: 20; }
  to { stroke-dashoffset: 0; }
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.p-step {
  text-align: center;
  width: 280px;
}
.p-step-down {
  margin-top: 80px;
}
.p-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 24px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: var(--color-brand-primary);
  box-shadow: 0 15px 40px rgba(253, 186, 116, 0.15);
  position: relative;
}
.p-number {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  border: 3px solid #ede8f5;
}
.p-step h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.p-step p {
  font-size: 13px;
  color: #000000;
}

/* 3. Testimonials Cluster */
.premium-testimonials-cluster {
  position: relative;
  height: 650px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cluster-center {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(253, 186, 116, 0.2);
  z-index: 2;
}
.center-globe {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: var(--color-brand-primary);
}
.p-testimonial-card {
  position: absolute;
  background: #FFE8D6 !important;
  padding: 20px;
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 15px 40px rgba(253, 186, 116, 0.2);
  border: 1px solid rgba(253, 186, 116, 0.4);
  z-index: 3;
  transition: transform 0.3s ease;
}
.p-testimonial-card:hover {
  z-index: 4;
}

@media (min-width: 993px) {
  .p-testimonial-card {
    top: 50%;
    left: 50%;
    margin-top: -65px;
    margin-left: -160px;
  }
  .pos-1 { animation: orbit1 25s linear infinite; }
  .pos-2 { animation: orbit2 25s linear infinite; }
  .pos-3 { animation: orbit3 25s linear infinite; }
  
  .p-testimonial-card:hover {
    animation-play-state: paused;
  }
  
  @keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(240px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(240px) rotate(-360deg); }
  }
  @keyframes orbit2 {
    0% { transform: rotate(120deg) translateX(240px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(240px) rotate(-480deg); }
  }
  @keyframes orbit3 {
    0% { transform: rotate(240deg) translateX(240px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(240px) rotate(-600deg); }
  }
}

.t-stars { color: #f59e0b; font-size: 12px; margin-bottom: 10px; }
.p-testimonial-card p { font-size: 13px; color: #000000; font-weight: 500; margin-bottom: 15px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.t-info { font-size: 13px; color: #334155; font-weight: 600; line-height: 1.4; }
.t-info strong { color: #0f172a; font-size: 14px; font-weight: 800; display: block; margin-bottom: 2px; }

/* 4. Community Section */
.community-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #FFE8D6 !important;
  border: 1px solid rgba(253, 186, 116, 0.4);
  box-shadow: 0 15px 40px rgba(253, 186, 116, 0.15);
  padding: 60px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}
.community-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.2;
}
.location-text {
  font-size: 18px;
  color: var(--color-brand-primary);
  font-weight: 600;
  margin-bottom: 30px;
}
.university-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(253, 186, 116, 0.1);
}
.community-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.iso-map {
  position: relative;
  width: 300px;
  height: 200px;
  background: #e2d8f5;
  transform: rotateX(60deg) rotateZ(-45deg);
  border-radius: 20px;
  box-shadow: -20px 20px 40px rgba(253, 186, 116, 0.2);
}
.iso-building {
  position: absolute;
  background: #ffffff;
  box-shadow: -10px 10px 20px rgba(253, 186, 116, 0.2);
  border-radius: 4px;
}
.b1 { width: 60px; height: 100px; top: 20px; left: 40px; transform: translateZ(40px); }
.b2 { width: 80px; height: 60px; top: 50px; right: 40px; transform: translateZ(20px); }
.b3 { width: 50px; height: 50px; bottom: 20px; left: 100px; transform: translateZ(10px); }
.iso-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg) rotateX(-60deg) translateY(-40px);
  font-size: 40px;
  color: #e40f7a;
  z-index: 10;
}
.iso-pulse {
  position: absolute;
  bottom: -5px; left: 50%;
  transform: translateX(-50%) rotateX(60deg);
  width: 20px; height: 20px;
  background: #e40f7a;
  border-radius: 50%;
  animation: pulsePin 2s infinite;
  z-index: -1;
}
@keyframes pulsePin {
  0% { transform: translateX(-50%) rotateX(60deg) scale(1); opacity: 0.6; }
  100% { transform: translateX(-50%) rotateX(60deg) scale(3); opacity: 0; }
}

@media (max-width: 992px) {
  .process-steps { flex-direction: column; align-items: center; gap: 40px; }
  .p-step-down { margin-top: 0; }
  .process-line-svg { display: none; }
  .community-section { flex-direction: column; text-align: center; }
  .premium-testimonials-cluster { height: auto; flex-direction: column; gap: 20px; }
  .cluster-center { display: none; }
  .p-testimonial-card { position: relative; width: 100%; top: auto; left: auto; right: auto; bottom: auto; }
}

/* ==========================================================================
   Scroll Animation Utilities (Global)
   ========================================================================== */

.aos-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.aos-init.glass-integration-card, .aos-init.premium-service-card, .aos-init.p-step {
  transform: translateY(50px) scale(0.95);
  transition-duration: 0.9s;
}

/* Staggered delay for list items / cards / steps */
.aos-init:nth-child(1) { transition-delay: 0s; }
.aos-init:nth-child(2) { transition-delay: 0.15s; }
.aos-init:nth-child(3) { transition-delay: 0.3s; }
.aos-init:nth-child(4) { transition-delay: 0.45s; }
.aos-init:nth-child(5) { transition-delay: 0.6s; }

.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

/* Retain 3D tilt effects on integration cards when animated */
.aos-animate.glass-integration-card.tilt-1 { transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateY(-10px) !important; }
.aos-animate.glass-integration-card.tilt-2 { transform: perspective(1000px) translateZ(30px) !important; }
.aos-animate.glass-integration-card.tilt-3 { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-10px) !important; }


/* ==========================================================================
   Premium Integration Page UI Redesign
   ========================================================================== */

.contact-section,
.pricing-section {
  background: url('images/P1.png') no-repeat center center / cover fixed;
}

.premium-integration-page {
  background: url('images/P1.png') no-repeat center center / cover fixed;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
  font-family: var(--font-primary);
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* Floating 3D Background Elements */
.float-3d-bg {
  position: absolute;
  z-index: 0;
  animation: float3D 10s ease-in-out infinite alternate;
}
.3d-blob-lg {
  width: 300px; height: 300px;
  background: radial-gradient(circle at 30% 30%, #e2d8f5, var(--color-brand-primary));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.15;
  filter: blur(20px);
}
.3d-blob-md {
  width: 200px; height: 200px;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--color-brand-primary));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.15;
  filter: blur(15px);
}
.blob-tl { top: 5%; left: 10%; animation-delay: 0s; }
.blob-br { bottom: 20%; right: 5%; animation-delay: -5s; }

.3d-prism {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(253, 186, 116, 0.4) 0%, rgba(253, 186, 116, 0.1) 100%);
  backdrop-filter: blur(4px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
}
.prism-1 { top: 20%; right: 15%; animation: spin3D 15s linear infinite; }
.prism-2 { top: 40%; left: 25%; animation: spin3D 12s linear infinite reverse; transform: scale(0.6); }
.prism-3 { bottom: 30%; left: 30%; animation: spin3D 18s linear infinite; transform: scale(0.8); }

@keyframes float3D {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(10deg); }
}
@keyframes spin3D {
  100% { transform: rotate(360deg); }
}

/* 1. Integration Glass Row */
.glass-integration-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  z-index: 2;
}
.glass-bg-swirl {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 100px;
  background: radial-gradient(ellipse at center, rgba(253, 186, 116, 0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
}
.glass-integration-card {
  width: 290px;
  background: #FFEDD5 !important;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(253, 186, 116, 0.2);
  border: 1px solid rgba(253, 186, 116, 0.35);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* Wavy subtle background pattern */
.glass-integration-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 100% 100%, rgba(253,186,116,0.05) 0%, transparent 50%),
                    linear-gradient(45deg, rgba(253,186,116,0.03) 25%, transparent 25%, transparent 75%, rgba(253,186,116,0.03) 75%, rgba(253,186,116,0.03)),
                    linear-gradient(45deg, rgba(253,186,116,0.03) 25%, transparent 25%, transparent 75%, rgba(253,186,116,0.03) 75%, rgba(253,186,116,0.03));
  background-size: 100% 100%, 20px 20px, 20px 20px;
  background-position: 0 0, 0 0, 10px 10px;
  opacity: 0.8;
  z-index: -1;
}

.tilt-1 { transform: perspective(1200px) rotateY(8deg) rotateX(4deg) translateY(-5px); z-index: 2; }
.tilt-2 { transform: perspective(1200px) scale(1.08) translateZ(30px); z-index: 3; box-shadow: 0 25px 50px rgba(253, 186, 116, 0.25); border: 1px solid rgba(253, 186, 116, 0.5); }
.tilt-3 { transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(-5px); z-index: 2; }

.glass-integration-card:hover {
  transform: perspective(1200px) translateZ(50px) translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(253, 186, 116, 0.35) !important;
  border-color: var(--color-brand-primary);
  z-index: 10;
}

/* Icon Styles matching Image 1 */
.theme-purple .gi-icon { color: var(--color-brand-primary); border: 3px solid rgba(148, 163, 184, 0.2); box-shadow: 0 6px 15px rgba(0,0,0,0.05); }
.theme-green .gi-icon { color: var(--color-success); border: 3px solid rgba(34, 197, 94, 0.2); box-shadow: 0 6px 15px rgba(0,0,0,0.05); }
.theme-orange .gi-icon { color: #f59e0b; border: 3px solid rgba(245, 158, 11, 0.3); box-shadow: inset 0 0 15px rgba(245,158,11,0.2), 0 6px 15px rgba(245,158,11,0.1); }

.gi-icon {
  width: 55px; height: 55px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f6ff 100%);
  display: flex; justify-content: center; align-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.glass-integration-card:hover .gi-icon {
  transform: scale(1.1);
}

.glass-integration-card h3 { font-size: 20px; font-weight: 800; color: #1e293b; margin-bottom: 12px; }
.glass-integration-card p { font-size: 14px; color: #000000; line-height: 1.7; font-weight: 500; }

/* 2. Workflow Section */
.workflow-split {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}
.workflow-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.workflow-list { flex: 1; display: flex; flex-direction: column; gap: 30px; }

/* Isometric Visuals */
.iso-workflow {
  position: relative;
  width: 400px; height: 350px;
}
.iso-block {
  position: absolute;
  background: linear-gradient(135deg, #c7b2f2 0%, var(--color-brand-primary) 100%);
  box-shadow: -15px 15px 30px rgba(253, 186, 116, 0.2), inset 2px 2px 5px rgba(255,255,255,0.4);
  border-radius: 8px;
  transform: rotateX(60deg) rotateZ(-45deg);
}
.block-base { width: 150px; height: 150px; bottom: 50px; left: 120px; }
.block-tall { width: 80px; height: 80px; bottom: 120px; left: 80px; transform: rotateX(60deg) rotateZ(-45deg) translateZ(80px); }
.block-mid { width: 100px; height: 100px; bottom: 20px; right: 100px; transform: rotateX(60deg) rotateZ(-45deg) translateZ(40px); background: linear-gradient(135deg, #ede8f5 0%, #c7b2f2 100%); }

.iso-person {
  position: absolute;
  font-size: 40px;
  color: #0f172a;
  z-index: 10;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}
.p-1 { top: 80px; left: 140px; color: #e40f7a; }
.p-2 { top: 120px; left: 220px; }
.p-3 { bottom: 130px; right: 120px; }
.iso-screen {
  position: absolute;
  top: 60px; right: 140px;
  font-size: 60px; color: #3b82f6;
  opacity: 0.8;
}

/* Workflow List */
.w-list-item { display: flex; gap: 20px; }
.w-icon {
  width: 40px; height: 40px;
  background: rgba(253, 186, 116, 0.1);
  color: var(--color-brand-primary);
  border-radius: 10px;
  display: flex; justify-content: center; align-items: center;
  font-size: 16px; flex-shrink: 0;
}
.w-text h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 5px; }
.w-text p { font-size: 13px; color: #000000; line-height: 1.6; }

/* 3. Developer CTA */
.dev-cta-card {
  background: #FFEDD5 !important;
  border: 1px solid rgba(253, 186, 116, 0.4);
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(253, 186, 116, 0.2);
  max-width: 800px;
  margin: 0 auto;
}
.dev-cta-card h2 { font-size: 28px; font-weight: 800; color: #0f172a; margin-bottom: 15px; }
.dev-cta-card p { font-size: 14px; color: #000000; margin-bottom: 30px; max-width: 600px; margin-inline: auto; }
.btn-api {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-brand-gradient);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(253, 186, 116, 0.2);
  transition: transform 0.3s ease;
}
.btn-api:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(253, 186, 116, 0.3); }

@media (max-width: 992px) {
  .glass-integration-row { flex-direction: column; }
  .tilt-1, .tilt-2, .tilt-3 { transform: none; box-shadow: 0 10px 30px rgba(253, 186, 116, 0.1); }
  .workflow-split { flex-direction: column; }
  .iso-workflow { display: none; /* Simplify on mobile */ }
}

/* ==========================================================================
   GLOBAL CARD ANIMATION SYSTEM
   Applies to: service, platform, pricing, office, step, testimonial,
               team, premium-service, glass-integration, p-testimonial cards.
   ========================================================================== */

/* ── 1. Staggered Reveal State (toggled by JS) ── */

.service-card-item,
.platform-card,
.pricing-card,
.office-card,
.team-card,
.step-card,
.testimonial-card,
.premium-service-card,
.glass-integration-card,
.p-testimonial-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  will-change: opacity, transform;
}

/* card-visible class added by JS with stagger delay */
.service-card-item.card-visible,
.platform-card.card-visible,
.pricing-card.card-visible,
.office-card.card-visible,
.team-card.card-visible,
.step-card.card-visible,
.testimonial-card.card-visible,
.premium-service-card.card-visible,
.glass-integration-card.card-visible,
.p-testimonial-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Preserve 3D tilt on glass cards after reveal */
.glass-integration-card.card-visible.tilt-1 {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateY(-10px);
}
.glass-integration-card.card-visible.tilt-2 {
  transform: perspective(1000px) translateZ(30px);
}
.glass-integration-card.card-visible.tilt-3 {
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-10px);
}

/* ── 2. Hover Lift (4–8px, no rotation) ── */

.service-card-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(253, 186, 116, 0.3), 0 4px 12px rgba(253, 186, 116, 0.15) !important;
  border-color: rgba(251, 146, 60, 0.5) !important;
}

.platform-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.14) !important;
}

.pricing-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.15) !important;
}

.office-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.12) !important;
}

.team-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.12) !important;
}

.step-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.12) !important;
}

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.14) !important;
}

.premium-service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 48px rgba(253, 186, 116, 0.3) !important;
}

.glass-integration-card:hover {
  transform: perspective(1000px) translateZ(20px) translateY(-6px) !important;
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.16) !important;
}

.p-testimonial-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.14) !important;
}

/* Featured / Popular pricing card gets extra lift */
.pricing-card.popular:hover,
.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 24px 52px rgba(139, 92, 246, 0.22) !important;
}

/* ── 3. Smooth Icon Scale on Hover (1.05–1.08, no rotation) ── */

.service-card-item:hover .service-icon-box {
  transform: scale(1.06) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.platform-card:hover .platform-icon-wrapper {
  transform: scale(1.05) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.office-card:hover .office-icon {
  transform: scale(1.08) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.premium-service-card:hover .ps-icon-box {
  transform: scale(1.07) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.glass-integration-card:hover .gi-icon {
  transform: scale(1.06) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.step-card:hover .step-number {
  transform: scale(1.1) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.p-step:hover .p-icon {
  transform: scale(1.07) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.22) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease !important;
}

/* ── Mobile Pricing Slider Fixes ── */
@media (max-width: 768px) {
  .pricing-slider-container {
    padding: 0 45px;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .prev-btn {
    left: 2px;
  }
  .next-btn {
    right: 2px;
  }
  .pricing-card {
    padding: 25px 15px;
  }
  .pricing-section {
    padding-bottom: 80px; /* Leave space for bottom fixed menu */
  }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
======================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #25D366;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #25D366;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* On mobile, hide on small screens since mobile action bar is there */
@media (max-width: 768px) {
  .whatsapp-float-btn {
    display: none;
  }
}
