/**
 * ROSA SMS - Modern & Minimal SaaS Frontend Design System
 * Carefully crafted with vibrant gradients, glassmorphism, micro-animations, and responsive layout.
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --primary: #0396A6;
  --primary-hover: #027a87;
  --primary-light: #e6f7f8;
  --primary-glow: rgba(3, 150, 166, 0.25);
  
  --secondary: #06b6d4;
  --secondary-glow: rgba(6, 182, 212, 0.25);
  
  --accent: #0891b2;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --dark-bg: #0b0f19;
  --dark-surface: #111827;
  --dark-card: #1f2937;
  --dark-border: rgba(255, 255, 255, 0.08);

  --light-bg: #ffffff;
  --light-surface: #f8fafc;
  --light-surface-2: #f1f5f9;
  --light-border: #e2e8f0;
  --light-card: #ffffff;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(3, 150, 166, 0.2);
  --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.2);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base resets & typography */
body {
  font-family: var(--font-family) !important;
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

/* Smooth Gradient Utilities */
.gradient-text {
  background: linear-gradient(135deg, #0396A6 0%, #06b6d4 50%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-light {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Radiant Background & Mesh Glow */
.glow-orb-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(3, 150, 166, 0.4) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.glow-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: floatOrb 16s ease-in-out infinite alternate-reverse;
}

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

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

@keyframes pulsePing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-float {
  animation: floatAnimation 4s ease-in-out infinite;
}

.animate-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  animation: pulsePing 2s infinite;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.modern-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  border-bottom-color: var(--light-border);
}

.modern-navbar {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modern-brand img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.modern-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modern-nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

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

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

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

.modern-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher Dropdown */
.lang-switcher-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--light-surface-2);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-switcher-dropdown .dropdown-toggle:hover {
  background: var(--light-surface);
  border-color: #cbd5e1;
}

.lang-switcher-dropdown .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.25rem;
  vertical-align: 0.15em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.lang-dropdown-menu {
  min-width: 160px;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-xl);
  background: #ffffff;
  animation: fadeInDown 0.25s ease;
}

.lang-item-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.lang-item-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.lang-item-btn.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

/* Modern Action Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.65rem 1.45rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-modern-primary {
  background: linear-gradient(135deg, #0396A6 0%, #00b4d8 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(3, 150, 166, 0.35);
}

.btn-modern-primary:hover {
  background: linear-gradient(135deg, #027a87 0%, #0096c7 100%);
  box-shadow: 0 6px 20px rgba(3, 150, 166, 0.45);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-modern-secondary {
  background: #ffffff;
  color: var(--text-main) !important;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
}

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

.btn-modern-dark {
  background: var(--dark-surface);
  color: #ffffff !important;
  border: 1px solid var(--dark-border);
}

.btn-modern-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #ffffff !important;
}

.btn-modern-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-modern-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.modern-hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
  background: radial-gradient(circle at 80% 20%, rgba(3, 150, 166, 0.07) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
              #ffffff;
  overflow: hidden;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(3, 150, 166, 0.08);
  border: 1px solid rgba(3, 150, 166, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #0b0f19;
  letter-spacing: -0.03em;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.35rem;
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.hero-metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-border);
}

.hero-metric-item h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.hero-metric-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* SMS Mockup & Interactive Preview Card */
.sms-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sms-dashboard-card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sms-dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(3, 150, 166, 0.22);
}

.card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.window-dot-red { background-color: #ef4444; }
.window-dot-yellow { background-color: #f59e0b; }
.window-dot-green { background-color: #10b981; }

.card-topbar-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-inner-body {
  padding: 1.5rem;
}

.sms-message-bubble {
  background: #f1f5f9;
  border-radius: 16px 16px 16px 4px;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.sms-sender-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.sms-sender-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sms-time {
  font-size: 0.72rem;
  color: #94a3b8;
}

.sms-text {
  font-size: 0.92rem;
  color: #1e293b;
  line-height: 1.45;
  margin: 0;
}

.sms-status-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.sms-status-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #065f46;
}

.sms-status-badge {
  background: #10b981;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
}

.code-snippet-box {
  background: #0f172a;
  border-radius: var(--radius-md);
  padding: 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.5;
  position: relative;
}

.code-snippet-box .token-keyword { color: #f472b6; }
.code-snippet-box .token-func { color: #60a5fa; }
.code-snippet-box .token-string { color: #34d399; }

/* Floating Badges near Mockup */
.floating-badge {
  position: absolute;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  z-index: 3;
}

.badge-float-1 {
  top: 15%;
  left: -25px;
  animation: floatAnimation 5s ease-in-out infinite;
}

.badge-float-2 {
  bottom: 10%;
  right: -25px;
  animation: floatAnimation 6s ease-in-out infinite reverse;
}

@media (max-width: 991px) {
  .floating-badge {
    display: none;
  }
}

/* ==========================================================================
   FEATURES / CHOOSE US (BENTO GRID)
   ========================================================================== */
.section-modern {
  padding: 90px 0;
  position: relative;
}

.section-modern-bg {
  background-color: var(--light-surface);
}

.section-modern-dark {
  background-color: var(--dark-bg);
  color: #ffffff;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0b0f19;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-modern-dark .section-title {
  color: #ffffff;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-modern-dark .section-desc {
  color: #94a3b8;
}

/* Bento Card Style */
.bento-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 2.25rem 2rem;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.icon-blue {
  background: #e6f7f8;
  color: #0396A6;
}

.icon-cyan {
  background: #ecfeff;
  color: #0891b2;
}

.icon-purple {
  background: #faf5ff;
  color: #9333ea;
}

.icon-emerald {
  background: #ecfdf5;
  color: #059669;
}

.bento-card:hover .bento-icon-wrapper {
  transform: scale(1.1);
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.bento-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Feature Spotlight Row */
.spotlight-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  margin-top: 3.5rem;
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1.25rem;
}

.spotlight-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0 0;
}

.spotlight-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.spotlight-list li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   HOW IT WORKS (WORK SECTION)
   ========================================================================== */
.step-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(3, 150, 166, 0.3);
}

.step-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.pricing-card.is-popular {
  border-color: var(--primary);
  box-shadow: 0 20px 40px -15px rgba(3, 150, 166, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0396A6 0%, #00b4d8 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(3, 150, 166, 0.35);
}

.pricing-plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 42px;
  margin-bottom: 1.5rem;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-border);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b0f19;
  line-height: 1;
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-credits-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e6f7f8;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 0.85rem;
}

.pricing-features-list li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   PROMO / CALLOUT BANNER
   ========================================================================== */
.modern-promo-banner {
  background: linear-gradient(135deg, #0b0f19 0%, #1e1b4b 50%, #0f172a 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 150, 166, 0.4) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  filter: blur(80px);
  pointer-events: none;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.star-rating {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--light-surface-2);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-user-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.1rem;
}

.testimonial-user-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.modern-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.modern-accordion-item {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.modern-accordion-item:hover {
  border-color: #cbd5e1;
}

.modern-accordion-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  background: transparent;
  width: 100%;
  border: none;
  text-align: left;
}

.accordion-chevron {
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.modern-accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.modern-accordion-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.modern-accordion-item.active .modern-accordion-body {
  display: block;
}

/* ==========================================================================
   CLIENT LOGOS
   ========================================================================== */
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.client-logo-item {
  filter: grayscale(100%);
  opacity: 0.55;
  transition: var(--transition-fast);
  max-height: 40px;
  object-fit: contain;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.modern-footer {
  background: #0b0f19;
  color: #94a3b8;
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-brand img {
  max-height: 44px;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.footer-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

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

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.footer-contact-list a {
  color: #94a3b8;
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   CONTACT US PAGE STYLING
   ========================================================================== */
.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

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

.modern-form-group {
  margin-bottom: 1.25rem;
}

.modern-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.45rem;
}

.modern-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.94rem;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.modern-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3, 150, 166, 0.15);
}

/* Inner Page Hero / Header */
.inner-page-hero {
  padding: 140px 0 60px 0;
  background: radial-gradient(circle at 50% 0%, rgba(3, 150, 166, 0.08) 0%, transparent 70%), #ffffff;
  border-bottom: 1px solid var(--light-border);
  text-align: center;
}

.breadcrumb-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--light-surface-2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1rem;
}

.breadcrumb-modern a {
  color: var(--primary);
}

/* Back to top button */
#modern-back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(3, 150, 166, 0.4);
  z-index: 999;
  transition: var(--transition-fast);
  border: none;
}

#modern-back-to-top:hover {
  transform: translateY(-4px);
  background: var(--primary-hover);
}
