/* styles.css */

/* ==========================================================================
   1. CSS VARIABLES & BRAND PALETTE
   ========================================================================== */
:root {
  --deep-blue: #0756B8;
  --electric-blue: #008ED6;
  --cyan: #20D9E8;
  --teal: #20CDB7;
  --fresh-green: #43DD87;
  --dark-charcoal: #171719;
  --white: #FFFFFF;
  --light-bg: #F5F9FC;
  --gray-border: #E2E8F0;
  --text-muted: #64748B;
  
  --gradient-brand: linear-gradient(135deg, #0756B8, #008ED6, #20D9E8, #43DD87);
  --gradient-primary: linear-gradient(135deg, #0756B8 0%, #008ED6 50%, #20D9E8 100%);
  --gradient-accent: linear-gradient(135deg, #20D9E8 0%, #20CDB7 50%, #43DD87 100%);
  --gradient-dark: linear-gradient(180deg, #171719 0%, #0D1117 100%);
  
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-subtle: 0 10px 30px -10px rgba(7, 86, 184, 0.08);
  --shadow-hover: 0 20px 40px -15px rgba(0, 142, 214, 0.2);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   2. GLOBAL RESETS & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--dark-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Helper */
.text-center {
  text-align: center;
}

.style-full-width {
  width: 100%;
}

/* ==========================================================================
   3. TYPOGRAPHY & BUTTONS
   ========================================================================== */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-charcoal);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 142, 214, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 142, 214, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--deep-blue);
  border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 70px;
    overflow: hidden;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  transition: color 0.2s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--gray-border);
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

/* ==========================================================================
   5. HERO & LEAD CAPTURE SECTION
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 4rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(32, 217, 232, 0.08) 0%, rgba(245, 249, 252, 0.5) 90%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 142, 214, 0.08);
  border: 1px solid rgba(0, 142, 214, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--deep-blue);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.reassurance-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Dashboard Simulation Card */
.dashboard-preview {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
  margin-top: 2rem;
  width: 100%;
  position: relative;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-border);
  padding-bottom: 0.75rem;
}

.dash-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.live-growth-tag {
  font-size: 0.75rem;
  color: var(--fresh-green);
  font-weight: 700;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.metric-card {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--cyan);
}

.metric-card-alt {
  border-left-color: var(--fresh-green);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-charcoal);
}

.metric-label {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Lead Form Box */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(7, 86, 184, 0.12);
  border: 1px solid rgba(32, 217, 232, 0.3);
  position: relative;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--dark-charcoal);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: all 0.2s ease;
  background-color: var(--light-bg);
}

.form-control:focus {
  outline: none;
  border-color: var(--electric-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 142, 214, 0.15);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.privacy-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ==========================================================================
   6. TRUST / VALUE STRIP
   ========================================================================== */
.trust-strip {
  background: var(--dark-charcoal);
  color: var(--white);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.trust-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: #E2E8F0;
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 142, 214, 0.3);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 142, 214, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list {
  margin-bottom: 1.75rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 0.5rem;
}

.service-list li::before {
  content: "✓";
  color: var(--fresh-green);
  font-weight: 800;
}

.service-btn {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.75rem;
}

/* ==========================================================================
   8. WHY CHOOSE US SECTION (DARK ACCENT)
   ========================================================================== */
.why-section {
  padding: 6rem 0;
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
}

.why-section .section-title {
  color: var(--white);
}

.why-subtitle {
  color: #94A3B8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.why-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.why-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-desc {
  color: #94A3B8;
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ==========================================================================
   9. RESULTS & METRICS SECTION
   ========================================================================== */
.results-section {
  padding: 6rem 0;
  background: var(--white);
}

.results-wrapper {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--gray-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.growth-chart-container {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-border);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-header-title {
  font-size: 1.1rem;
  color: var(--dark-charcoal);
}

.chart-header-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trend-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fresh-green);
}

.chart-bar-group {
  display: flex;
  align-items: flex-end;
  height: 180px;
  gap: 1.25rem;
  padding-top: 1rem;
  border-bottom: 2px solid var(--gray-border);
}

.chart-bar {
  flex: 1;
  background: var(--gradient-primary);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height 1s ease;
}

.chart-bar-highlight {
  background: var(--gradient-accent);
}

.chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.metrics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.metric-box {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-card);
}

.metric-tag {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.25rem;
}

.metric-value-lg {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-charcoal);
}

.metric-box-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ==========================================================================
   10. HOW IT WORKS / PROCESS
   ========================================================================== */
.process-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-card);
  position: relative;
}

.step-badge {
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn-override {
  border: none;
}

/* ==========================================================================
   12. FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: var(--light-bg);
  padding: 0 1.5rem;
}

.faq-answer-content {
  padding: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  transition: max-height 0.3s ease-in-out;
}

/* ==========================================================================
   13. BOTTOM FINAL LEAD FORM
   ========================================================================== */
.final-form-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.final-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--gray-border);
}

.final-form-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.footer {
  background: var(--dark-charcoal);
  color: #94A3B8;
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

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

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

.footer-contact-list {
  font-size: 0.875rem;
}

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

.footer-legal {
  font-size: 0.8rem;
  color: #64748B;
}

/* ==========================================================================
   15. FLOATING ELEMENTS & MODAL
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 989;
  gap: 0.5rem;
}

.mobile-bar-btn {
  font-size: 0.85rem;
  padding: 0.65rem;
}

.mobile-sticky-cta .btn-primary {
  flex: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 450px;
  width: 90%;
}

.modal-check-icon {
  width: 50px;
  height: 50px;
  background: rgba(67, 221, 135, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: var(--fresh-green);
}

.modal-title {
  margin-bottom: 0.5rem;
}

.modal-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   16. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .results-wrapper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links, .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .floating-whatsapp {
    bottom: 5rem;
    right: 1.25rem;
  }
}



/* ==========================================================================
   CLIENT LOGOS SECTION
   ========================================================================== */

.clients-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid rgba(7, 86, 184, 0.08);
}

.clients-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.clients-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0756B8;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.client-logo {
    height: 110px;
    padding: 22px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid rgba(7, 86, 184, 0.10);
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.65;

    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 142, 214, 0.35);
    box-shadow: 0 12px 35px rgba(7, 86, 184, 0.10);
}

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



@media (max-width: 992px) {

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}
@media (max-width: 600px) {

    .clients-section {
        padding: 70px 0;
    }

    .clients-header {
        margin-bottom: 35px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-logo {
        height: 85px;
        padding: 15px;
        border-radius: 12px;
    }

    .client-logo img {
        max-height: 42px;
    }

}

/* =========================================================
   SIMPLE LEAD POPUP
   ========================================================= */

.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.lead-popup.active {
    display: flex;
}

.lead-popup-overlay {
    position: absolute;
    inset: 0;

    background: rgba(5, 15, 30, 0.72);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.lead-popup-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 430px;

    padding: 38px 35px;

    background: #ffffff;

    border-radius: 22px;

    border: 1px solid rgba(7, 86, 184, 0.12);

    box-shadow:
        0 30px 80px rgba(7, 86, 184, 0.20);
}


/* CLOSE BUTTON */

.lead-popup-close {
    position: absolute;

    top: 14px;
    right: 15px;

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;

    background: #f3f7fb;

    color: #171719;

    font-size: 25px;

    cursor: pointer;

    transition: 0.25s ease;
}

.lead-popup-close:hover {
    background: #0756B8;
    color: #ffffff;
}


/* HEADER */

.popup-form-header {
    text-align: center;

    margin-bottom: 28px;
}

.popup-form-header h2 {
    margin: 8px 0 10px;

    font-size: 30px;
    line-height: 1.2;
}

.popup-form-header p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.6;
}


/* FORM */

#popup-lead-form .form-group {
    margin-bottom: 18px;
}

#popup-lead-form label {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 600;

    color: #171719;
}

#popup-lead-form .form-control {
    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid #dce3eb;

    border-radius: 10px;

    background: #ffffff;

    color: #171719;

    font-size: 14px;

    outline: none;

    transition: 0.25s ease;

    box-sizing: border-box;
}

#popup-lead-form .form-control:focus {
    border-color: #008ED6;

    box-shadow:
        0 0 0 3px rgba(0, 142, 214, 0.10);
}


/* BUTTON */

.popup-submit {
    width: 100%;

    margin-top: 5px;
}


/* SUCCESS */

.popup-success {
    display: none;

    text-align: center;

    padding: 20px 5px;
}

.popup-success.active {
    display: block;
}

.success-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #0756B8,
        #20D9E8
    );

    color: #ffffff;

    font-size: 30px;
    font-weight: 700;
}

.popup-success h3 {
    margin: 0 0 10px;

    font-size: 28px;
}

.popup-success p {
    margin: 0;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 600px) {

    .lead-popup {
        padding: 15px;
    }

    .lead-popup-box {
        padding: 32px 22px;
        border-radius: 18px;
    }

    .popup-form-header h2 {
        font-size: 25px;
    }

}