/* ===== Solutions Page - White, Blue, Black Theme ===== */
:root {
  --white: #ffffff;
  --blue: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-dark: #1e2d5f;
  --blue-pale: #eff6ff;
  --black: #111827;
  --gray-dark: #374151;
  --gray-medium: #6b7280;
  --gray-light: #f3f4f6;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.nav-logo { z-index: 1001; }

.logo-image { 
  height: 40px; 
  width: auto; 
  transition: opacity 0.3s ease;
}

.logo-image:hover { opacity: 0.85; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.nav-link.active {
  color: var(--white);
  background: var(--blue);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.solutions-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

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

.hero-label {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: var(--blue-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-accent { color: var(--blue-light); }

.hero-left p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-solid {
  background: var(--blue);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-solid:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59,130,246,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  width: 250px;
  height: 250px;
  border: 2px dashed rgba(59,130,246,0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.visual-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.visual-card i { color: var(--blue-light); font-size: 1.2rem; }
.visual-card span { font-weight: 600; font-size: 0.9rem; }

.card-1 { top: 10%; left: 10%; }
.card-2 { bottom: 20%; right: 5%; }
.card-3 { top: 50%; right: 20%; }

/* ===== Section Header ===== */
.section-header-alt {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background: var(--blue-pale);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

.section-header-alt h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.section-header-alt p {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

/* ===== Industry Solutions ===== */
.industry-solutions {
  padding: 4rem 0;
  background: var(--white);
}

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

.industry-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.industry-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.industry-icon {
  width: 55px;
  height: 55px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
}

.industry-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
}

.industry-card h3 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.industry-card p {
  color: var(--gray-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.industry-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.industry-features li {
  font-size: 0.85rem;
  color: var(--black);
  padding-left: 1rem;
  position: relative;
}

.industry-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
}

.industry-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.industry-link:hover { gap: 0.6rem; }

/* ===== Need Solutions ===== */
.need-solutions {
  padding: 4rem 0;
  background: var(--blue-pale);
}

.need-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.need-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.need-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.need-card.startup {
  border-color: var(--blue);
  border-width: 2px;
}

.need-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 0.3rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.need-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue);
  margin: 0 auto 1.2rem;
}

.need-card h3 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.need-card p {
  color: var(--gray-medium);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.need-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.need-includes span {
  background: var(--blue-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 500;
}

.need-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.need-btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

/* ===== Products Section ===== */
.products-section {
  padding: 4rem 0;
  background: var(--white);
}

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

.product-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.product-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.product-card.featured h3 { color: var(--white); }
.product-card.featured p { color: #94a3b8; }
.product-card.featured .product-features span { color: var(--white); }

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-visual {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--blue);
  margin: 0 auto 1.2rem;
  position: relative;
}

.product-card.featured .product-visual {
  background: rgba(255,255,255,0.1);
  color: var(--blue-light);
}

.product-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(20px);
  opacity: 0.15;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.product-card p {
  color: var(--gray-medium);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.product-features span {
  font-size: 0.8rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-features span i {
  color: var(--blue);
  font-size: 0.7rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.product-link:hover {
  background: var(--blue-light);
}

.product-card.featured .product-link {
  background: var(--blue-light);
}

/* ===== Process Section ===== */
.process-section {
  padding: 4rem 0;
  background: var(--blue-pale);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #bfdbfe;
  margin-bottom: 0.5rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  margin: 0 auto 0.8rem;
  border: 2px solid var(--border);
}

.process-step h3 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.process-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-bottom: 50px;
}

/* ===== CTA ===== */
.solution-cta {
  padding: 3rem 0;
  background: var(--black);
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 0.8rem;
}

.cta-box p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

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

.cta-primary-btn {
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-primary-btn:hover {
  background: var(--blue-light);
  box-shadow: 0 10px 25px rgba(59,130,246,0.3);
}

.cta-phone-btn {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-phone-btn:hover { border-color: var(--white); }
/* ===== Footer ===== */
.footer-modern {
  background: #06080f;
  position: relative;
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-col-large {
  color: #cbd5e1;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #3b82f6;
}

.newsletter-form button {
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
}

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

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links-list a i {
  font-size: 0.6rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links-list a:hover i {
  color: #60a5fa;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-text p {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.contact-text a {
  color: #94a3b8;
  text-decoration: none;
}
/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom-content strong {
  color: white;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

.dot-divider {
  width: 3px;
  height: 3px;
  background: #4b5563;
  border-radius: 50%;
}

/* ===== Responsive Footer ===== */
@media (max-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-col-large {
    grid-column: 1;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links-list a {
    justify-content: center;
  }
  
  .footer-contact-list li {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .newsletter-form {
    max-width: 350px;
    margin: 0 auto;
  }
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: 1fr; }
  .need-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: 250px; }
  .visual-circle { width: 180px; height: 180px; }
  
  .nav-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
  }
  
  .nav-menu.active { transform: translateX(0); }
  
  .process-steps { flex-direction: column; gap: 1.5rem; }
  .process-connector { width: 2px; height: 40px; margin: 0 auto; }
  
  .footer-grid-main { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) {
  .industry-features { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
}


/* my code  */


/* =========================================================
   FOOTER BOTTOM LINKS
   ========================================================= */

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: #6c4cff;
}

.dot-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}


/* =========================================================
   POLICY MODAL
   ========================================================= */

.policy-modal {
  position: fixed;
  inset: 0;

  display: none;

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

  padding: 20px;

  z-index: 99999;
}

.policy-modal.active {
  display: flex;
}


/* Dark background */

.policy-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 8, 35, 0.75);

  backdrop-filter: blur(5px);
}


/* =========================================================
   MODAL CONTAINER
   ========================================================= */

.policy-modal-content {
  position: relative;

  width: min(760px, 100%);
  max-height: 85vh;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.30);

  z-index: 2;

  animation: policyModalIn 0.25s ease;
}


/* Animation */

@keyframes policyModalIn {

  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.policy-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

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

  border: none;
  border-radius: 50%;

  background: #f1f2f6;

  color: #333;

  font-size: 15px;

  cursor: pointer;

  transition: all 0.2s ease;

  z-index: 3;
}

.policy-modal-close:hover {
  background: #321b9b;
  color: #ffffff;
  transform: rotate(90deg);
}


/* =========================================================
   MODAL HEADER
   ========================================================= */

.policy-modal-header {
  padding: 30px 35px 20px;

  border-bottom: 1px solid #e7e8ee;
}

.policy-label {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 8px;

  color: #321b9b;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

.policy-modal-header h2 {
  margin: 0;

  color: #111827;

  font-size: 26px;

  line-height: 1.3;
}


/* =========================================================
   MODAL BODY
   ========================================================= */

.policy-modal-body {
  max-height: calc(85vh - 120px);

  overflow-y: auto;

  padding: 25px 35px 35px;

  color: #555b6e;

  font-size: 14px;

  line-height: 1.75;
}

.policy-modal-body h3 {
  margin: 22px 0 8px;

  color: #1f2937;

  font-size: 17px;
}

.policy-modal-body h3:first-child {
  margin-top: 0;
}

.policy-modal-body p {
  margin: 0 0 14px;
}

.policy-modal-body ul {
  margin: 8px 0 16px;

  padding-left: 22px;
}

.policy-modal-body li {
  margin-bottom: 7px;
}

.policy-modal-body a {
  color: #321b9b;

  text-decoration: none;

  font-weight: 600;
}

.policy-modal-body a:hover {
  text-decoration: underline;
}


/* =========================================================
   PREVENT BACKGROUND SCROLL
   ========================================================= */

body.policy-modal-open {
  overflow: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .footer-bottom-links {
    justify-content: center;

    margin-top: 10px;
  }

  .policy-modal {
    padding: 12px;
  }

  .policy-modal-content {
    width: 100%;
    max-height: 90vh;

    border-radius: 14px;
  }

  .policy-modal-header {
    padding: 24px 20px 18px;
  }

  .policy-modal-header h2 {
    font-size: 21px;
  }

  .policy-modal-body {
    max-height: calc(90vh - 110px);

    padding: 20px;
  }

  .policy-modal-close {
    top: 12px;
    right: 12px;
  }

}

/* for request demo modal */

/* =========================================================
   PRODUCT DEMO MODAL
   ========================================================= */

.demo-modal {
  position: fixed;
  inset: 0;

  display: none;

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

  padding: 20px;

  z-index: 99999;
}

.demo-modal.active {
  display: flex;
}

.demo-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 8, 35, 0.78);

  backdrop-filter: blur(5px);
}

.demo-modal-content {
  position: relative;

  width: min(620px, 100%);
  max-height: 90vh;

  overflow-y: auto;

  background: #fff;

  border-radius: 18px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3);

  z-index: 2;

  animation: demoModalIn 0.25s ease;
}

@keyframes demoModalIn {

  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* Close */

.demo-modal-close {
  position: absolute;

  top: 16px;
  right: 16px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: #f2f3f7;

  color: #333;

  cursor: pointer;

  z-index: 3;

  transition: 0.2s ease;
}

.demo-modal-close:hover {
  background: #321b9b;
  color: #fff;
}


/* Header */

.demo-modal-header {
  padding: 30px 32px 20px;

  border-bottom: 1px solid #e8e9ef;
}

.demo-modal-label {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 8px;

  color: #321b9b;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.demo-modal-header h2 {
  margin: 0 0 8px;

  color: #151525;

  font-size: 26px;
}

.demo-modal-header p {
  margin: 0;

  color: #707588;

  font-size: 13px;

  line-height: 1.6;
}


/* Form */

.demo-form {
  padding: 25px 32px 30px;
}

.demo-form-group {
  display: flex;

  flex-direction: column;

  gap: 7px;

  margin-bottom: 16px;
}

.demo-form-group label {
  color: #25283a;

  font-size: 13px;
  font-weight: 600;
}

.demo-form-group label span {
  color: #e53935;
}

.demo-form-group label small {
  color: #999;

  font-weight: 400;
}

.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 11px 13px;

  border: 1px solid #d9dbe4;

  border-radius: 8px;

  outline: none;

  background: #fff;

  color: #222;

  font-family: inherit;

  font-size: 13px;

  transition: 0.2s ease;
}

.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
  border-color: #321b9b;

  box-shadow:
    0 0 0 3px rgba(50, 27, 155, 0.09);
}

.demo-form-group input[readonly] {
  background: #f6f6f9;

  color: #555;
}

.demo-form-group textarea {
  resize: vertical;
}


/* Date + Time */

.demo-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}


/* Errors */

.demo-error {
  min-height: 14px;

  color: #dc3545;

  font-size: 11px;
}


/* Meeting mode */

.meeting-mode-toggle {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.meeting-mode-toggle input {
  display: none;
}

.meeting-mode-toggle label {
  display: flex;

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

  gap: 8px;

  padding: 12px;

  border: 1px solid #d9dbe4;

  border-radius: 8px;

  color: #555;

  cursor: pointer;

  transition: 0.2s ease;
}

.meeting-mode-toggle input:checked + label {
  border-color: #321b9b;

  background: rgba(50, 27, 155, 0.07);

  color: #321b9b;
}


/* Submit */

.demo-submit-btn {
  width: 100%;

  display: flex;

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

  gap: 8px;

  padding: 13px;

  border: none;

  border-radius: 8px;

  background: #321b9b;

  color: #fff;

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

  cursor: pointer;

  transition: 0.2s ease;
}

.demo-submit-btn:hover {
  background: #25147e;
}

.demo-submit-btn:disabled {
  opacity: 0.65;

  cursor: not-allowed;
}


/* Note */

.demo-form-note {
  margin: 12px 0 0;

  color: #999;

  font-size: 11px;

  text-align: center;
}


/* Mobile */

@media (max-width: 600px) {

  .demo-modal {
    padding: 12px;
  }

  .demo-modal-content {
    max-height: 92vh;

    border-radius: 14px;
  }

  .demo-modal-header {
    padding: 24px 20px 18px;
  }

  .demo-modal-header h2 {
    font-size: 21px;
  }

  .demo-form {
    padding: 20px;
  }

  .demo-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

}


/* =========================================================
   DEMO SUCCESS STATE
   ========================================================= */

.demo-success-state {
  padding: 45px 30px 35px;

  text-align: center;
}


/* Animated check circle */

.success-check-circle {
  width: 82px;
  height: 82px;

  margin: 0 auto 22px;

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

.success-check {
  width: 82px;
  height: 82px;

  overflow: visible;
}


/* Circle */

.success-circle {
  fill: none;

  stroke: #321b9b;

  stroke-width: 2;

  stroke-dasharray: 160;

  stroke-dashoffset: 160;

  animation:
    successCircle 0.6s
    ease-out
    forwards;
}


/* Tick */

.success-check-path {
  stroke: #321b9b;

  stroke-width: 3;

  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 45;

  stroke-dashoffset: 45;

  animation:
    successTick 0.4s
    0.45s
    ease-out
    forwards;
}


@keyframes successCircle {

  to {
    stroke-dashoffset: 0;
  }

}


@keyframes successTick {

  to {
    stroke-dashoffset: 0;
  }

}


/* Heading */

.demo-success-state h3 {
  margin: 0 0 10px;

  color: #171827;

  font-size: 25px;

  font-weight: 700;
}


.demo-success-state > p {
  max-width: 430px;

  margin: 0 auto 22px;

  color: #6d7182;

  font-size: 14px;

  line-height: 1.7;
}


.demo-success-state > p strong {
  color: #321b9b;
}


/* Details */

.success-details {
  max-width: 430px;

  margin: 0 auto 22px;

  padding: 5px;

  border: 1px solid #e7e7ee;

  border-radius: 12px;

  background: #fafafd;
}


.success-details > div {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 14px;

  text-align: left;
}


.success-details > div + div {
  border-top: 1px solid #e8e8ee;
}


.success-details i {
  width: 34px;
  height: 34px;

  display: flex;

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

  flex-shrink: 0;

  border-radius: 8px;

  background: rgba(50, 27, 155, 0.08);

  color: #321b9b;

  font-size: 14px;
}


.success-details span {
  display: flex;

  flex-direction: column;

  gap: 2px;

  color: #666b7c;

  font-size: 12px;
}


.success-details strong {
  color: #272a39;

  font-size: 12px;
}


/* Note */

.success-note {
  max-width: 390px !important;

  margin-bottom: 24px !important;

  font-size: 12px !important;

  color: #8a8e9c !important;
}


/* Done */

.success-close-btn {
  min-width: 130px;

  padding: 12px 22px;

  border: none;

  border-radius: 8px;

  background: #321b9b;

  color: #fff;

  font-family: inherit;

  font-size: 13px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.2s ease;
}


.success-close-btn:hover {
  background: #25147e;

  transform: translateY(-1px);
}


@media (max-width: 600px) {

  .demo-success-state {
    padding: 35px 18px 28px;
  }

  .demo-success-state h3 {
    font-size: 22px;
  }

}