:root {
  --bg: #050816;
  --bg-secondary: #091126;
  --panel: rgba(10, 18, 38, 0.62);
  --panel-strong: rgba(12, 20, 44, 0.85);
  --border: rgba(140, 220, 255, 0.18);
  --text: #f4fbff;
  --muted: #9db2cc;
  --accent: #2eb5ff;
  --accent-2: #74f9ff;
  --success: #67f6ba;
  --danger: #ff7c93;
  --shadow: 0 18px 60px rgba(2, 12, 30, 0.55);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 88px;
  --header-offset: 126px;
  --legal-nav-offset: 126px;
}

* { box-sizing: border-box; }
html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  padding-top: 70px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(
    135deg,
    #020617 0%,
    #020617 40%,
    #0a1a2f 100%
  );
  overflow-x: hidden;
  width: 100%;
}
main {
  flex: 1;
  width: 100%;
  padding-top: 0;
}
body,
button,
input,
select,
textarea {
  -webkit-text-size-adjust: 100%;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  pointer-events: none;
  opacity: 0.35;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.main-nav a,
.footer-grid a,
.footer-bottom-links a,
.contact-card a,
.contact-card p,
.feature-card p,
.hero-copy p,
.section-heading p,
.pricing-features li,
.table-meta,
.dashboard-subtitle {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.page-shell {
  position: relative;
  overflow-x: clip;
  background: transparent;
}
.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.ambient-one { top: 80px; left: -90px; width: 240px; height: 240px; background: rgba(46, 181, 255, 0.2); }
.ambient-two { right: -80px; top: 35vh; width: 280px; height: 280px; background: rgba(116, 249, 255, 0.14); }
.section, .site-header { z-index: 1; }
.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 50px 0;
  scroll-margin-top: 100px;
  box-sizing: border-box;
  background: transparent;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
[id] {
  scroll-margin-top: calc(var(--header-offset) + 8px);
}
.hero-copy,
.hero-visual,
.section-heading,
.contact-copy,
.contact-form,
.footer-grid > div,
.messages-panel,
.table-panel,
.stats-card,
.pricing-card,
.client-card,
.feature-card,
.tech-card {
  min-width: 0;
}
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #0B1F3A;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 181, 255, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-container > * {
  min-width: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 2px 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-logo {
  display: block;
  height: 54px;
  width: auto;
  max-width: min(210px, 44vw);
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  /* Preserves brand colors while making dark text white and adding a subtle brand-aligned glow */
  filter: invert(1) hue-rotate(180deg) contrast(1.1) brightness(1.1) 
          drop-shadow(0 0 12px rgba(46, 181, 255, 0.25));
}
.logo {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}
.brand-orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(46, 181, 255, 0.8);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 14px);
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 22, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.mobile-nav a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.3s ease;
}
.mobile-nav a:hover {
  color: #74f9ff;
}
.mobile-cta {
  margin-top: 30px;
  background: linear-gradient(135deg, #2eb5ff, #74f9ff);
  color: #04111e;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(46, 181, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mobile-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(46, 181, 255, 0.4);
}
.main-nav a,
.header-cta,
.footer-grid a,
.social-links a,
.btn,
.tech-card,
.feature-card,
.contact-card,
.logo-card,
.sidebar a,
.action-btn,
.detail-btn,
.delete-btn,
.modal-close {
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}
.main-nav a, .footer-grid a { color: var(--muted); }
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 4px;
  white-space: nowrap;
}
.main-nav a:hover, .footer-grid a:hover, .sidebar a:hover, .sidebar a.active { color: var(--text); }
.header-cta, .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}
.header-cta, .btn-primary {
  background: linear-gradient(135deg, rgba(46, 181, 255, 0.95), rgba(116, 249, 255, 0.82));
  color: #04111e;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(46, 181, 255, 0.25);
}
.header-cta {
  margin-left: auto;
  padding: 12px 20px;
  min-height: 44px;
  white-space: nowrap;
  flex-shrink: 0;
  color: #000000;
  font-weight: 700;
  border: 1px solid rgba(190, 244, 255, 0.4);
  background:
    linear-gradient(135deg, rgba(34, 163, 255, 0.98), rgba(46, 213, 255, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 36px rgba(28, 170, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 30px rgba(71, 224, 255, 0.3);
  backdrop-filter: blur(18px);
  transform-origin: center;
  text-shadow: 0 1px 10px rgba(8, 34, 54, 0.3);
}
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px) scale(1.03);
  color: #000000;
  box-shadow:
    0 22px 40px rgba(32, 177, 255, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 36px rgba(91, 232, 255, 0.34);
  filter: brightness(1.05);
}
.header-cta:focus-visible {
  outline: none;
}
.btn-secondary { border-color: rgba(255, 255, 255, 0.14); color: var(--text); background: rgba(255, 255, 255, 0.04); }
.btn:hover, .header-cta:hover, .tech-card:hover, .feature-card:hover, .contact-card:hover, .logo-card:hover, .action-btn:hover, .detail-btn:hover, .delete-btn:hover, .modal-close:hover { transform: translateY(-2px); }
.hero-section {
  padding-top: 20px;
  background: transparent;
}
@media (max-width: 768px) {
  body {
    padding-top: 65px;
  }
  .hero-section {
    padding: 40px 20px !important;
  }
  .client-logo {
    width: 90px;
    flex-shrink: 0;
  }
}
@media (max-width: 1024px) {
  .hero-copy h1 {
    max-width: 100%;
  }
}
.hero-section {
  padding: 80px 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.hero-copy h1 {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.2;
  font-weight: 700;
  max-width: 100%;
  margin: 0 auto 24px;
  color: #ffffff;
  text-align: center;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 .gradient-text {
  background: linear-gradient(90deg, #39C6C8, #6FC6E3, #8FA4E8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-br {
  display: none;
}

.hero-copy p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 16px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(116, 249, 255, 0.18);
  background: rgba(116, 249, 255, 0.08);
  color: #caf8ff;
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.hero-copy h1, .section-heading h2, .contact-copy h2, .login-panel h1 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.text-highlight {
  color: #eefbff;
  text-shadow: 0 0 24px rgba(116, 249, 255, 0.18);
}
.text-highlight-inline {
  color: #dbf9ff;
}
.hero-copy p, .section-heading p, .contact-copy p, .feature-card p, .metric-card span, .contact-card p, .logo-card, .status-note, .login-panel p, .table-empty, .settings-card p, .dashboard-subtitle, .table-meta, .modal-body p, .admin-table td, .admin-table th, .form-status, .footer-grid p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-copy {
  max-width: 550px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-br { display: block; }
  .hero-copy { max-width: 1200px; }
  .hero-copy h1 { 
    font-size: clamp(54px, 5vw, 72px);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
}

.hero-trust-line {
  margin: 0 auto 20px !important;
  color: #cadcf3;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}
.hero-actions .btn {
  min-width: 170px;
}
.testimonials-section .container {
  max-width: 1200px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.quote-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.1);
}
.testimonial-card .stars {
  color: #facc15;
  margin-bottom: 16px;
}
.testimonial-card p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
}
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}
.user h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}
.user span {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-width: 260px;
  }
  .testimonial-track {
    animation-duration: 25s;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 260px;
  }
  .testimonial-track {
    animation-duration: 25s;
  }
}
.hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}
.metric-card, .hero-panel, .logo-slider, .feature-card, .contact-form, .contact-card, .footer-grid, .admin-shell, .login-panel, .stats-card, .messages-panel, .table-panel, .settings-card, .modal-panel { border-radius: var(--radius-xl); }
.metric-card { padding: 20px; }
.metric-card strong, .stat-number { display: block; font-size: 1.8rem; margin-bottom: 10px; }
.hero-panel { padding: 24px; position: relative; overflow: hidden; }
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 181, 255, 0.32), transparent 70%);
}
.panel-top { display: flex; gap: 8px; margin-bottom: 24px; }
.panel-top span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.28); }
.insight-card, .bottom-highlight, .mini-card { position: relative; z-index: 1; }
.insight-card.primary {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(12, 37, 79, 0.9), rgba(18, 96, 145, 0.78));
  border: 1px solid rgba(116, 249, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.insight-card p, .highlight-label { margin: 0; font-size: 0.92rem; color: #b9dcff; }
.insight-card strong { display: block; font-size: 2rem; margin: 10px 0; }
.insight-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.mini-card, .feature-card, .contact-card, .tech-card, .stats-card, .settings-card { padding: 22px; }
.mini-card i, .feature-card i, .contact-card i, .tech-card i, .panel-icon, .settings-card i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(46, 181, 255, 0.2), rgba(116, 249, 255, 0.1));
  color: #9eedff;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.mini-card strong, .feature-card h3, .contact-card span, .section-heading h2, .contact-copy h2, .login-panel h1, .panel-title, .table-title, .settings-card h3, .modal-body h3 { font-size: 1.3rem; }
.bottom-highlight {
  margin-top: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 22px;
}
.bottom-highlight strong { display: block; font-size: 1.05rem; margin-top: 6px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #04111e;
  background: linear-gradient(135deg, #79dbff, #afffff);
  border: 2px solid rgba(4, 17, 30, 0.8);
}
.section-heading { max-width: 760px; margin-bottom: 28px; }
.logo-slider { overflow: hidden; padding: 18px; }
.logo-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.logo-slider:hover .logo-track { animation-play-state: paused; }
.logo-card {
  min-width: 220px;
  padding: 20px 24px;
  margin-right: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  text-align: center;
}
.clients-slider {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  border-radius: var(--radius-xl);
  /* Fade effect for a seamless edge transition */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.clients-track {
  display: flex;
  width: max-content;
  gap: 0;
  flex-wrap: nowrap;
  animation: marquee 60s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}
.clients-group {
  display: flex;
  gap: 24px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  padding-right: 24px;
}
.client-card {
  min-height: 160px;
  min-width: 260px;
  width: 260px;
  padding: 30px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.client-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
  transform: translateY(-5px);
}
.client-logo {
  display: block;
  margin: auto;
  color: transparent;
  width: 100%;
  max-width: 160px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.4s ease;
}
.client-card:hover .client-logo {
  filter: grayscale(0) opacity(1);
}
.tech-grid, .feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.tech-card { text-align: center; border-radius: 24px; }
.tech-card i { margin: 0 auto 16px; font-size: 1.4rem; }
.tech-card span { display: block; font-weight: 600; }
.industries-section {
  position: relative;
  padding-top: 50px;
}
.industries-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 280px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(46, 181, 255, 0.24), transparent 34%),
    radial-gradient(circle at 82% 15%, rgba(126, 108, 255, 0.2), transparent 30%),
    radial-gradient(circle at 50% 85%, rgba(116, 249, 255, 0.12), transparent 36%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.industries-heading {
  text-align: center;
  margin: 0 auto 30px;
}
.industries-heading .eyebrow {
  justify-content: center;
}
.industries-heading p {
  max-width: 60ch;
  margin: 16px auto 0;
}
.industries-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(170, 232, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(7, 17, 34, 0.88), rgba(10, 19, 42, 0.62));
  box-shadow:
    0 20px 48px rgba(3, 12, 30, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(18px);
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: auto -44px -52px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 181, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.industry-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  border: 1px solid rgba(174, 240, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(46, 181, 255, 0.2), rgba(116, 249, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #b8f5ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 24px rgba(46, 181, 255, 0.12);
}
.industry-icon i {
  font-size: 1.22rem;
}
.industry-card h3 {
  margin: 0 0 12px;
  font-size: 1.26rem;
  color: var(--text);
}
.industry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.industry-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(136, 230, 255, 0.28);
  box-shadow:
    0 28px 58px rgba(4, 16, 38, 0.58),
    0 0 34px rgba(46, 181, 255, 0.12),
    0 0 0 1px rgba(116, 249, 255, 0.06) inset;
}
.tech-card:hover, .feature-card:hover, .contact-card:hover, .logo-card:hover, .client-card:hover, .stats-card:hover, .settings-card:hover {
  border-color: rgba(116, 249, 255, 0.28);
  box-shadow: 0 22px 50px rgba(9, 24, 51, 0.5), 0 0 0 1px rgba(116, 249, 255, 0.04) inset;
}
.apart-section { padding-top: 28px; }
.contact-layout, .admin-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; }
.contact-card > div {
  display: grid;
  gap: 4px;
}
.contact-card a {
  font-weight: 600;
  color: var(--text);
}
.contact-card p {
  margin: 0;
}
.contact-highlight {
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
}
.contact-highlight-cyan {
  color: #9af6ff;
}
.contact-highlight-green {
  color: #8bffbf;
}
.contact-card span, label span, .settings-item span, .sidebar small, .kicker, .stat-label {
  display: block;
  color: #c7defb;
  margin-bottom: 6px;
  font-size: 0.94rem;
}
.contact-form { padding: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: block; }
.full-width { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(116, 249, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(116, 249, 255, 0.08);
}
option { color: #07101f; }
.form-submit { width: 100%; margin-top: 18px; }
.form-status { min-height: 28px; margin: 14px 2px 0; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.site-footer {
  width: auto;
}
.footer-section {
  padding: 80px 0 40px;
  background: radial-gradient(circle at top center, rgba(46, 181, 255, 0.05), transparent 40%), var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-logo-link { display: inline-block; margin-bottom: 24px; }
.footer-logo {
  height: 58px;
  /* Consistent treatment for the footer logo to ensure visibility and brand integrity */
  filter: invert(1) hue-rotate(180deg) contrast(1.1) brightness(1.1)
          drop-shadow(0 0 15px rgba(46, 181, 255, 0.2));
}
.footer-desc {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-nav-group h3, .footer-connect-col h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.footer-nav-group nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav-group a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer-nav-group a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-connect-col p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-links a:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(46, 181, 255, 0.2);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.copyright { color: var(--muted); font-size: 0.9rem; }
.copyright strong {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-block;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: var(--muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-legal a:hover { color: var(--text); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1.5fr; gap: 40px; }
  .footer-connect-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .footer-section { padding: 60px 20px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-desc { margin: 0 auto; }
  .footer-links-col { grid-template-columns: 1fr; gap: 30px; }
  .footer-nav-group a:hover { transform: none; }
  .social-links { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; width: 100%; }
  .footer-legal a { white-space: nowrap; }
}

.terms-main {
  padding-top: 24px;
  padding-bottom: 20px;
}
.terms-panel {
  padding: 34px;
  max-width: 920px;
  margin: 0 auto;
  scroll-margin-top: var(--header-offset);
}
.terms-panel h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  scroll-margin-top: var(--header-offset);
}
.terms-intro {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
  max-width: 68ch;
}
.terms-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.terms-item {
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  scroll-margin-top: calc(var(--header-offset) + 8px);
}
.terms-item h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--text);
}
.terms-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.terms-item ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.terms-item li + li {
  margin-top: 6px;
}
.footer-grid h3 { margin-top: 0; margin-bottom: 10px; font-size: 0.98rem; }
.footer-grid h3,
.footer-grid p,
.footer-grid a {
  text-align: left;
}
.footer-grid a { display: block; margin-bottom: 6px; }
.footer-grid a {
  color: #aeb8ca;
  font-size: 0.96rem;
  line-height: 1.6;
}
.footer-grid > div:first-child p {
  max-width: 21ch;
  font-size: 0.98rem;
  line-height: 1.65;
}
.social-links {
  justify-content: flex-start;
}
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #eef8ff;
}
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.reveal { opacity: 1; transform: translateY(0); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.admin-body { padding: 20px; }
.login-shell, .admin-shell { min-height: calc(100vh - 40px); width: min(1280px, 100%); margin: 0 auto; }
.login-shell { display: grid; place-items: center; }
.login-panel { width: min(520px, 100%); padding: 34px; }
.kicker {
  padding: 8px 14px;
  border: 1px solid rgba(116, 249, 255, 0.18);
  background: rgba(116, 249, 255, 0.08);
  border-radius: 999px;
  width: fit-content;
}
.status-note { min-height: 24px; margin-top: 12px; }
.status-note.error { color: var(--danger); }
.status-note.success { color: var(--success); }
.admin-shell { display: grid; grid-template-columns: 280px 1fr; gap: 20px; }
.sidebar {
  padding: 24px;
  border-radius: 30px;
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--muted);
}
.sidebar a.active, .sidebar a:hover { background: rgba(255, 255, 255, 0.05); }
.sidebar-footer { margin-top: auto; }
.action-btn, .detail-btn, .delete-btn, .modal-close {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 10px 14px;
  color: var(--text);
}
.action-btn, .detail-btn, .modal-close { background: rgba(255, 255, 255, 0.06); }
.delete-btn { background: rgba(255, 124, 147, 0.12); color: #ffccd5; }
.admin-main { padding: 12px 0 40px; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-subtitle { margin: 8px 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 18px; }
.messages-panel, .table-panel { padding: 24px; }
.messages-panel { margin-bottom: 18px; }
.messages-list { display: grid; gap: 14px; }
.message-item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}
.message-top, .table-header, .modal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.message-item h3, .table-title, .panel-title { margin: 0; }
.admin-table-wrap { overflow-x: auto; margin-top: 18px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: top;
}
.table-actions { display: flex; gap: 10px; }
.panel-hidden { display: none; }
.settings-grid { display: grid; gap: 18px; }
.settings-item strong, .modal-meta strong { display: block; margin-bottom: 4px; }
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 8, 22, 0.72);
  backdrop-filter: blur(12px);
  z-index: 40;
}
.modal.open { display: flex; }
.modal-panel { width: min(720px, 100%); padding: 26px; }
.modal-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 18px 0; }
.modal-message {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  white-space: pre-wrap;
}
.hidden { display: none !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1080px) {
  .hero-section, .contact-layout, .admin-shell, .footer-grid, .stats-grid, .tech-grid, .feature-grid, .pricing-grid, .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-shell { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; height: auto; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 4px;
    padding: 16px 18px 18px;
    background: rgba(3, 8, 22, 0.96);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; padding: 12px 14px; }
  .nav-container {
    max-width: none;
    padding: 12px 20px;
  }
  .hero-section, .contact-layout, .form-grid, .tech-grid, .feature-grid, .stats-grid, .footer-grid, .modal-meta, .pricing-grid, .industries-grid { grid-template-columns: 1fr; }
  .hero-copy,
  .hero-visual,
  .section-heading,
  .contact-copy,
  .contact-form,
  .pricing-card,
  .feature-card,
  .tech-card,
  .industry-card,
  .terms-panel,
  .footer-grid > div,
  .footer-meta {
    min-width: 0;
  }
  .hero-copy h1 { max-width: 100%; }
  .hero-copy > p { font-size: 1rem; }
  .hero-metrics, .insight-grid { grid-template-columns: 1fr; }
  .logo-card { min-width: 180px; }
  .client-card { min-height: 170px; min-width: 220px; }
  .footer-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    align-items: stretch;
    gap: 10px 18px;
  }
  .footer-bottom-links a {
    width: 100%;
    min-height: 30px;
    padding: 0;
  }
  .footer-grid {
    text-align: center;
    gap: 22px;
    padding: 24px 28px;
  }
  .footer-grid > div {
    display: grid;
    justify-items: center;
  }
  .footer-brand,
  .social-links {
    justify-content: center;
  }
  .footer-grid a {
    margin-bottom: 0;
    padding: 6px 0;
  }
  .footer-grid h3,
  .footer-grid p,
  .footer-grid a {
    text-align: center;
  }
  .footer-grid > div:first-child p {
    max-width: 26ch;
  }
  .footer-grid p {
    line-height: 1.9;
  }
  .admin-topbar, .message-top, .table-header, .modal-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .section {
    width: 100%;
    padding: 34px 20px;
  }
  body {
    padding-top: 70px;
  }
  .site-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 420px;
    border-radius: 999px;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(10, 25, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
  }
  .nav-container {
    width: 100%;
    padding: 0;
    max-width: none;
  }
  .brand-mark img {
    height: 38px;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brand-mark {
    justify-content: flex-start;
    margin-right: auto;
  }
  .nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }
  .hero-section .container {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }
  .hero-copy > p,
  .hero-trust-line {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero-visual {
    gap: 16px;
  }
  .hero-panel,
  .contact-form,
  .footer-grid,
  .industry-card,
  .pricing-card,
  .feature-card,
  .tech-card,
  .metric-card,
  .contact-card,
  .client-card {
    border-radius: 24px;
  }
  .client-card {
    min-width: 220px;
    width: 220px;
    margin-inline: 0;
  }
  .clients-slider {
    padding: 14px;
  }
  .clients-group {
    gap: 14px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form,
  .hero-panel,
  .footer-grid,
  .messages-panel,
  .table-panel,
  .login-panel,
  .modal-panel,
  .terms-panel {
    padding: 22px;
  }
  .pricing-section {
    width: min(100% - 32px, 1180px);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .pricing-card,
  .client-card,
  .industry-card {
    width: 100%;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-bottom-links {
    gap: 10px 14px;
  }
}
@media (max-width: 560px) {
  .section { width: 100%; }
  .site-header { width: 100%; margin-top: 0; padding: 16px 20px; }
  .footer-inner { padding: 0 20px; }
  .brand-mark { min-height: 38px; }
  .brand-logo { height: 46px; max-width: min(180px, 54vw); }
  .footer-logo { height: 44px; max-width: min(210px, 100%); }
  .hero-section { padding-top: 32px; gap: 24px; }
  .hero-visual { gap: 16px; }
  .hero-copy h1,
  .section-heading h2,
  .contact-copy h2,
  .login-panel h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-copy > p,
  .terms-intro,
  .industry-card p,
  .feature-card p,
  .contact-copy p,
  .pricing-features li {
    font-size: 0.97rem;
  }
  .eyebrow { font-size: 0.84rem; }
  .terms-main { padding-top: 18px; }
  .contact-form, .hero-panel, .footer-grid, .messages-panel, .table-panel, .login-panel, .modal-panel { padding: 20px; }
  .sidebar { padding: 18px; }
  .table-actions { flex-direction: column; }
  .pricing-card { padding: 20px; }
  .pricing-price { font-size: 1.8rem; }
  .client-card { min-width: 190px; min-height: 150px; padding: 18px; }
  .client-card { width: 190px; }
  .client-logo { max-width: 200px; max-height: 78px; }
  .footer-grid {
    padding: 20px;
    border-radius: 12px;
  }
  .footer-grid h3 {
    font-size: 1rem;
  }
  .footer-grid a,
  .footer-grid > div:first-child p,
  .footer-meta p,
  .footer-bottom-links a {
    font-size: 0.97rem;
  }
  .industry-card { min-height: 0; padding: 22px 20px; }
  .footer-bottom-links a {
    min-height: 32px;
    padding: 0 4px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .terms-panel { padding: 24px 20px; }
  .terms-item { padding: 20px; }
}
@media (max-width: 480px) {
  .site-header {
    top: 12px;
    padding: 14px 16px;
  }
  .main-nav a,
  .header-cta,
  .btn,
  .form-submit {
    min-height: 48px;
  }
  .hero-copy h1 {
    font-size: clamp(2rem, 11.5vw, 2.7rem);
  }
  .metric-card strong,
  .stat-number,
  .pricing-price {
    font-size: 1.65rem;
  }
  .footer-grid {
    padding: 20px 16px;
    border-radius: 10px;
  }
}
@media (max-width: 400px) {
  .site-header { gap: 14px; }
  .main-nav a,
  .header-cta,
  .btn { min-height: 46px; }
  .footer-bottom-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-bottom-links a {
    min-height: 30px;
  }
}
.pricing-section {
  padding-top: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  min-width: 0;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 181, 255, 0.18), transparent 72%);
  pointer-events: none;
}

.pricing-card-featured {
  border-color: rgba(116, 249, 255, 0.34);
  box-shadow: 0 22px 60px rgba(11, 27, 56, 0.6), 0 0 40px rgba(46, 181, 255, 0.18);
}

.pricing-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(116, 249, 255, 0.12);
  border: 1px solid rgba(116, 249, 255, 0.24);
  color: #d6fbff;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.pricing-top {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 0;
}

.pricing-plan {
  color: #d6ebff;
  font-weight: 600;
}

.pricing-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  min-width: 0;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(46, 181, 255, 0.45);
}

.pricing-btn {
  width: 100%;
}

@media (max-width: 768px) {
  .pricing-section {
    width: calc(100% - 24px);
    padding-left: 0;
    padding-right: 0;
  }

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Mobile layout fixes */
  body, html {
    width: 100%;
    overflow-x: hidden;
  }

  .page-shell {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  .section {
    width: 100%;
    max-width: 100%;
    padding: 34px 0;
    box-sizing: border-box;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    padding: 0;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .footer-section {
    width: 100%;
    max-width: 100%;
    padding: 34px 0;
  }

  /* Cards responsive */
  .pricing-card,
  .feature-card,
  .tech-card,
  .industry-card,
  .contact-card,
  .metric-card,
  .mini-card,
  .insight-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 16px;
  }

  /* Grids and layouts */
  .clients-slider,
  .tech-grid,
  .industries-grid,
  .pricing-grid,
  .feature-grid {
    width: 100%;
    max-width: 100%;
  }

  .hero-section,
  .contact-layout {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .hero-visual,
  .contact-copy,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
}

  .pricing-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pricing-card {
    width: 100%;
    padding: 20px;
  }

  .pricing-price,
  .pricing-plan,
  .pricing-features li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  background-color: #22bf5b;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.2);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}
