/* ==========================================================================
   SoluRedys Soluciones Integrales SAS — Core Design System (CSS)
   Design Concept: Modern B2B Tech Premium (Glassmorphism, High Contrast, Micro-Interactions)
   ========================================================================== */

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

:root {
  /* Brand Color Palette */
  --sr-navy-dark: #06192d;
  --sr-navy: #0C3A63;
  --sr-navy-mid: #14497a;
  --sr-blue: #0086E6;
  --sr-cyan: #00F0FF;
  --sr-cyan-soft: rgba(0, 240, 255, 0.12);
  --sr-orange: #FF6B25;
  --sr-orange-hover: #e55613;
  
  /* Neutral Colors */
  --sr-bg-light: #F8FAFC;
  --sr-bg-card: #FFFFFF;
  --sr-surface-alt: #F1F5F9;
  --sr-text-primary: #0F172A;
  --sr-text-secondary: #475569;
  --sr-text-muted: #64748B;
  --sr-border: #E2E8F0;
  --sr-border-focus: #0086E6;

  /* Glassmorphism & Effects */
  --sr-glass-bg: rgba(255, 255, 255, 0.88);
  --sr-glass-border: rgba(255, 255, 255, 0.6);
  --sr-glass-dark: rgba(6, 25, 45, 0.85);
  
  /* Shadows */
  --sr-shadow-sm: 0 2px 8px rgba(12, 58, 99, 0.05);
  --sr-shadow-md: 0 10px 30px -5px rgba(12, 58, 99, 0.08);
  --sr-shadow-lg: 0 20px 40px -10px rgba(12, 58, 99, 0.16);
  --sr-shadow-glow: 0 0 25px rgba(0, 134, 230, 0.35);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout Boundaries */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--sr-bg-light);
  color: var(--sr-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--sr-navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 134, 230, 0.08);
  border: 1px solid rgba(0, 134, 230, 0.2);
  color: var(--sr-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-tag--orange {
  background: rgba(255, 107, 37, 0.08);
  border-color: rgba(255, 107, 37, 0.25);
  color: var(--sr-orange);
}

/* Layout Grid Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--tr-normal), box-shadow var(--tr-normal), backdrop-filter var(--tr-normal);
}

.site-header.scrolled {
  background: var(--sr-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sr-glass-border);
  box-shadow: var(--sr-shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-partner-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sr-navy);
  padding: 4px 10px;
  background: #EBF5FF;
  border-radius: 6px;
  border: 1px solid #BFDBFE;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--sr-blue);
  border-radius: 2px;
  transition: width var(--tr-fast);
}

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

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

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--tr-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sr-blue), #0061A2);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 134, 230, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 134, 230, 0.45);
  background: linear-gradient(135deg, #0095FF, var(--sr-blue));
}

.btn-accent {
  background: linear-gradient(135deg, var(--sr-orange), var(--sr-orange-hover));
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 107, 37, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 37, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--sr-navy);
  border: 2px solid var(--sr-border);
}

.btn-ghost:hover {
  border-color: var(--sr-blue);
  color: var(--sr-blue);
  background: rgba(0, 134, 230, 0.05);
}

.btn-white {
  background: #FFFFFF;
  color: var(--sr-navy-dark);
  box-shadow: var(--sr-shadow-md);
}

.btn-white:hover {
  background: var(--sr-surface-alt);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--sr-navy);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section (High-Impact Tech B2B)
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 70px;
  background: radial-gradient(120% 80% at 50% 0%, #EBF5FF 0%, var(--sr-bg-light) 70%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  margin-top: 12px;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--sr-navy-dark), var(--sr-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--sr-text-secondary);
  margin-bottom: 32px;
  max-width: 90%;
  line-height: 1.7;
}

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

.hero-trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--sr-border);
}

.metric-item strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--sr-navy-dark);
}

.metric-item span {
  font-size: 0.85rem;
  color: var(--sr-text-muted);
}

/* Hero Tech Mockup Card */
.hero-visual {
  position: relative;
}

.tech-dashboard-card {
  background: var(--sr-navy-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #FFFFFF;
  box-shadow: var(--sr-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

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

.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.dash-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--sr-cyan);
  text-transform: uppercase;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #4ADE80;
}

.dash-status-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ADE80;
}

.dash-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--tr-fast);
}

.dash-service-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.svc-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(0, 134, 230, 0.2);
  color: var(--sr-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.svc-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.svc-desc {
  font-size: 0.75rem;
  color: #94A3B8;
}

.svc-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
}

/* Floating Tech Badge */
.floating-partner-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #FFFFFF;
  color: var(--sr-text-primary);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--sr-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--sr-border);
  animation: floatAnim 4s ease-in-out infinite;
}

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

/* ==========================================================================
   Partners & Trust Bar
   ========================================================================== */
.partners-bar {
  padding: 32px 0;
  background: #FFFFFF;
  border-y: 1px solid var(--sr-border);
}

.partners-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.85;
}

.partner-logo-item img {
  height: 34px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--tr-fast);
}

.partner-logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.services-section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header p {
  color: var(--sr-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 12px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--sr-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--sr-border);
  box-shadow: var(--sr-shadow-sm);
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sr-blue), var(--sr-cyan));
  opacity: 0;
  transition: opacity var(--tr-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sr-shadow-lg);
  border-color: rgba(0, 134, 230, 0.25);
}

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

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 134, 230, 0.08);
  color: var(--sr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--sr-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 24px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--sr-text-secondary);
  margin-bottom: 8px;
}

.service-features-list li i {
  color: var(--sr-blue);
  font-size: 0.9rem;
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--sr-blue);
}

.service-action-link:hover {
  color: var(--sr-navy-dark);
  gap: 12px;
}

/* ==========================================================================
   Add-onWO & ERP Integration Highlight
   ========================================================================== */
.addon-section {
  padding: 90px 0;
  background: var(--sr-navy-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.addon-content h2 {
  color: #FFFFFF;
  margin-top: 12px;
  margin-bottom: 20px;
}

.addon-content p {
  color: #94A3B8;
  font-size: 1.08rem;
  margin-bottom: 32px;
}

.addon-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.addon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.addon-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sr-cyan);
  color: var(--sr-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.addon-item-text h4 {
  color: #FFFFFF;
  font-size: 1rem;
}

.addon-item-text p {
  color: #CBD5E1;
  font-size: 0.88rem;
  margin: 0;
}

/* Visual Card for Add-onWO */
.addon-visual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.addon-badge-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.addon-badge-title h3 {
  color: #FFFFFF;
}

/* ==========================================================================
   Why Choose SoluRedys (Value Props)
   ========================================================================== */
.why-us-section {
  padding: 90px 0;
  background: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--sr-bg-light);
  border: 1px solid var(--sr-border);
  text-align: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sr-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.why-card h4 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--sr-text-secondary);
}

/* ==========================================================================
   Real Testimonials & Social Proof
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--sr-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sr-border);
  box-shadow: var(--sr-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--sr-text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 3rem;
  color: var(--sr-blue);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--sr-border);
}

.author-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sr-blue);
}

.author-info h5 {
  color: var(--sr-navy-dark);
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--sr-text-muted);
}

/* ==========================================================================
   Interactive Quote / Contact CTA Banner
   ========================================================================== */
.cta-banner-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--sr-navy-dark), var(--sr-navy));
  color: #FFFFFF;
}

.cta-banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  color: #FFFFFF;
  margin-bottom: 10px;
}

.cta-banner-text p {
  color: #CBD5E1;
  font-size: 1.05rem;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.site-footer {
  background: var(--sr-navy-dark);
  color: #94A3B8;
  padding-top: 80px;
  padding-bottom: 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col-brand .footer-logo-box {
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-col-brand .footer-logo-box img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-col-brand p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--sr-blue);
  margin-top: 8px;
}

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

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

.contact-info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-info-list i {
  color: var(--sr-cyan);
  font-size: 1rem;
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Interactive ChatBot / WhatsApp Floating Widget
   ========================================================================== */
#sr-chat-root {
  font-family: var(--font-body);
}

#sr-chat-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--sr-navy), var(--sr-blue), var(--sr-cyan));
  box-shadow: 0 8px 24px rgba(12, 58, 99, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

#sr-chat-toggle:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 134, 230, 0.5);
}

#sr-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 99999;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 480px;
  max-height: calc(100vh - 120px);
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--sr-shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sr-border);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#sr-chat-panel[hidden] {
  display: none !important;
}

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

.sr-chat-header {
  background: linear-gradient(135deg, var(--sr-navy-dark), var(--sr-navy));
  color: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sr-chat-header strong {
  display: block;
  font-size: 0.95rem;
}

.sr-chat-header span {
  font-size: 0.75rem;
  opacity: 0.8;
}

.sr-chat-close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
}

.sr-chat-body {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
  background: #F8FAFC;
}

/* Page Hero Header Component */
.page-hero-section {
  padding-top: calc(var(--header-height) + 110px) !important;
  padding-bottom: 60px !important;
  background: radial-gradient(120% 80% at 50% 0%, #EBF5FF 0%, var(--sr-bg-light) 70%) !important;
  color: var(--sr-text-primary) !important;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--sr-border);
}

.page-hero-section h1 {
  color: var(--sr-navy-dark) !important;
  margin-top: 16px !important;
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
}

.page-hero-section p {
  color: var(--sr-text-secondary) !important;
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 1.1rem;
}

/* 2-Column Responsive Grid System */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-form-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--sr-border);
  box-shadow: var(--sr-shadow-md);
}

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

/* Responsive Media Queries & Mobile Navigation Drawer */
.mobile-nav-cta {
  display: none;
}

@media (max-width: 992px) {
  .site-header {
    height: 72px;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  .brand-logo img {
    height: 36px !important;
    max-width: 170px !important;
  }
  
  .brand-partner-badge,
  .header-actions > a,
  .header-actions .btn,
  .header-actions a.btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
  }

  .mobile-nav-cta {
    display: inline-flex !important;
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    font-size: 1.05rem;
    justify-content: center;
  }

  .grid-2col,
  .contact-grid,
  .hero-grid,
  .addon-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .grid-2col > div {
    order: unset !important;
  }

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

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

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--sr-navy) !important;
    border: 1px solid rgba(0, 134, 230, 0.3) !important;
    color: #FFFFFF !important;
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .mobile-toggle:active {
    transform: scale(0.92);
  }

  .main-nav {
    display: none !important;
  }

  .main-nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    background: #06192d !important;
    padding: 24px 20px;
    gap: 14px;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    overflow-y: auto;
    z-index: 999999 !important;
  }

  .main-nav .nav-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF !important;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
    width: 100%;
  }

  .main-nav .nav-link:hover, .main-nav .nav-link.active {
    color: #00F0FF !important;
    background: rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.4);
  }

  .main-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-trust-metrics {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 576px) {
  .page-hero-section {
    padding-top: calc(72px + 28px);
    padding-bottom: 40px;
  }

  .contact-form-card {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .hero-section {
    padding-top: calc(72px + 24px);
    padding-bottom: 48px;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .container {
    padding: 0 16px;
  }
}
