/* Smart Media Marketing Website Styles */

/* ===== VARIABLES ===== */
:root {
  /* Brand colors based on SmartMedia logo */
  --primary: #c244c7; /* Magenta from SmartMedia logo */
  --secondary: #8e39a8; /* Darker magenta for hover/accent */
  --dark: #333333;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  
  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border radius */
  --border-radius: 4px;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

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

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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: stretch;
}

.row.showcase-grid {
  margin: 0 -20px;
}

.row.showcase-grid > [class*="col-"] {
  padding: 0 20px;
  margin-bottom: 40px;
}

.col {
  flex: 1;
  padding: 0 15px;
}

/* Column widths for different screen sizes */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Responsive columns */
@media (max-width: 768px) {
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 576px) {
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

.section {
  padding: calc(var(--spacing-xl) * 1.5) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 1.5);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
}

/* ===== HEADER ===== */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

.logo {
  display: flex;
  align-items: center;
}

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

.nav {
  display: flex;
}

.nav-item {
  margin-left: var(--spacing-lg);
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-item {
    margin: var(--spacing-sm) 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--light) 0%, #e8f4f8 50%, var(--white) 100%);
  padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl) 0;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 153, 0, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, transparent 40%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e3f2fd" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
}

.hero-visual-elements {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 2;
}

.floating-phone {
  position: relative;
  width: 120px;
  height: 200px;
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fa 100%);
  border-radius: 25px;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 20px 40px rgba(0, 102, 204, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
  margin-bottom: var(--spacing-xl);
}

.floating-phone i {
  font-size: 3rem;
  color: var(--primary);
}

.phone-notifications {
  position: absolute;
  left: -180px;
  top: 20px;
}

.notification {
  background: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
  margin-bottom: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--dark);
  border: 1px solid rgba(0, 102, 204, 0.1);
  animation: slideInLeft 0.6s ease-out;
  white-space: nowrap;
}

.notification:nth-child(1) { animation-delay: 0.5s; opacity: 0; animation-fill-mode: forwards; }
.notification:nth-child(2) { animation-delay: 1s; opacity: 0; animation-fill-mode: forwards; }
.notification:nth-child(3) { animation-delay: 1.5s; opacity: 0; animation-fill-mode: forwards; }

.floating-stats {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.stat-bubble {
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fa 100%);
  padding: var(--spacing-md);
  border-radius: 20px;
  text-align: center;
  box-shadow: 
    0 15px 30px rgba(0, 102, 204, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
  animation: bounce 2s ease-in-out infinite;
}

.stat-bubble:nth-child(1) { animation-delay: 0.2s; }
.stat-bubble:nth-child(2) { animation-delay: 0.4s; }
.stat-bubble:nth-child(3) { animation-delay: 0.6s; }

.stat-bubble .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-bubble .stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: var(--spacing-xs);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: calc(var(--spacing-xl) * 1.5);
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons {
  margin-bottom: calc(var(--spacing-xl) * 1.5);
}

.hero .btn {
  margin: 0 var(--spacing-sm);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.3);
}

.hero-trust-indicators {
  display: flex;
  justify-content: center;
  gap: calc(var(--spacing-xl) * 1.5);
  margin-top: calc(var(--spacing-xl) * 1.5);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.trust-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

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

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* SMS Demo Section */
.sms-demo-section {
  background: linear-gradient(135deg, var(--white) 0%, #f8fafe 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.sms-demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 153, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.sms-demo-section .container {
  position: relative;
  z-index: 1;
}

.demo-scenario {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 24px;
  padding: calc(var(--spacing-xl) * 1.5);
  margin-bottom: calc(var(--spacing-xl) * 1.5);
  box-shadow: 
    0 15px 40px rgba(0, 102, 204, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.3s ease;
}

.demo-scenario:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 60px rgba(0, 102, 204, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08);
}

.scenario-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 1.5);
}

.scenario-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.scenario-header p {
  font-size: 1.1rem;
  color: var(--gray);
  margin: 0;
}

.scenario-content {
  display: flex;
  justify-content: center;
}

.demo-phones {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--spacing-xl) * 1.5);
}

.phone-demo {
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone-demo::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  overflow-y: auto;
}

.sms-thread {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.message-bubble.incoming {
  align-self: flex-start;
  background: #f1f1f1;
  color: var(--dark);
  border-bottom-left-radius: 8px;
}

.message-bubble.outgoing {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 8px;
  text-align: right;
}

.message-content {
  margin-bottom: 4px;
}

.message-time {
  font-size: 11px;
  opacity: 0.7;
}

.typing-indicator {
  align-self: flex-start;
  background: #f1f1f1;
  border-radius: 20px;
  padding: 12px 16px;
  border-bottom-left-radius: 8px;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
}

.campaign-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.metric-card {
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: var(--spacing-md);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.conversation-stats {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fa 100%);
  padding: var(--spacing-md);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

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

.stat-item span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.appointment-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  justify-content: center;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fa 100%);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.benefit-text strong {
  color: var(--primary);
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #0055aa;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #e68a00;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ===== SERVICES SECTION - REIMAGINED ===== */
.services-reimagined {
  background: linear-gradient(135deg, #f8fafe 0%, var(--white) 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
  padding: calc(var(--spacing-xl) * 2) 0;
}

.services-reimagined::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 30%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.services-reimagined .container {
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 2);
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: calc(var(--spacing-xl) * 1.5);
  margin-bottom: calc(var(--spacing-xl) * 2);
}

/* Featured Service Card */
.service-card-large {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 24px;
  padding: calc(var(--spacing-xl) * 1.5);
  box-shadow: 
    0 20px 60px rgba(0, 102, 204, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  gap: calc(var(--spacing-xl) * 1.5);
  position: relative;
  overflow: hidden;
}

.service-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.service-card-large:hover::before {
  left: 100%;
}

.service-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 102, 204, 0.15),
    0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(var(--spacing-xl) * 1.5);
  box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
}

.service-card-large:hover .service-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-large i {
  font-size: 3.5rem;
  color: var(--white);
}

.service-stats {
  display: flex;
  gap: var(--spacing-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: var(--spacing-xs);
}

.service-content-large {
  flex: 1.5;
  position: relative;
  z-index: 2;
}

.service-title-large {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description-large {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
}

.service-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: calc(var(--spacing-xl) * 1.5);
}

.feature-badge {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(255, 153, 0, 0.1) 100%);
  color: var(--primary);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 204, 0.2);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Secondary Services */
.services-secondary {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.service-card-compact {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 
    0 8px 25px rgba(0, 102, 204, 0.08),
    0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.service-card-compact:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0, 102, 204, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-icon-compact {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card-compact:hover .service-icon-compact {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-compact i {
  font-size: 1.5rem;
  color: var(--white);
}

.service-content-compact {
  flex: 1;
}

.service-title-compact {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
}

.service-description-compact {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: var(--spacing-md);
}

.btn-compact {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.9rem;
}

.btn-large {
  padding: var(--spacing-md) calc(var(--spacing-xl) * 1.5);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Services CTA */
.services-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: calc(var(--spacing-xl) * 1.5);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.services-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: calc(var(--spacing-xl) * 1.5);
  opacity: 0.9;
}

/* ===== DEMO SECTION ===== */
.demo-section {
  background: linear-gradient(135deg, #f8fafe 0%, var(--white) 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 153, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.demo-section .container {
  position: relative;
  z-index: 1;
}

.demo-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 2);
}

.demo-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.demo-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--spacing-xl) * 2);
}

.demo-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-xl) * 1.5);
  align-items: center;
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 24px;
  padding: calc(var(--spacing-xl) * 1.5);
  box-shadow: 
    0 15px 40px rgba(0, 102, 204, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.3s ease;
}

.demo-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 60px rgba(0, 102, 204, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08);
}

.demo-item:nth-child(even) {
  direction: rtl;
}

.demo-item:nth-child(even) .demo-visual,
.demo-item:nth-child(even) .demo-content {
  direction: ltr;
}

.demo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile SMS Mockup */
.mobile-mockup {
  width: 280px;
  height: 480px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.mobile-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.mobile-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

.sms-conversation {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  display: flex;
}

.message.received {
  justify-content: flex-start;
}

.message.sent {
  justify-content: flex-end;
}

.message-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}

.message.received .message-bubble {
  background: #f1f1f1;
  color: var(--dark);
  border-bottom-left-radius: 8px;
}

.message.sent .message-bubble {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 8px;
}

.message-time {
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}

/* Scratch Card Mockup */
.scratch-card-mockup {
  perspective: 1000px;
}

.scratch-card {
  width: 280px;
  height: 360px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  padding: 20px;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.3);
  transform: rotateY(-5deg);
  transition: transform 0.3s ease;
}

.scratch-card:hover {
  transform: rotateY(0deg) scale(1.02);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}

.card-header h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--white);
}

.card-header p {
  font-size: 14px;
  opacity: 0.9;
}

.scratch-area {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--dark);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.revealed-prize {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.revealed-prize span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--gray);
}

.claim-btn {
  width: 100%;
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.claim-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* WiFi Ad Mockup */
.wifi-ad-mockup {
  width: 300px;
  height: 400px;
}

.wifi-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  border: 3px solid #e1e1e1;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.wifi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.wifi-logo {
  font-weight: 600;
  color: var(--primary);
}

.wifi-brand {
  font-size: 14px;
  color: var(--gray);
}

.ad-content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}

.ad-image {
  font-size: 48px;
  margin-bottom: 15px;
}

.ad-image span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 10px;
}

.ad-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.ad-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ad-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.connect-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.demo-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.demo-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.demo-stats {
  display: flex;
  gap: var(--spacing-lg);
}

.demo-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: var(--spacing-xs);
}

/* ===== SMS PAGE SPECIFIC STYLES ===== */

/* SMS Hero Section */
.sms-hero .hero-visual-elements {
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.sms-flow-animation {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-xl) * 1.5);
}

.sms-sender,
.sms-receivers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.device-mockup {
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: var(--spacing-md);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
  border: 2px solid rgba(0, 102, 204, 0.1);
  text-align: center;
  min-width: 100px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.device-mockup i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.device-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

.sender-device {
  animation-delay: 0s;
}

.receiver-device:nth-child(1) { animation-delay: 0.5s; }
.receiver-device:nth-child(2) { animation-delay: 1s; }
.receiver-device:nth-child(3) { animation-delay: 1.5s; }

.message-flow {
  position: absolute;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.flow-message {
  background: var(--primary);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
  position: relative;
}

.flow-message:nth-child(1) { animation-delay: 1s; }
.flow-message:nth-child(2) { animation-delay: 1.5s; }
.flow-message:nth-child(3) { animation-delay: 2s; }

.flow-message::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--primary);
}

.sms-stats-display {
  display: flex;
  gap: var(--spacing-md);
}

.hero-stat-card {
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: var(--spacing-md);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
  border: 1px solid rgba(0, 102, 204, 0.1);
  text-align: center;
  min-width: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-stat-card:nth-child(1) { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }
.hero-stat-card:nth-child(2) { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }
.hero-stat-card:nth-child(3) { animation-delay: 0.9s; opacity: 0; animation-fill-mode: forwards; }

.hero-stat-card .stat-icon {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.hero-stat-card .stat-content .stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-card .stat-content .stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: var(--spacing-xs);
}

/* SMS Features Section */
.sms-features-reimagined {
  background: linear-gradient(135deg, #f8fafe 0%, var(--white) 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.sms-features-reimagined::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 153, 0, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.sms-features-reimagined .container {
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 2);
}

.features-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: calc(var(--spacing-xl) * 1.5);
}

.feature-card-large {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 24px;
  padding: calc(var(--spacing-xl) * 1.5);
  box-shadow: 
    0 20px 60px rgba(0, 102, 204, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s ease;
  display: flex;
  gap: calc(var(--spacing-xl) * 1.5);
}

.feature-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 102, 204, 0.15),
    0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bulk-sms-demo {
  width: 100%;
  max-width: 320px;
}

.sms-dashboard {
  background: linear-gradient(145deg, #f8f9fa 0%, var(--white) 100%);
  border-radius: 16px;
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 102, 204, 0.1);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.dashboard-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark);
}

.status-badge {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.stat-mini {
  text-align: center;
  background: rgba(0, 102, 204, 0.05);
  padding: var(--spacing-sm);
  border-radius: 8px;
}

.stat-mini .number {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-mini .label {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: var(--spacing-xs);
}

.message-preview {
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: 12px;
  padding: var(--spacing-md);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
}

.feature-content-large {
  flex: 1.5;
}

.feature-content-large h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.feature-content-large p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(0, 102, 204, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(0, 102, 204, 0.1);
  transform: translateX(5px);
}

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

.highlight-item span {
  font-weight: 600;
  color: var(--dark);
}

.secondary-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.feature-card-compact {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 
    0 8px 25px rgba(0, 102, 204, 0.08),
    0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.3s ease;
}

.feature-card-compact:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0, 102, 204, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.feature-card-compact:hover .feature-icon-modern {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-modern i {
  font-size: 1.3rem;
  color: var(--white);
}

.feature-content-compact h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.feature-content-compact p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: var(--spacing-md);
}

.feature-demo-mini {
  margin-top: var(--spacing-md);
}

.mini-conversation {
  background: #f8f9fa;
  border-radius: 12px;
  padding: var(--spacing-sm);
  font-size: 0.8rem;
}

.mini-message {
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 12px;
  margin-bottom: var(--spacing-xs);
  font-size: 0.75rem;
}

.mini-message.sent {
  background: var(--primary);
  color: var(--white);
  margin-left: 20%;
  text-align: right;
}

.mini-message.received {
  background: #e1e1e1;
  color: var(--dark);
  margin-right: 20%;
}

.mini-flyer {
  text-align: center;
}

.flyer-preview {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 8px;
  padding: var(--spacing-sm);
  font-size: 0.8rem;
}

.flyer-image {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.flyer-text {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.flyer-cta {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-xs);
  border-radius: 4px;
  font-size: 0.7rem;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: var(--spacing-xs);
  height: 60px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 4px 4px 0 0;
  height: var(--height);
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}

.chart-label {
  font-size: 0.6rem;
  color: var(--white);
  padding: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.mini-code {
  background: #1a1a1a;
  color: #00ff88;
  border-radius: 8px;
  padding: var(--spacing-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  line-height: 1.4;
}

.code-line {
  margin-bottom: 2px;
}

.code-response {
  color: #88ddff;
}

/* Legacy services styles for other pages */
.services {
  background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 16px;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 4px 20px rgba(0, 102, 204, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 102, 204, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--secondary);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.service-title {
  margin-bottom: var(--spacing-md);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.service-card .btn {
  margin-top: auto;
  align-self: stretch;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover .btn-outline {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 102, 204, 0.3);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  background: linear-gradient(135deg, var(--light) 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e3f2fd" opacity="0.6"/><circle cx="80" cy="20" r="2" fill="%23e3f2fd" opacity="0.6"/><circle cx="50" cy="50" r="2" fill="%23e3f2fd" opacity="0.6"/><circle cx="20" cy="80" r="2" fill="%23e3f2fd" opacity="0.6"/><circle cx="80" cy="80" r="2" fill="%23e3f2fd" opacity="0.6"/></svg>');
  opacity: 0.4;
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

/* ===== CLIENTS SECTION ===== */
.clients {
  background: linear-gradient(135deg, var(--white) 0%, #f8fafe 100%);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23e8f2ff" opacity="0.8"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.6;
  z-index: 0;
}

.clients .container {
  position: relative;
  z-index: 1;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
}

.client-logo {
  padding: var(--spacing-lg);
  opacity: 0.6;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 102, 204, 0.1);
  backdrop-filter: blur(10px);
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
  border-color: var(--primary);
}

.client-logo img {
  max-height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, var(--light) 0%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20 T80,20" stroke="%23e3f2fd" stroke-width="1" fill="none" opacity="0.6"/><path d="M20,50 Q30,40 40,50 T60,50 T80,50" stroke="%23e3f2fd" stroke-width="1" fill="none" opacity="0.6"/><path d="M20,80 Q30,70 40,80 T60,80 T80,80" stroke="%23e3f2fd" stroke-width="1" fill="none" opacity="0.6"/></svg>');
  opacity: 0.4;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 20px;
  padding: calc(var(--spacing-xl) * 1.5);
  margin-bottom: var(--spacing-lg);
  box-shadow: 
    0 10px 30px rgba(0, 102, 204, 0.1),
    0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 102, 204, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  position: relative;
  z-index: 2;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-company {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: var(--spacing-xs);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--white);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* ===== TABLE STYLES ===== */
.table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
}

.table th,
.table td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.table th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table tbody tr:hover {
  background-color: rgba(0, 102, 204, 0.02);
  transform: scale(1.005);
}

.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
}

.table-bordered {
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(0, 102, 204, 0.1);
}

/* ===== LIST STYLES ===== */
ul li {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Enhanced list items with icons */
ul li i.fas {
  margin-right: var(--spacing-sm);
  color: var(--primary);
  width: 20px;
}

ul li i.fas + h4,
ul li i.fas + h5 {
  display: inline-block;
  margin-left: var(--spacing-xs);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  color: var(--light);
  padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 153, 0, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: flex-start;
}

.footer .col-12,
.footer .col-md-4 {
  padding: 0 15px;
  margin-bottom: var(--spacing-lg);
}

.footer .col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.footer-logo {
  margin-bottom: var(--spacing-lg);
}

.footer-logo img {
  max-height: 50px;
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-title {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
  transition: all 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

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

.footer-links i {
  margin-right: var(--spacing-sm);
  width: 16px;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
  border-color: transparent;
}

.footer-bottom {
  margin-top: calc(var(--spacing-xl) * 1.5);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
  .footer .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links li:hover {
    transform: none;
  }
}

/* ===== RESPONSIVE SERVICES SECTION ===== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .service-card-large {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .service-visual {
    align-items: center;
  }
  
  .service-stats {
    justify-content: center;
  }
  
  .service-title-large {
    font-size: 1.8rem;
  }
  
  .services-secondary {
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl) 0;
  }
  
  .hero-visual-elements {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-trust-indicators {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .trust-item {
    flex-direction: row;
    gap: var(--spacing-sm);
  }
  
  .trust-item i {
    margin-bottom: 0;
  }
  
  .services-reimagined {
    padding: var(--spacing-xl) 0;
  }
  
  .services-header {
    margin-bottom: var(--spacing-xl);
  }
  
  .services-subtitle {
    font-size: 1.1rem;
  }
  
  .service-card-large {
    padding: var(--spacing-lg);
  }
  
  .service-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-lg);
  }
  
  .service-icon-large i {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .service-title-large {
    font-size: 1.6rem;
  }
  
  .service-description-large {
    font-size: 1rem;
  }
  
  .service-card-compact {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
  
  .service-icon-compact {
    align-self: center;
    width: 50px;
    height: 50px;
  }
  
  .service-icon-compact i {
    font-size: 1.2rem;
  }
  
  .services-cta {
    padding: var(--spacing-xl);
  }
  
  .services-cta h3 {
    font-size: 1.5rem;
  }
  
  .services-cta p {
    font-size: 1rem;
  }
  
  /* Demo section responsive */
  .demo-item {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    text-align: center;
  }
  
  .demo-item:nth-child(even) {
    direction: ltr;
  }
  
  .mobile-mockup,
  .scratch-card-mockup,
  .wifi-ad-mockup {
    max-width: 100%;
  }
  
  .mobile-mockup {
    width: 240px;
    height: 400px;
  }
  
  .scratch-card {
    width: 240px;
    height: 300px;
  }
  
  .wifi-screen {
    width: 260px;
    height: 320px;
  }
  
  .demo-stats {
    justify-content: center;
  }
}

/* ===== CARD COMPONENTS ===== */
.card {
  background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 102, 204, 0.1);
  box-shadow: 
    0 4px 20px rgba(0, 102, 204, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 20px 40px rgba(0, 102, 204, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.card-body {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.card-title {
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.card-body p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.card-body .fa-3x {
  transition: all 0.3s ease;
}

.card:hover .fa-3x {
  transform: scale(1.1);
  color: var(--secondary);
}

/* Enhanced feature cards */
.feature {
  display: flex;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 102, 204, 0.05);
}

.feature:hover {
  background: rgba(0, 102, 204, 0.02);
  transform: translateX(8px);
  border-color: rgba(0, 102, 204, 0.15);
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-right: var(--spacing-lg);
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.feature h4, .feature h5 {
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
}

.feature p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.bg-primary {
  background-color: var(--primary);
  color: var(--white);
}

.bg-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

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

.bg-dark {
  background-color: var(--dark);
  color: var(--white);
}

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-3 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-4 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-5 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.px-1 { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.px-2 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-3 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-4 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-5 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Intersection Observer animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
  .service-card {
    padding: var(--spacing-lg);
  }
  
  .card-body {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .service-icon {
    font-size: 3rem;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
    align-self: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: var(--spacing-xl) 0;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
}

/* ===== RCS PAGE SPECIFIC STYLES ===== */

/* Enhanced RCS Hero Section */
.rcs-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.hero-background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 50%, rgba(240, 147, 251, 0.8) 100%);
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: -2s;
}

.floating-element.element-3 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 5%;
  animation-delay: -4s;
}

.floating-element.element-4 {
  width: 40px;
  height: 40px;
  top: 40%;
  right: 30%;
  animation-delay: -1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.3;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 60vh;
  position: relative;
  z-index: 2;
}

.hero-content-section {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out;
}

.hero-badge i {
  color: #ffd700;
}

.hero-title-enhanced {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-subtitle {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-buttons-enhanced {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: slideInLeft 0.8s ease-out 0.8s both;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-icon-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slideInLeft 0.8s ease-out 1s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);  
  border-radius: 25px;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge i {
  color: #ffd700;
}

.hero-demo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: slideInRight 0.8s ease-out 0.5s both;
}

.rcs-phone-showcase {
  position: relative;
}

.phone-mockup-modern {
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, #1a1a1a, #2c2c2c);
  border-radius: 45px;
  padding: 15px;
  border: 2px solid #0a0a0a;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.phone-mockup-modern::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #333;
  border-radius: 3px;
}

.phone-mockup-modern::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: #333;
  border-radius: 3px;
}

.phone-screen-modern {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 8px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-status-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.signal-bar {
  width: 3px;
  background: #333;
  border-radius: 1px;
}

.signal-bar:nth-child(1) { height: 3px; }
.signal-bar:nth-child(2) { height: 5px; }
.signal-bar:nth-child(3) { height: 7px; }
.signal-bar:nth-child(4) { height: 10px; }

.carrier-name {
  font-size: 0.75rem;
  color: #333;
  font-weight: 500;
  margin-left: 6px;
}

.time {
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  letter-spacing: 0.3px;
}

.phone-status-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.battery-percentage {
  font-size: 0.75rem;
  color: #333;
  font-weight: 500;
}

.battery-indicator {
  width: 24px;
  height: 12px;
  border: 1px solid #333;
  border-radius: 2px;
  position: relative;
  background: white;
}

.battery-indicator::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 3px;
  width: 2px;
  height: 6px;
  background: #333;
  border-radius: 0 1px 1px 0;
}

.battery-indicator::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  width: 70%;
  background: #4CAF50;
  border-radius: 1px;
}

.rcs-conversation-demo {
  padding: 20px 18px;
  height: calc(100% - 55px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f5f5f5;
}

.rcs-message-modern {
  background: white;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: messageSlideIn 1s ease-out 1.5s both;
  max-width: 100%;
  border: 1px solid #e1e8ed;
}

.message-header-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.business-avatar-modern {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.brand-logo-modern {
  font-size: 1.2rem;
}

.business-info-modern {
  flex: 1;
  min-width: 0;
}

.business-name-modern {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 2px;
}

.verified-badge-modern {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #667eea;
  font-weight: 600;
}

.verified-badge-modern i {
  color: #1da1f2;
  font-size: 0.8rem;
}

.product-carousel-mini {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #e9ecef;
}

.carousel-item-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-image-mini {
  font-size: 1.8rem;
}

.product-info-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a1a1a;
  line-height: 1.2;
}

.product-price {
  color: #667eea;
  font-weight: 700;
  font-size: 0.9rem;
}

.message-text {
  font-size: 0.9rem;
  color: #333;
  margin: 10px 0;
  line-height: 1.4;
  font-weight: 400;
}

.rcs-action-buttons-modern {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.rcs-btn-modern {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rcs-btn-modern.primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.rcs-btn-modern.secondary {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.feature-highlights-floating {
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-highlight-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 8px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: floatIn 0.8s ease-out both;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50;
}

.highlight-icon-modern {
  font-size: 1rem;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title-enhanced {
    font-size: 3rem;
  }
  
  .feature-highlights-floating {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .rcs-hero {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero-title-enhanced {
    font-size: 2.5rem;
  }
  
  .hero-title-subtitle {
    font-size: 1.8rem;
  }
  
  .hero-stats-inline {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-buttons-enhanced {
    flex-direction: column;
    align-items: center;
  }
  
  .phone-mockup-modern {
    width: 280px;
    height: 580px;
  }
  
  .feature-highlights-floating {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Legacy RCS Hero Section */
.rcs-hero .hero-visual-elements {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
}

.rcs-evolution-demo {
  width: 100%;
  max-width: 800px;
}

.message-comparison {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.message-type-demo {
  flex: 1;
  text-align: center;
}

.message-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-mockup-small {
  width: 180px;
  height: 320px;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 25px;
  padding: 20px 15px;
  border: 3px solid #dee2e6;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.phone-screen-small {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  padding: var(--spacing-sm);
  overflow: hidden;
  position: relative;
}

.message-bubble.basic {
  background: #e9ecef;
  padding: var(--spacing-sm);
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.rcs-message-preview {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rcs-header {
  display: flex;
  align-items: center;
  padding: var(--spacing-sm);
  background: linear-gradient(135deg, var(--primary), #0056b3);
  color: white;
  gap: 8px;
}

.brand-logo {
  font-size: 1.2rem;
}

.brand-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.verified-badge {
  font-size: 0.7rem;
  margin-left: auto;
}

.rcs-content {
  padding: var(--spacing-sm);
}

.rcs-image {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}

.rcs-content p {
  font-size: 0.8rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.rcs-buttons {
  display: flex;
  gap: 4px;
}

.rcs-btn {
  flex: 1;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rcs-btn.primary {
  background: var(--primary);
  color: white;
}

.rcs-btn.secondary {
  background: #f8f9fa;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.evolution-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 var(--spacing-md);
}

.evolution-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rcs-feature-highlights {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.feature-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  transition: transform 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.highlight-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

/* RCS Features Section */
.rcs-features-reimagined {
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.rcs-features-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: calc(var(--spacing-xl) * 1.5);
  margin-top: calc(var(--spacing-xl) * 2);
}

.rcs-feature-card-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  background: white;
  border-radius: 20px;
  padding: calc(var(--spacing-xl) * 1.5);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s ease;
}

.rcs-feature-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 102, 204, 0.15);
}

.rcs-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.branded-message-demo {
  width: 100%;
  max-width: 300px;
}

.rcs-phone-mockup {
  width: 280px;
  height: 500px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 30px;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.rcs-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.signal-bars::before {
  content: '●●●●';
  letter-spacing: 2px;
}

.battery::before {
  content: '🔋';
}

.rcs-conversation {
  background: #f8f9fa;
  border-radius: 20px;
  height: 420px;
  padding: var(--spacing-md);
  overflow-y: auto;
}

.rcs-message-bubble {
  background: white;
  border-radius: 18px;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.message-header {
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-bottom: 1px solid #dee2e6;
  gap: var(--spacing-sm);
}

.business-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-circle {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.business-info {
  flex: 1;
}

.business-name {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.verified-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--success);
}

.message-content {
  padding: var(--spacing-md);
}

.rcs-media-preview {
  margin-bottom: var(--spacing-md);
}

.boarding-pass-preview {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 12px;
  padding: var(--spacing-md);
  font-size: 0.9rem;
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.pass-details {
  display: flex;
  justify-content: space-between;
}

.detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.label {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-bottom: 2px;
}

.value {
  font-weight: 700;
  font-size: 1rem;
}

.rcs-action-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.rcs-action-btn {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rcs-action-btn.primary {
  background: var(--primary);
  color: white;
}

.rcs-action-btn.secondary {
  background: #f8f9fa;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.rcs-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rcs-feature-content-large h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.rcs-feature-content-large p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: calc(var(--spacing-lg) * 1.5);
}

.rcs-feature-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(0, 102, 204, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(0, 102, 204, 0.1);
  transform: translateX(8px);
}

.highlight-item i {
  color: var(--primary);
  font-size: 1.2rem;
  min-width: 24px;
}

.highlight-item span {
  font-weight: 600;
  color: var(--dark);
}

/* Secondary RCS Features */
.secondary-rcs-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.rcs-feature-card-compact {
  background: white;
  border-radius: 16px;
  padding: calc(var(--spacing-lg) * 1.2);
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.rcs-feature-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.12);
}

.rcs-feature-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #0056b3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: white;
  font-size: 1.5rem;
}

.rcs-feature-content-compact h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.rcs-feature-content-compact p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-size: 0.95rem;
}

.rcs-demo-mini {
  margin-top: var(--spacing-sm);
}

.media-showcase {
  display: flex;
  justify-content: space-around;
  gap: var(--spacing-sm);
}

.media-item {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid #e9ecef;
}

.carousel-preview {
  background: #f8f9fa;
  border-radius: 8px;
  padding: var(--spacing-sm);
  position: relative;
}

.carousel-item {
  background: var(--primary);
  color: white;
  padding: var(--spacing-sm);
  border-radius: 6px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.carousel-item.active {
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dee2e6;
}

.dot.active {
  background: var(--primary);
}

.button-showcase {
  display: flex;
  gap: 8px;
}

.mini-rcs-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.mini-rcs-btn.primary {
  background: var(--primary);
  color: white;
}

.mini-rcs-btn.secondary {
  background: #f8f9fa;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.analytics-preview {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 2px;
}

/* RCS Demo Section */
.rcs-demo-section {
  background: linear-gradient(135deg, #f8f9fa 0%, white 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.rcs-demo-showcase {
  display: grid;
  gap: calc(var(--spacing-xl) * 2);
  margin-top: calc(var(--spacing-xl) * 2);
}

.rcs-demo-scenario {
  background: white;
  border-radius: 24px;
  padding: calc(var(--spacing-xl) * 1.5);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.scenario-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 1.5);
}

.scenario-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.scenario-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.rcs-demo-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-xl) * 2);
  align-items: center;
}

.rcs-phone-demo {
  display: flex;
  justify-content: center;
}

.rcs-phone-screen {
  width: 320px;
  height: 600px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 40px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.rcs-message-thread {
  background: #f8f9fa;
  border-radius: 25px;
  height: 100%;
  padding: var(--spacing-lg);
  overflow-y: auto;
}

.rcs-message-bubble.incoming {
  max-width: 85%;
  margin-bottom: var(--spacing-lg);
}

.rcs-message-bubble.branded {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rcs-message-header {
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-bottom: 1px solid #dee2e6;
  gap: var(--spacing-sm);
}

.rcs-business-avatar {
  width: 50px;
  height: 50px;
}

.rcs-brand-logo {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.rcs-business-info {
  flex: 1;
}

.rcs-business-name {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 1rem;
}

.rcs-verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
}

.rcs-message-body {
  padding: var(--spacing-lg);
}

.rcs-message-body p {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.rcs-message-time {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: right;
  padding: 0 var(--spacing-md) var(--spacing-sm);
}

/* Product Carousel Styles */
.rcs-product-carousel {
  background: #f8f9fa;
  border-radius: 12px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.rcs-carousel-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.rcs-product-image {
  font-size: 3rem;
  width: 80px;
  text-align: center;
}

.rcs-product-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.rcs-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.rcs-rating {
  font-size: 0.9rem;
  color: var(--gray);
}

.rcs-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--spacing-sm);
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dee2e6;
}

.indicator.active {
  background: var(--primary);
}

/* Banking specific styles */
.rcs-message-bubble.banking {
  border-left: 4px solid var(--primary);
}

.rcs-alert-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: rgba(0, 102, 204, 0.1);
  border-radius: 8px;
}

.rcs-alert-icon {
  font-size: 1.5rem;
}

.rcs-alert-title {
  font-weight: 700;
  color: var(--dark);
}

.rcs-transaction-details {
  background: #f8f9fa;
  border-radius: 8px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.rcs-transaction-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.rcs-label {
  color: var(--gray);
  font-size: 0.9rem;
}

.rcs-value {
  font-weight: 600;
  color: var(--dark);
}

.rcs-action-btn.success {
  background: var(--success);
  color: white;
}

.rcs-action-btn.danger {
  background: var(--danger);
  color: white;
}

/* Travel specific styles */
.rcs-message-bubble.travel {
  border-left: 4px solid #17a2b8;
}

.rcs-boarding-pass {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 16px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.rcs-pass-header {
  margin-bottom: var(--spacing-lg);
}

.rcs-flight-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rcs-airport {
  text-align: center;
}

.rcs-airport-code {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.rcs-airport-name {
  font-size: 0.8rem;
  opacity: 0.8;
}

.rcs-flight-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rcs-plane-icon {
  font-size: 1.5rem;
}

.rcs-flight-number {
  font-size: 0.9rem;
  font-weight: 600;
}

.rcs-pass-details {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: var(--spacing-md);
}

.rcs-detail-row {
  display: flex;
  justify-content: space-around;
}

.rcs-detail {
  text-align: center;
}

.rcs-detail-label {
  font-size: 0.8rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 4px;
}

.rcs-detail-value {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Metrics and Benefits */
.rcs-campaign-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.rcs-metric-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.rcs-metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.rcs-metric-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.rcs-security-benefits,
.rcs-travel-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.rcs-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(0, 102, 204, 0.05);
  border-radius: 12px;
}

.rcs-benefit-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.rcs-benefit-text {
  line-height: 1.6;
}

.rcs-benefit-text strong {
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}

/* Responsive Design for RCS */
@media (max-width: 1200px) {
  .rcs-features-showcase {
    grid-template-columns: 1fr;
  }
  
  .rcs-feature-card-large {
    grid-template-columns: 1fr;
  }
  
  .rcs-phone-mockup {
    width: 240px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .message-comparison {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .evolution-arrow {
    transform: rotate(90deg);
    margin: var(--spacing-lg) 0;
  }
  
  .rcs-demo-phones {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .rcs-phone-screen {
    width: 280px;
    height: 500px;
  }
  
  .rcs-feature-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rcs-campaign-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .phone-mockup-small {
    width: 150px;
    height: 280px;
  }
  
  .rcs-phone-screen {
    width: 100%;
    height: 400px;
  }
  
  .rcs-feature-highlights {
    grid-template-columns: 1fr;
  }
}

/* RCS Enhanced Use Cases Section */
.rcs-use-cases-enhanced {
  background: linear-gradient(135deg, #f8f9fa 0%, white 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.use-cases-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 2);
}

.use-cases-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: calc(var(--spacing-xl) * 1.5);
  margin-bottom: calc(var(--spacing-xl) * 2);
}

.use-case-card {
  background: white;
  border-radius: 20px;
  padding: calc(var(--spacing-lg) * 1.5);
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
  transition: left 0.8s ease;
}

.use-case-card:hover::before {
  left: 100%;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  border-color: var(--primary);
}

.use-case-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, white 0%, rgba(0, 102, 204, 0.02) 100%);
}

.use-case-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  gap: var(--spacing-lg);
  min-height: 120px;
}

.industry-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary), #0056b3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 102, 204, 0.2));
}

.rcs-mini-demo {
  flex: 1;
  max-width: 200px;
}

.mini-rcs-message {
  background: #f8f9fa;
  border-radius: 12px;
  padding: var(--spacing-md);
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mini-product-showcase {
  display: flex;
  justify-content: space-around;
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: white;
  border-radius: 8px;
}

.mini-product {
  font-size: 1.5rem;
  padding: 8px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 6px;
}

.mini-boarding-pass,
.mini-transaction,
.mini-menu,
.mini-ticket,
.mini-appointment {
  background: white;
  border-radius: 8px;
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.mini-route,
.mini-amount,
.mini-event,
.mini-doctor {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.mini-gate,
.mini-merchant,
.mini-venue,
.mini-location {
  font-size: 0.8rem;
  color: var(--gray);
}

.mini-food-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.85rem;
}

.mini-rcs-buttons {
  display: flex;
  gap: 6px;
}

.mini-btn {
  flex: 1;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-btn.primary {
  background: var(--primary);
  color: white;
}

.mini-btn.secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.mini-btn.success {
  background: var(--success);
  color: white;
}

.mini-btn.danger {
  background: var(--danger);
  color: white;
}

.use-case-content {
  flex: 1;
  text-align: center;
}

.use-case-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.use-case-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.use-case-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
}

.benefit {
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 204, 0.2);
  transition: all 0.3s ease;
}

.benefit:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.use-cases-cta {
  text-align: center;
  padding: calc(var(--spacing-xl) * 1.5);
  background: linear-gradient(135deg, var(--primary), #0056b3);
  border-radius: 20px;
  color: white;
}

.use-cases-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.use-cases-cta p {
  font-size: 1.2rem;
  margin-bottom: calc(var(--spacing-lg) * 1.5);
  opacity: 0.9;
}

.use-cases-cta .btn {
  background: white;
  color: var(--primary);
  border: 2px solid white;
  font-weight: 700;
  padding: var(--spacing-md) calc(var(--spacing-lg) * 2);
}

.use-cases-cta .btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Use Cases */
@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .use-case-visual {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .industry-icon {
    font-size: 2.5rem;
  }
  
  .use-case-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit {
    width: fit-content;
  }
}

/* RCS Enhanced Benefits Section */
.rcs-benefits-enhanced {
  background: linear-gradient(135deg, white 0%, #f8f9fa 50%, white 100%);
  position: relative;
  overflow: hidden;
}

.benefits-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 2);
}

.benefits-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-comparison {
  background: white;
  border-radius: 20px;
  padding: calc(var(--spacing-xl) * 1.5);
  margin-bottom: calc(var(--spacing-xl) * 2);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.comparison-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-xl) * 1.5);
}

.comparison-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.metrics-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-xl) * 1.5);
}

.metric-comparison {
  text-align: center;
}

.metric-item {
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  border-radius: 16px;
  padding: calc(var(--spacing-lg) * 1.5);
  border: 2px solid #e9ecef;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.metric-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
  transition: left 0.6s ease;
}

.metric-item:hover::before {
  left: 100%;
}

.metric-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
  border-color: var(--primary);
}

.metric-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.metric-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.rcs-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #0056b3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vs {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  background: #e9ecef;
  padding: 4px 8px;
  border-radius: 20px;
}

.sms-value {
  font-size: 2rem;
  font-weight: 600;
  color: #6c757d;
  opacity: 0.7;
}

.metric-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.metric-improvement {
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 700;
  background: rgba(40, 167, 69, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: calc(var(--spacing-xl) * 1.5);
  margin-bottom: calc(var(--spacing-xl) * 2);
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: calc(var(--spacing-xl) * 1.5);
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s ease;
  display: flex;
  gap: calc(var(--spacing-lg) * 1.5);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.03), transparent);
  transition: left 0.8s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  border-color: var(--primary);
}

.benefit-card.primary {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, white 0%, rgba(0, 102, 204, 0.02) 100%);
}

.benefit-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.benefit-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #0056b3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.benefit-stats {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.black {
    color: black;
}

.stat-text {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
  line-height: 1.2;
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
}

.benefit-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.benefit-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-item {
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.feature-item::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--success);
  border-radius: 50%;
  margin-right: var(--spacing-sm);
  flex-shrink: 0;
}

.benefits-cta {
  background: linear-gradient(135deg, var(--primary), #0056b3);
  border-radius: 24px;
  padding: calc(var(--spacing-xl) * 2);
  color: white;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: calc(var(--spacing-xl) * 2);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.benefits-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: calc(var(--spacing-lg) * 1.5);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
}

.cta-buttons .btn {
  padding: var(--spacing-md) calc(var(--spacing-lg) * 1.5);
  font-weight: 700;
  border-radius: 12px;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-metric {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: calc(var(--spacing-lg) * 1.5);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-metric .metric-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.success-metric .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.success-metric .metric-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Design for Benefits */
@media (max-width: 1200px) {
  .benefits-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .benefit-card {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .benefit-visual {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .metrics-showcase {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .metric-values {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .rcs-value,
  .sms-value {
    font-size: 2rem;
  }
}