/* =========================================================
   CUBEON TECHNOLOGIES
   AI VOICE AGENTS
   PREMIUM LANDING PAGE
========================================================= */

.ai-voice-page {
  --voice-navy: #07145c;
  --voice-navy-dark: #040b35;
  --voice-blue: #2563ff;
  --voice-blue-dark: #1747d1;

  --voice-text: #101828;
  --voice-muted: #667085;

  --voice-bg: #f7f9fd;
  --voice-white: #ffffff;

  --voice-border: #e4e8f1;

  --voice-shadow: 0 20px 55px rgba(7, 20, 92, 0.1);

  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  color: var(--voice-text);

  overflow-x: hidden;
}

/* =========================================================
   RESET
========================================================= */

.ai-voice-page *,
.ai-voice-page *::before,
.ai-voice-page *::after {
  box-sizing: border-box;
}

.ai-voice-page .container {
  width: min(1200px, calc(100% - 48px));

  max-width: 1200px;

  margin: 0 auto;
}

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

.voice-header {
  position: sticky;

  top: 0;

  z-index: 99999;

  width: 100%;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid var(--voice-border);

  backdrop-filter: blur(18px);

  box-shadow: 0 4px 20px rgba(7, 20, 92, 0.05);
}

.voice-header-inner {
  min-height: 76px;

  display: flex;

  align-items: center;

  gap: 30px;
}

.voice-logo img {
  width: auto;

  height: 60px;

  display: block;
}

.voice-nav {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-left: auto;
}

.voice-nav a {
  color: #344054 !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  transition: 0.25s;
}

.voice-nav a:hover {
  color: var(--voice-blue) !important;
}

.voice-header-cta {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 42px;

  padding: 0 18px;

  border-radius: 8px;

  background: var(--voice-blue) !important;

  color: white !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  white-space: nowrap;
}

.voice-mobile-toggle {
  display: none;

  width: 42px;

  height: 42px;

  border: 1px solid var(--voice-border);

  border-radius: 8px;

  background: white;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 5px;
}

.voice-mobile-toggle span {
  width: 18px;

  height: 2px;

  background: var(--voice-navy);
}

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

.voice-mobile-nav {
  display: none;

  position: fixed;

  top: 76px;

  left: 0;

  width: 100%;

  z-index: 99998;

  background: white;

  border-bottom: 1px solid var(--voice-border);

  box-shadow: 0 15px 30px rgba(7, 20, 92, 0.1);
}

.voice-mobile-nav.active {
  display: flex;

  flex-direction: column;
}

.voice-mobile-nav a {
  padding: 16px 24px;

  color: var(--voice-navy) !important;

  font-size: 14px !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  border-bottom: 1px solid #f0f2f6;
}

/* =========================================================
   HERO
========================================================= */

.voice-hero {
  position: relative;

  min-height: 720px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background-image: url("../../assets/images/hm8-bg01.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;

  padding: 90px 0 100px;
}

.voice-hero-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

.voice-hero-content {
  max-width: 640px;
}

.voice-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 18px;

  color: var(--voice-blue) !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660 !important;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.voice-eyebrow::before {
  content: "";

  width: 24px;

  height: 2px;

  background: var(--voice-blue);

  border-radius: 20px;
}

.voice-hero h1 {
  margin: 0 0 24px;

  color: #ffffff !important;

  font-size: clamp(46px, 5vw, 70px) !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.05 !important;

  letter-spacing: -3px;

  font-weight: 600 !important;
}

.voice-hero h1 span {
  color: #add06f !important;
}

.voice-hero-content > p {
  max-width: 600px;

  margin-bottom: 32px;

  color: #cfd0d2 !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 17px !important;

  line-height: 1.75 !important;
}

/* =========================================================
   BUTTONS
========================================================= */

.voice-hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 30px;
}

.voice-btn {
  min-height: 52px;

  padding: 0 22px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  border-radius: 8px;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  transition: 0.25s;
}

.voice-btn-primary {
  background: var(--voice-blue) !important;

  color: white !important;

  box-shadow: 0 12px 28px rgba(37, 99, 255, 0.2);
}

.voice-btn-primary:hover {
  background: var(--voice-blue-dark) !important;

  color: white !important;

  transform: translateY(-2px);
}

.voice-btn-outline {
  background: white !important;

  color: var(--voice-navy) !important;

  border: 1px solid #d0d5dd !important;
}

.voice-btn-outline:hover {
  border-color: var(--voice-blue) !important;

  color: var(--voice-blue) !important;
}

.voice-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 18px 24px;
}

.voice-trust span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #cfd0d2 !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-trust i {
  color: var(--voice-blue) !important;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.voice-hero-visual {
  position: relative;

  min-height: 540px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.voice-glow {
  position: absolute;

  width: 440px;

  height: 440px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(37, 99, 255, 0.16), transparent 68%);
}

.voice-orbit {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(37, 99, 255, 0.12);
}

.voice-orbit-one {
  width: 430px;

  height: 430px;
}

.voice-orbit-two {
  width: 570px;

  height: 570px;

  border-style: dashed;

  border-color: rgba(37, 99, 255, 0.07);
}

/* =========================================================
   PHONE
========================================================= */

.voice-phone {
  position: relative;

  z-index: 5;

  width: 300px;

  min-height: 510px;

  padding: 18px;

  border-radius: 34px;

  background: linear-gradient(145deg, #0d1d67, #050b32);

  border: 7px solid #121f67;

  box-shadow: 0 30px 70px rgba(7, 20, 92, 0.3);
}

.voice-phone-top {
  display: flex;

  justify-content: space-between;

  color: rgba(255, 255, 255, 0.55);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  letter-spacing: 1.5px;

  font-weight: 600;
}

.voice-call-status {
  display: flex;

  flex-direction: column;

  align-items: center;

  padding: 28px 0 20px;

  color: white;
}

.voice-avatar {
  width: 66px;

  height: 66px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 12px;

  border-radius: 50%;

  background: linear-gradient(135deg, #2563ff, #1747d1);

  box-shadow: 0 12px 28px rgba(37, 99, 255, 0.3);
}

.voice-avatar i {
  font-size: 25px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  color: white;
}

.voice-call-status strong {
  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  margin-bottom: 5px;
}

.voice-call-status small {
  color: #67e8a5;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   VOICE WAVE
========================================================= */

.voice-wave {
  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 4px;

  margin-bottom: 18px;
}

.voice-wave span {
  width: 4px;

  border-radius: 10px;

  background: #4f83ff;

  animation: voiceWave 1s ease-in-out infinite;
}

.voice-wave span:nth-child(1) {
  height: 15px;
}
.voice-wave span:nth-child(2) {
  height: 25px;
  animation-delay: 0.1s;
}
.voice-wave span:nth-child(3) {
  height: 38px;
  animation-delay: 0.2s;
}
.voice-wave span:nth-child(4) {
  height: 24px;
  animation-delay: 0.3s;
}
.voice-wave span:nth-child(5) {
  height: 44px;
  animation-delay: 0.4s;
}
.voice-wave span:nth-child(6) {
  height: 30px;
  animation-delay: 0.5s;
}
.voice-wave span:nth-child(7) {
  height: 48px;
  animation-delay: 0.6s;
}
.voice-wave span:nth-child(8) {
  height: 28px;
  animation-delay: 0.7s;
}
.voice-wave span:nth-child(9) {
  height: 40px;
  animation-delay: 0.8s;
}
.voice-wave span:nth-child(10) {
  height: 24px;
  animation-delay: 0.9s;
}
.voice-wave span:nth-child(11) {
  height: 15px;
  animation-delay: 1s;
}

@keyframes voiceWave {
  50% {
    transform: scaleY(0.55);
    opacity: 0.55;
  }
}

/* =========================================================
   TRANSCRIPT
========================================================= */

.voice-transcript {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.voice-message {
  max-width: 88%;

  padding: 9px 11px;

  border-radius: 9px;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.5;

  color: rgba(255, 255, 255, 0.78);

  background: rgba(255, 255, 255, 0.07);
}

.voice-message span {
  display: block;

  margin-bottom: 3px;

  color: #6f96ff;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;

  letter-spacing: 1px;
}

.voice-message.user {
  align-self: flex-end;

  background: rgba(37, 99, 255, 0.25);
}

/* =========================================================
   CALL CONTROLS
========================================================= */

.voice-call-controls {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 16px;

  margin-top: 20px;
}

.voice-call-controls button {
  width: 36px;

  height: 36px;

  border: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  color: white;
}

.voice-call-controls .voice-end-call {
  width: 46px;

  height: 46px;

  background: #ef4444;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.voice-floating-card {
  position: absolute;

  z-index: 8;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 13px 15px;

  min-width: 185px;

  border: 1px solid rgba(228, 232, 241, 0.95);

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow: 0 18px 40px rgba(7, 20, 92, 0.1);

  animation: voiceFloat 5s ease-in-out infinite;
}

.voice-card-icon {
  width: 38px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 10px;

  background: #edf3ff;

  color: var(--voice-blue);
}

.voice-floating-card strong {
  display: block;

  color: var(--voice-navy);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-floating-card small {
  display: block;

  margin-top: 3px;

  color: #98a2b3;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-card-one {
  left: 0;

  top: 85px;
}

.voice-card-two {
  right: 0;

  top: 150px;

  animation-delay: 1s;
}

.voice-card-three {
  right: 20px;

  bottom: 65px;

  animation-delay: 2s;
}

@keyframes voiceFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =========================================================
   SECTIONS
========================================================= */

.voice-section {
  padding: 100px 0;
}

.voice-overview {
  background: white;
}

.voice-capabilities,
.voice-process {
  background: var(--voice-bg);
}

.voice-use-cases {
  background: white;
}

.voice-section-heading {
  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}

.voice-section-heading h2 {
  margin: 0 0 18px;

  color: var(--voice-navy) !important;

  font-size: clamp(32px, 4vw, 48px) !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.12 !important;

  font-weight: 800 !important;

  letter-spacing: -1.5px;
}

.voice-section-heading h2 span {
  color: var(--voice-blue) !important;
}

.voice-section-heading p {
  color: var(--voice-muted) !important;

  line-height: 1.75;
}

/* =========================================================
   CAPABILITY CARDS
========================================================= */

.voice-capability-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.voice-capability-card {
  padding: 30px;

  background: white;

  border: 1px solid var(--voice-border);

  border-radius: 14px;

  box-shadow: 0 8px 28px rgba(7, 20, 92, 0.04);

  transition: 0.3s;
}

.voice-capability-card:hover {
  transform: translateY(-6px);

  border-color: #c9d7ff;

  box-shadow: 0 18px 40px rgba(7, 20, 92, 0.09);
}

.voice-icon {
  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  border-radius: 12px;

  background: #edf3ff;

  color: var(--voice-blue);

  font-size: 18px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-capability-card h3 {
  color: var(--voice-navy);

  font-size: 16px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  margin-bottom: 10px;
}

.voice-capability-card p {
  margin: 0;

  color: var(--voice-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   FEATURE GRID
========================================================= */

.voice-feature-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.voice-feature {
  display: flex;

  gap: 18px;

  padding: 28px;

  background: white;

  border: 1px solid var(--voice-border);

  border-radius: 12px;
}

.voice-feature > i {
  color: var(--voice-blue);

  font-size: 22px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  padding-top: 3px;
}

.voice-feature h3 {
  margin-bottom: 8px;

  color: var(--voice-navy);

  font-size: 16px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-feature p {
  margin: 0;

  color: var(--voice-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   USE CASES
========================================================= */

.voice-use-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.voice-use-card {
  position: relative;

  padding: 32px;

  min-height: 245px;

  border: 1px solid var(--voice-border);

  border-radius: 14px;

  background: white;

  overflow: hidden;

  transition: 0.3s;
}

.voice-use-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--voice-shadow);
}

.voice-number {
  position: absolute;

  top: 18px;

  right: 22px;

  color: #e8edff;

  font-size: 34px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.voice-use-card > i {
  display: block;

  margin-bottom: 22px;

  color: var(--voice-blue);

  font-size: 22px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-use-card h3 {
  color: var(--voice-navy);

  font-size: 18px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  margin-bottom: 10px;
}

.voice-use-card p {
  color: var(--voice-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   PROCESS
========================================================= */

.voice-process-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.voice-process-step {
  padding: 30px;

  background: white;

  border: 1px solid var(--voice-border);

  border-radius: 14px;

  text-align: center;

  position: relative;
}

.voice-process-step > span {
  position: absolute;

  top: 15px;

  right: 18px;

  color: #dfe7ff;

  font-weight: 600;
}

.voice-process-step > i {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: #edf3ff;

  color: var(--voice-blue);
}

.voice-process-step h3 {
  color: var(--voice-navy);

  font-size: 17px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-process-step p {
  color: var(--voice-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   CTA
========================================================= */

.voice-cta {
  padding: 75px 0;

  background: linear-gradient(135deg, #07145c, #0b2180);

  color: white;
}

.voice-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.voice-cta h2 {
  margin: 0 0 12px;

  color: white;

  font-size: clamp(32px, 4vw, 46px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.voice-cta h2 span {
  color: #6f96ff;
}

.voice-cta p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);
}

.voice-btn-white {
  flex-shrink: 0;

  background: white !important;

  color: var(--voice-navy) !important;
}

/* =========================================================
   CONTACT
========================================================= */
.ai-form-row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}
.voice-contact {
  background: #ffffff !important;
}

.voice-contact-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 70px;

  align-items: start;
}

.voice-contact-content h2 {
  color: var(--voice-navy);

  font-size: clamp(34px, 4vw, 50px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.voice-contact-content h2 span {
  color: var(--voice-blue);
}

.voice-contact-content > p {
  color: var(--voice-muted);

  line-height: 1.7;
}

.voice-contact-details {
  display: flex;

  flex-direction: column;

  gap: 15px;

  margin-top: 30px;
}

.voice-contact-details a {
  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--voice-navy) !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  text-decoration: none !important;
}

.voice-contact-details i {
  width: 36px;

  height: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 9px;

  background: #eaf0ff;

  color: var(--voice-blue);
}
.ai-error {
  min-height: 17px;

  margin-top: 5px;

  color: #dc3545;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}
.voice-contact-form {
  padding: 35px;

  background: white !important;

  border: 1px solid var(--voice-border);

  border-radius: 16px;

  box-shadow: var(--voice-shadow);
}

.voice-form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.voice-form-group {
  margin-bottom: 18px;
  display: flex;

  flex-direction: column;
}

.voice-form-group label {
  display: block;

  margin-bottom: 7px;

  color: var(--voice-navy);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

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

  padding: 13px 14px;

  border: 1px solid #d9dfeb;

  border-radius: 7px;

  outline: none;

  color: var(--voice-text);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  background: #ffffff !important;
  font-family: inherit;
}

.voice-form-group input:focus,
.voice-form-group textarea:focus {
  border-color: var(--voice-blue);
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.08);
}

.voice-form-message {
  margin-top: 12px;
  background: #ffffff !important;
  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}
.ai-submit-btn {
  border: 0;

  cursor: pointer;
}

/* =========================================================
   FOOTER
========================================================= */

.voice-footer {
  padding: 65px 0 25px;

  background: var(--voice-navy-dark);

  color: white;
}

.voice-footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 45px;

  padding-bottom: 45px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-footer-logo img {
  width: auto;

  height: 32px;

  filter: brightness(0) invert(1);
}

.voice-footer p {
  max-width: 270px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.7;
}

.voice-footer h4 {
  margin-bottom: 18px;

  color: white;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.voice-footer a {
  display: block;

  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.58) !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  text-decoration: none !important;
}

.voice-footer a:hover {
  color: white !important;
}

.voice-footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-top: 20px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   SCROLL TOP
========================================================= */

.voice-scroll-top {
  position: fixed;

  right: 24px;

  bottom: 24px;

  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 0;

  border-radius: 50%;

  background: var(--voice-blue);

  color: white;

  box-shadow: 0 10px 25px rgba(37, 99, 255, 0.25);

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: 0.25s;

  z-index: 9999;
}

.voice-scroll-top.visible {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .voice-nav {
    gap: 18px;
  }

  .voice-hero-grid {
    grid-template-columns: 1fr 1fr;

    gap: 35px;
  }

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

  .voice-feature-grid,
  .voice-use-grid,
  .voice-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .voice-nav,
  .voice-header-cta {
    display: none !important;
  }

  .voice-mobile-toggle {
    display: flex;
  }

  .voice-hero-grid {
    grid-template-columns: 1fr;
  }

  .voice-hero-content {
    max-width: 720px;
  }

  .voice-hero-visual {
    min-height: 580px;
  }

  .voice-contact-grid {
    grid-template-columns: 1fr;
  }

  .voice-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .ai-voice-page .container {
    width: calc(100% - 32px);
  }

  .voice-hero {
    padding: 60px 0;
  }

  .voice-hero h1 {
    font-size: 40px !important;

    letter-spacing: -1.8px;
  }

  .voice-hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .voice-btn {
    width: 100%;
  }

  .voice-trust {
    flex-direction: column;

    gap: 10px;
  }

  .voice-hero-visual {
    min-height: 500px;
  }

  .voice-phone {
    transform: scale(0.82);
  }

  .voice-orbit-one {
    width: 340px;

    height: 340px;
  }

  .voice-orbit-two {
    width: 440px;

    height: 440px;
  }

  .voice-floating-card {
    min-width: 155px;

    padding: 10px;
  }

  .voice-card-one {
    left: -5px;
    top: 70px;
  }

  .voice-card-two {
    right: -5px;
    top: 120px;
  }

  .voice-card-three {
    right: -5px;
    bottom: 50px;
  }

  .voice-capability-grid,
  .voice-feature-grid,
  .voice-use-grid,
  .voice-process-grid {
    grid-template-columns: 1fr;
  }

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

  .voice-form-grid {
    grid-template-columns: 1fr;
  }

  .voice-contact-form {
    padding: 24px;
  }

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

  .voice-footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }
}
/* Main sticky header */
.agentic-page .agentic-header {
  position: sticky !important;
  position: -webkit-sticky !important;

  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  width: 100% !important;

  z-index: 999999 !important;

  background: rgba(255, 255, 255, 0.97) !important;

  border-bottom: 1px solid #e3e8f2 !important;

  box-shadow: 0 4px 20px rgba(7, 20, 92, 0.08) !important;

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

/* Prevent parent elements from breaking sticky */
.agentic-page,
.agentic-page > header,
.agentic-page > main {
  transform: none !important;
}

/* Header content */
.agentic-page .agentic-header-inner {
  min-height: 76px !important;

  display: flex !important;
  align-items: center !important;

  position: relative !important;

  z-index: 2 !important;
}
