/*
FlowLine VoIP - Premium SaaS UI
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap");

:root {
  --brand-blue: #00BFFF;
  --color-primary: var(--brand-blue);
  --color-light: #FFFFFF;
  --bg-page: #F8FAFC;
  --text-heading: #0A1A2A;
  --text-body: #415262;
  --text-muted: #667085;
  --border-subtle: #E5E7EB;
  --border-input: #D0D5DD;
  --placeholder: #A0AEC0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --space-section: clamp(72px, 10vw, 110px);
  --space-section-tight: clamp(56px, 8vw, 92px);
  --space-card: clamp(20px, 2.2vw, 28px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

body.nav-open {
  overflow: hidden;
}

input,
textarea,
select,
.form-control {
  background: var(--color-light);
  color: var(--text-heading);
  border: 1px solid var(--border-input);
  border-radius: 12px;
  min-height: 48px;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.feature-card,
.industry-card,
.stat-card,
.pricing-card,
.testimonial-card,
.faq-grid details,
.contact-card,
.cta-inner,
.info-card,
.blog-card,
.list-card,
.status-card,
.service-card,
.feature-table {
  color: var(--text-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  color: var(--text-heading);
}

h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.4px;
}

h2 {
  font-size: clamp(26px, 4.4vw, 38px);
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

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

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: var(--text-body);
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

img {
  width: 100%;
  display: block;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

.section {
  padding: var(--space-section) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading.align-left {
  margin-left: 0;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.button-primary {
  background: var(--brand-blue);
  color: var(--color-light);
  box-shadow: var(--shadow-sm);
}

.button-primary:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.button-secondary {
  background: var(--color-light);
  color: var(--text-heading);
  border: 1px solid #D3D3D3;
}

.button-secondary:hover {
  background: var(--color-light);
  color: var(--text-heading);
}

.button-outline {
  background: var(--color-light);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.button-outline:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--color-light);
}

.button-outline-light {
  background: var(--color-light);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.button-outline-light:hover {
  background: var(--brand-blue);
  color: var(--color-light);
}

.button2 {
  background: var(--brand-blue);
  color: var(--color-light);
  border: 1px solid var(--brand-blue);
}

.button2:hover {
  background: var(--brand-blue);
  color: var(--color-light);
}

.button3 {
  background: var(--color-light);
  color: var(--text-heading);
  border-color: #D3D3D3;
}

.button3:hover {
  background: var(--color-light);
  color: var(--text-heading);
}

.btn,
.btn-outline-secondary {
  background: var(--color-light);
  color: var(--text-heading);
  border: 1px solid #D3D3D3;
  box-shadow: var(--shadow-sm);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
  background: var(--color-light);
  color: var(--text-heading);
  border-color: #D3D3D3;
  box-shadow: var(--shadow-sm);
}

.btn-gradient {
  border: 1px solid var(--brand-blue);
}

.btn-close {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  opacity: 1;
  position: relative;
}

.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--text-heading);
  transform-origin: center;
}

.btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* modal */
#bookNowModal .modal-dialog {
  max-width: 1050px;
  margin: clamp(16px, 3vh, 28px) auto;
}
#bookNowModal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-light);
  box-shadow: none;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.92);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1.2);
}
#bookNowModal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}
#bookNowModal .modal-header {
  background: var(--color-light);
  color: var(--text-heading);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.2rem 2.25rem;
}
#bookNowModal .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-heading);
}
#bookNowModal .btn-close {
  padding: 1.1rem;
}
#bookNowModal .btn-outline-secondary {
  border-radius: 50px;
}
#bookNowModal .modal-body {
  padding: 2rem 2.25rem 1.6rem;
  font-size: 1rem;
  line-height: 1.5;
  overflow-y: auto;
}
#bookNowModal .modal-footer {
  padding: 0 2.25rem 1.6rem;
  gap: 12px;
}
#bookNowModal .modal-footer .btn {
  min-height: 48px;
  padding: 0.85rem 2.6rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
}
#bookNowModal .btn-outline-secondary {
  background: var(--color-light);
  color: var(--text-heading);
  border: 1px solid #D3D3D3;
}
#bookNowModal .btn-gradient {
  background: var(--brand-blue);
  color: var(--color-light);
  border: 1px solid var(--brand-blue);
}
#bookNowModal .mb-3 {
  margin-bottom: 0.9rem !important;
}
#bookNowModal .form-label {
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}
#bookNowModal .form-control,
#bookNowModal .form-control:focus {
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--border-input);
  font-size: 1.05rem;
  transition: all 0.2s;
}
#bookNowModal .form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
  outline: none;
}
#bookNowModal .form-control::placeholder {
  color: var(--placeholder);
  opacity: 1;
}
.service-card {
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.1rem 1.35rem;
  margin-bottom: 0.9rem;
  transition: all 0.28s ease;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  background: var(--color-light);
  border-color: var(--border-subtle);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card strong {
  color: var(--text-heading);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
}
.service-card small {
  color: var(--text-body);
  font-size: 0.9rem;
}
.section-title-small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}
.btn-gradient {
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  color: var(--color-light);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  transition: all 0.32s ease;
}
.btn-gradient:hover {
  background: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.trust-line {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}
@media (max-width: 1024px) {
  #bookNowModal .modal-dialog {
    margin: 1rem;
    max-width: 95%;
  }
  #bookNowModal .modal-content {
    max-height: 85vh;
  }
  #bookNowModal .modal-body {
    padding: 2rem 1.6rem 1.5rem;
  }
}
@media (max-width: 480px) {
  #bookNowModal .modal-title {
    font-size: 1.45rem;
  }
  .btn-gradient {
    width: 100%;
    padding: 1rem;
  }
}

.spinner2 .container1 div,
.spinner2 .container2 div,
.spinner2 .container3 div {
  background: var(--text-heading);
}

.navbar {
  top: 0;
  background: var(--color-light);
  padding: 18px 0;
  position: fixed;
  width: 100%;
  z-index: 1200;
  max-width: 100%;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.navbar .navbar-brand img {
  height: 54px;
  width: 54px;
}

.navbar .navbar-brand.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-heading);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.navbar .navbar-brand.brand-text .brand-word {
  color: var(--text-heading);
}

.navbar .navbar-brand.brand-text .brand-ip {
  color: var(--brand-blue);
  font-weight: 700;
}

.brand-logo {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #FFFFFF 0%, #E8F2FF 45%, #CFE2FF 100%);
  border: 2px solid #BFD7FF;
  padding: 14px;
  object-fit: contain;
  display: block;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.16),
    0 0 0 6px rgba(232, 242, 255, 0.95),
    0 0 0 9px rgba(191, 215, 255, 0.9);
  filter: saturate(1.25) contrast(1.12);
}

.navbar .navbar-toggler {
  padding: 0;
}

.navbar .navbar-toggler i {
  font-size: 32px;
  color: var(--text-heading);
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-collapse {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 1250;
}

.navbar .navbar-nav {
  gap: 8px;
  align-items: center;
}

.navbar .navbar-nav li {
  padding: 0 6px;
}

.navbar .navbar-nav li a {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 14px;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 10px 0;
}

.navbar .navbar-nav li a:hover {
  opacity: 1;
  color: var(--brand-blue);
}

.navbar .navbar-nav li a.active {
  color: var(--brand-blue);
}

.navbar .button-navbar {
  width: auto;
  text-align: right;
  display: flex;
  align-items: center;
}

.navbar .button-navbar li {
  display: inline-block;
  margin-left: 12px;
}

.navbar-fixed {
  box-shadow: none;
  background: var(--color-light);
}

.navbar .dropdown-menu {
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  z-index: 1300;
}

.navbar .dropdown-item {
  color: var(--text-heading);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: #F3F4F6;
  color: var(--text-heading);
}

.dropdown-menu.mega .dropdown-item:hover,
.dropdown-menu.mega .dropdown-item:focus {
  background: #F5F6F7;
  color: var(--text-heading);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
  background: #F3F4F6;
  color: var(--text-heading);
}

@media (min-width: 1025px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.hero {
  padding: clamp(120px, 18vw, 150px) 0 clamp(70px, 12vw, 90px);
  background: var(--bg-page);
  color: var(--text-body);
  max-width: 100%;
}

.hero .kicker {
  color: var(--text-muted);
}

.hero h1 {
  color: var(--text-heading);
}

.hero p {
  color: var(--text-body);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 60px);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy .lead {
  font-size: 18px;
  color: var(--text-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 18px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-light);
  font-size: 13px;
  color: var(--brand-blue);
  border: 1px solid var(--border-subtle);
}

.hero-media {
  position: relative;
}

.hero-image {
  background: var(--color-light);
  padding: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.hero-card {
  position: static;
  margin-top: 20px;
  background: var(--color-light);
  color: var(--text-body);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  max-width: 220px;
}

.hero-card .card-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-card .card-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.hero-card .card-value span {
  font-size: 32px;
}

.hero-card .card-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-highlights {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.hero-highlights > * {
  min-width: 0;
}

.highlight-card {
  background: var(--color-light);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-card i {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--brand-blue);
}

.highlight-card h6 {
  color: var(--text-heading);
  margin-bottom: 8px;
}

.highlight-card p {
  color: var(--text-body);
}

.features {
  background: var(--bg-page);
  max-width: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.feature-grid > * {
  min-width: 0;
}

.feature-card {
  padding: var(--space-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--color-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  background: #E6F7FF;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.industries {
  background: var(--bg-page);
  max-width: 100%;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.industry-grid > * {
  min-width: 0;
}

.industry-card {
  padding: var(--space-card);
  border-radius: 16px;
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.industry-card i {
  font-size: 28px;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 60px);
  align-items: center;
}

.split-section > * {
  min-width: 0;
}

.split-media img {
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  background: var(--color-light);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-body);
  font-weight: 500;
}

.checklist li i {
  color: var(--brand-blue);
  font-size: 18px;
}

.stats {
  padding: var(--space-section-tight) 0;
  max-width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.stats-grid > * {
  min-width: 0;
}

.stat-card {
  padding: var(--space-card);
  border-radius: 16px;
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card h3 {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing {
  background: var(--bg-page);
  max-width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-grid > * {
  min-width: 0;
}

.pricing-card {
  padding: var(--space-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--color-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.pricing-header {
  margin-bottom: 16px;
}

.pricing-header .speed {
  color: var(--brand-blue);
  font-weight: 700;
  margin: 12px 0 0;
}

.pricing-header .speed span {
  font-size: 30px;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-body);
}

.pricing-card ul li i {
  color: var(--brand-blue);
}

.pricing-footer {
  margin-top: 20px;
}

.pricing-footer h3 {
  margin-bottom: 16px;
}

.pricing-footer h3 span {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-featured {
  border: 2px solid #CFEFFF;
  background: var(--color-light);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-blue);
  color: var(--color-light);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.testimonial {
  background: var(--bg-page);
  max-width: 100%;
}

.testimonial-card {
  background: var(--color-light);
  padding: var(--space-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.testimonial-meta h5 {
  margin-bottom: 4px;
}

.swiper-pagination-bullet {
  background: var(--brand-blue);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.faq {
  background: var(--bg-page);
  max-width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.faq-grid > * {
  min-width: 0;
}

.faq-grid details {
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s ease;
}

.faq-grid details[open] {
  border-color: var(--brand-blue);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-heading);
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid details p {
  margin-top: 12px;
}

.cta {
  padding: var(--space-section-tight) 0;
  background: var(--bg-page);
  color: var(--text-body);
  max-width: 100%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  border-radius: 16px;
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  flex-direction: column;
  align-items: flex-start;
}

.cta-inner > * {
  min-width: 0;
}

.cta h2 {
  color: var(--text-heading);
}

.cta p {
  color: var(--text-body);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact {
  background: var(--bg-page);
  max-width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-grid > * {
  min-width: 0;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: var(--space-card);
  border-radius: 14px;
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.contact-card i {
  font-size: 24px;
  color: var(--brand-blue);
}

.contact-form-card {
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 28px);
}

.contact-form-card .form-label {
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.contact-form-card .form-control,
.contact-form-card .form-control:focus {
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border-input);
  font-size: 1rem;
  background: var(--color-light);
  transition: all 0.2s;
}

.contact-form-card .form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.contact-form-card .form-check-label {
  color: var(--text-body);
}

.contact-form-card .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 0;
}

/* .contact-form-card .form-check-input {
  margin: 0;
  width: ;
  height: ;
  border-radius: 2px;
} */

.contact-page .page-hero {
  padding: clamp(72px, 12vw, 96px) 0 28px;
}

.contact-page .page-hero-inner {
  max-width: none;
  margin: 0;
}

.contact-page .page-hero .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(32px, 4vw, 48px);
  padding-right: clamp(32px, 4vw, 48px);
}

.contact-page .page-hero-inner > * {
  padding-left: clamp(14px, 2vw, 24px);
  padding-right: clamp(14px, 2vw, 24px);
}

.contact-page .page-hero h1 {
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.contact-page .section.contact {
  padding: 20px 0 clamp(80px, 12vw, 120px);
}

.contact-page .section.contact .container {
  max-width: none;
  width: 100%;
}

.contact-page .contact-form-card {
  height: 100%;
}

.contact-page .contact-form-card .section-lead {
  margin-bottom: 18px;
}

.contact-page .contact-modern {
  background: #F8FAFC;
}

.contact-page .contact-layout {
  width: 100%;
  max-width: none;
  padding-left: clamp(32px, 4vw, 48px);
  padding-right: clamp(32px, 4vw, 48px);
}

.contact-page .contact-layout .row {
  margin-left: 0;
  margin-right: 0;
}

.contact-page .contact-layout .row > * {
  padding-left: clamp(14px, 2vw, 24px);
  padding-right: clamp(14px, 2vw, 24px);
}

.contact-page .contact-form-card {
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  padding: clamp(28px, 3vw, 44px);
}

.contact-page .contact-form-card h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.contact-page .contact-form-card .section-title-small {
  margin-bottom: 0.75rem;
}

.contact-page .contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page .contact-info-card .service-card {
  margin-bottom: 0;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
}

@media (max-width: 1024px) {
  .contact-page .contact-layout {
    width: 100%;
    padding-left: clamp(24px, 4vw, 36px);
    padding-right: clamp(24px, 4vw, 36px);
  }
}

@media (max-width: 767px) {
  .contact-page .page-hero {
    padding: 70px 0 16px;
  }

  .contact-page .page-hero .container {
    padding-left: clamp(16px, 5vw, 24px);
    padding-right: clamp(16px, 5vw, 24px);
  }

  .contact-page .page-hero h1 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.15;
  }

  .contact-page .section.contact {
    padding: 20px 0 60px;
  }

  .contact-page .contact-form-card {
    padding: 22px;
  }

  .contact-page .contact-layout {
    padding-left: clamp(16px, 5vw, 24px);
    padding-right: clamp(16px, 5vw, 24px);
  }

  .contact-page .contact-form-card .button,
  .contact-page .contact-form-card .button-secondary {
    width: 100%;
    justify-content: center;
  }
}

.contact-page .contact-form-card .section-lead {
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-page .contact-form-card .form-label {
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.contact-page .contact-form-card .form-control,
.contact-page .contact-form-card .form-control:focus {
  font-size: 1rem;
  padding: 0.8rem 1.05rem;
}

.contact-page .contact-form-card .row.g-3 {
  --bs-gutter-y: 1.25rem;
  --bs-gutter-x: 1.25rem;
}

.contact-page .contact-form-card .button.button2,
.contact-page .contact-form-card .button.button-secondary {
  border-radius: 999px;
  padding: 0.9rem 2.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .contact-form-card .button.button2:hover,
.contact-page .contact-form-card .button.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.content-map iframe {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.footer {
  background: var(--bg-page);
  color: var(--text-body);
  padding: calc(var(--space-section-tight) * 0.9) 0 calc(var(--space-section-tight) * 0.45);
  max-width: 100%;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 30px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-body);
}

.footer-links h6,
.footer-contact h6 {
  color: var(--text-heading);
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: var(--text-body);
  margin-bottom: 8px;
}

.footer-contact p {
  color: var(--text-body);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer-contact i {
  color: var(--brand-blue);
  font-size: 16px;
  width: 16px;
  text-align: center;
  flex: 0 0 auto;
}

.footer-contact a {
  color: inherit;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 640px) {
  .footer-contact p {
    white-space: normal;
    flex-wrap: wrap;
  }
}

.social {
  display: flex;
  gap: 12px;
}

.social i {
  font-size: 20px;
  color: var(--brand-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .navbar .button-navbar {
    display: none;
  }

  .navbar .navbar-collapse {
    justify-content: flex-start;
    background: var(--color-light);
    padding: 12px 0;
    width: 100%;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .navbar .navbar-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 12px 0 0;
  }

  .navbar .navbar-nav li {
    padding: 6px 0;
  }

  .navbar .navbar-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
  }

  .navbar .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: none;
  }

  .navbar .dropdown-menu.mega {
    width: 100%;
    padding: 20px 20px 22px;
    border-radius: 12px;
  }

  .navbar .dropdown-menu.mega .dropdown-item {
    padding: 10px 16px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: var(--space-section-tight) 0;
  }

  .hero-grid,
  .split-section,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    margin-top: 20px;
  }

  .hero-highlights,
  .feature-grid,
  .industry-grid,
  .pricing-grid,
  .stats-grid,
  .contact-grid,
  .card-grid,
  .blog-grid,
  .list-grid,
  .status-grid,
  .footer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .topbar {
    display: none;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: var(--space-section-tight) 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-lead {
    font-size: 16px;
  }

  .navbar {
    background: var(--color-light);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
  }

  .navbar .container {
    position: relative;
    z-index: 1100;
  }

  .navbar .navbar-brand.brand-text {
    font-size: 16px;
    color: var(--text-heading);
  }

  .navbar .navbar-brand.brand-text .brand-ip {
    color: var(--brand-blue);
  }

  .navbar .navbar-toggler i {
    font-size: 28px;
    color: var(--text-heading);
  }

  .navbar .navbar-collapse {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100%;
    display: block;
    background: var(--color-light);
    padding: 96px 24px 120px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: transform 0.3s ease, opacity 0.2s ease;
    z-index: 1000;
  }

  .navbar .navbar-collapse:not(.show):not(.collapsing) {
    display: none;
  }

  .navbar .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
  }

.navbar .navbar-collapse.collapsing {
  height: 100vh;
  visibility: visible;
  display: block;
}

.navbar .navbar-collapse .nav-close {
  display: none !important;
  position: absolute;
  top: 16px;
  right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--color-light);
    color: var(--text-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .navbar .navbar-collapse .nav-close {
    display: inline-flex !important;
  }
}

@media (min-width: 1025px) {
  .navbar .navbar-collapse .nav-close {
    display: none !important;
  }
}

  .navbar .navbar-nav {
    margin: 0;
    gap: 0;
  }

  .navbar .navbar-nav li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .navbar .navbar-nav li a {
    color: var(--text-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 0;
    line-height: 1.1;
  }

  .navbar .dropdown-toggle::after {
    border-top-color: var(--text-heading);
  }

  .navbar .dropdown-menu {
    background: var(--color-light);
  }

  .navbar .dropdown-menu.mega {
    border: none;
    box-shadow: none;
    padding: 18px 18px 22px;
    overflow: hidden;
  }

  .navbar .dropdown-item {
    color: var(--text-heading);
    padding: 12px 16px;
    display: block;
    border-radius: 10px;
  }

  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus {
    background: #F3F4F6;
    color: var(--text-heading);
  }

  .navbar .button-navbar {
    display: block;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 1100;
  }

  .nav-open .navbar .button-navbar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar .button-navbar li {
    margin-left: 0;
    display: block;
  }

  .navbar .button-navbar .button {
    width: 100%;
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--color-light);
    justify-content: center;
  }

  .pricing-card {
    padding: calc(var(--space-card) * 0.9);
    width: 100%;
  }

  .pricing-header .speed span {
    font-size: 24px;
  }

  .pricing-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .pricing-badge {
    position: static;
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 8px;
  }

  .pricing-footer .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-image {
    padding: 12px;
  }

  .cta-inner {
    padding: 24px;
  }

  .split-media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .footer {
    padding: calc(var(--space-section-tight) * 0.8) 0 calc(var(--space-section-tight) * 0.4);
    position: relative;
    z-index: 1;
    display: block;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand img {
    width: 90px;
    height: 90px;
  }

  .footer-links,
  .footer-contact {
    text-align: left;
  }

  .footer-brand p,
  .footer-links a,
.footer-contact p {
  font-size: 14px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-direction: row;
  white-space: nowrap;
}

.footer-contact i {
  color: var(--brand-blue);
  font-size: 16px;
  width: 16px;
  text-align: center;
  flex: 0 0 auto;
}

.footer-contact a {
  color: inherit;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 640px) {
  .footer-contact p {
    white-space: normal;
    flex-wrap: wrap;
  }
}

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

@media (min-width: 481px) {
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .industry-grid,
  .pricing-grid,
  .stats-grid,
  .contact-grid,
  .card-grid,
  .blog-grid,
  .list-grid,
  .status-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (min-width: 769px) {
  .hero-grid,
  .split-section,
  .page-hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    position: absolute;
    left: -20px;
    bottom: -20px;
    margin-top: 0;
  }

  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .stats-grid,
  .status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .cta-inner {
    flex-direction: row;
    align-items: center;
  }

  .topbar .container {
    flex-direction: row;
    align-items: center;
  }

  .mega-grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }
}

@media (min-width: 1025px) {
  .navbar .button-navbar {
    display: block;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .stats-grid,
  .status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .card-grid,
  .blog-grid,
  .list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(180px, 1fr));
  }
}

@media (min-width: 1025px) {
  .mega-grid .dropdown-item {
    white-space: nowrap;
  }
}

@media (min-width: 1025px) {
  .dropdown-menu.mega {
    width: max-content;
    max-width: 480px;
  }

  .navbar .dropdown-menu[data-bs-popper],
  .navbar .dropdown-menu.mega {
    margin-top: 12px;
  }
}

/* topbar */
.topbar {
  background: var(--color-light);
  color: var(--text-muted);
  font-size: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-direction: column;
  align-items: flex-start;
  min-height: 32px;
}
.topbar-left {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-right a {
  color: var(--text-heading);
  margin-left: 16px;
  font-weight: 600;
}

/* mega dropdown */
.dropdown-menu.mega {
  width: min(460px, 92vw);
  padding: 12px 14px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-content: start;
}
.mega-grid h6 {
  color: var(--text-heading);
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.mega-grid .dropdown-item {
  padding: 6px 10px;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  border-radius: 8px;
  line-height: 1.25;
}

.mega-grid > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* page hero */
.page-hero {
  padding: clamp(120px, 18vw, 150px) 0 clamp(60px, 10vw, 80px);
  background: var(--bg-page);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 6vw, 50px);
  align-items: center;
}
.page-hero-media img {
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  background: var(--color-light);
}
.soft {
  background: var(--bg-page);
}

/* utility grids */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.info-card {
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: var(--space-card);
  box-shadow: var(--shadow-sm);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.blog-card {
  background: var(--color-light);
  border-radius: 16px;
  padding: var(--space-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}
.blog-card .meta {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}
.text-link {
  font-weight: 600;
  color: var(--brand-blue);
}
.list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.list-card {
  background: var(--color-light);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  padding: var(--space-card);
}
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  background: #E6F7FF;
  border: 1px solid #CFEFFF;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-blue);
}

/* status */
.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.status-card {
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: var(--space-card);
  background: var(--color-light);
  box-shadow: var(--shadow-sm);
}
.status-card.healthy {
  border-color: var(--brand-blue);
}

/* table */
.table-wrap {
  overflow-x: auto;
}
.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-table th,
.feature-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}
.feature-table th {
  background: #F3F4F6;
  color: var(--text-heading);
}

/* mobile nav close visibility */
.navbar .navbar-collapse .nav-close {
  display: none !important;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse .nav-close {
    display: inline-flex !important;
  }
}
.dropdown-menu {
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #F3F4F6;
  color: var(--text-heading);
}

.modal-content {
  background: var(--color-light);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.modal-backdrop {
  background-color: #0A1A2A;
  opacity: 0.3;
}

.modal-header,
.modal-footer {
  background: var(--color-light);
  border-color: var(--border-subtle);
}

.form-control {
  background: var(--color-light);
  border-color: var(--border-input);
  color: var(--text-heading);
}

.form-control::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
}
