/* =====================================================
   INSPECTAVIO - Landing Page Styles
   Bold, Industrial-Refined Aesthetic
   ===================================================== */

/* =====================================================
   Navigation
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-4) 0;
  background-color: rgba(255, 255, 255, 0);
}

.nav.nav-ready {
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-6);
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 0;
  margin-left: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}

.nav-logo-icon svg {
  width: 27px;
  height: 27px;
  color: var(--white);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--orange-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-right: auto;
  min-width: 0;
}

.nav-link {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-700);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--orange-500);
}

.nav-link:hover::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-dropdown.is-open .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 220px;
  padding: 0.45rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: var(--z-dropdown);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--navy-700);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.25;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  outline: none;
  background: rgba(249, 115, 22, 0.09);
  color: var(--orange-600);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.nav-actions .btn {
  font-size: var(--text-base);
}

.language-selector-form {
  display: flex;
  align-items: center;
  margin-left: var(--space-2);
  margin-right: 0;
  position: relative;
  flex-shrink: 0;
}

.language-selector-trigger {
  min-width: 72px;
  min-height: 34px;
  padding: 0.4rem 0.55rem 0.4rem 0.6rem;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(15, 23, 42, 0.05);
  color: var(--navy-600);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
  transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.language-selector-trigger:hover {
  background: rgba(15, 23, 42, 0.08);
  color: var(--navy-700);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28);
}

.language-selector-trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.45), 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.language-selector-text {
  white-space: nowrap;
}

.language-selector-icon {
  width: 13px;
  height: 13px;
  color: currentColor;
  transition: transform var(--transition-fast);
}

.language-selector-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 122px;
  padding: 0.35rem;
  border: none;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: var(--z-dropdown);
}

.language-selector-form.is-open .language-selector-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-selector-form.is-open .language-selector-icon {
  transform: rotate(180deg);
}

.language-option {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--navy-700);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: left;
  padding: 0.45rem 0.55rem;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.language-option:hover {
  background: rgba(15, 23, 42, 0.07);
}

.language-option:focus-visible {
  outline: none;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-600);
}

.language-option.is-active {
  color: var(--orange-600);
  background: rgba(249, 115, 22, 0.08);
}

.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--transition-base), opacity var(--transition-fast), background-color var(--transition-fast);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-32) + var(--space-2)) 0 var(--space-20);
  overflow: hidden;
  background: linear-gradient(165deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-100) 100%);
}

/* Geometric Background Elements */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-bg-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--orange-300);
  top: -200px;
  right: -100px;
  opacity: 0.3;
}

.hero-bg-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--navy-500);
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
}

/* Diagonal Cut */
.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Grid Pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy-700);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  animation: fadeInDown 0.6s ease-out forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: var(--text-7xl);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy-900);
  margin-bottom: var(--space-6);
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title-highlight {
  position: relative;
  color: var(--orange-500);
  display: inline-block;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--orange-200);
  z-index: -1;
  transform: skewX(-12deg);
}

.hero-description {
  font-size: var(--text-xl);
  color: var(--navy-600);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-200);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

.hero-stat-value span {
  color: var(--orange-500);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--navy-500);
  margin-top: var(--space-1);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-device-cluster {
  position: relative;
  isolation: isolate;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.hero-device-cluster:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-2xl);
}

.hero-image-screen {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.hero-image-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-wrapper {
  position: absolute;
  right: -3.25rem;
  bottom: -2.35rem;
  z-index: 1;
  width: min(28%, 10.5rem);
  min-width: 8rem;
  aspect-ratio: 9 / 18.5;
  padding: 0.75rem 0.55rem;
  border-radius: 1.75rem;
  background: linear-gradient(145deg, var(--navy-950, #0f172a) 0%, var(--navy-800) 100%);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.26);
  transform: rotate(8deg);
}

.hero-phone-speaker {
  width: 2.2rem;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 auto 0.55rem;
}

.hero-phone-screen {
  height: calc(100% - 0.8rem);
  border-radius: 1.15rem;
  background: var(--white);
  overflow: hidden;
  padding: 0.8rem 0.65rem;
}

.hero-phone-appbar {
  width: 58%;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--navy-900);
  margin-bottom: 0.8rem;
}

.hero-phone-section {
  height: 1.35rem;
  border-radius: 0.45rem;
  background: var(--gray-100);
  margin-bottom: 0.45rem;
}

.hero-phone-section-active {
  background: rgba(249, 115, 22, 0.26);
}

.hero-phone-checklist {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.hero-phone-checklist span {
  display: block;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gray-200);
}

.hero-phone-checklist span:nth-child(1) {
  width: 90%;
}

.hero-phone-checklist span:nth-child(2) {
  width: 68%;
}

.hero-phone-checklist span:nth-child(3) {
  width: 78%;
}

/* Floating Elements */
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-xl);
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
  top: 20%;
  left: -60px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20%;
  right: -40px;
  animation-delay: 1s;
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.hero-float-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-900);
}

.hero-float-subtext {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* =====================================================
   Features Section
   ===================================================== */
.features {
  padding: var(--space-24) 0;
  background: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

section[id] {
  scroll-margin-top: 6.5rem;
}

.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(165deg, var(--gray-50) 0%, var(--white) 100%);
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-hero-description {
  font-size: 1.25rem;
  color: var(--navy-600);
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange-500);
}

.section-title {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--space-4);
  letter-spacing: -1px;
}

.section-description {
  font-size: var(--text-lg);
  color: var(--navy-600);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-card {
  position: relative;
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  box-shadow: var(--shadow-orange);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}

.feature-title a {
  color: inherit;
}

.feature-title a:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.feature-description {
  color: var(--navy-600);
  line-height: 1.7;
}

/* =====================================================
   How It Works Section
   ===================================================== */
.how-it-works {
  padding: var(--space-24) 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Diagonal Lines Pattern */
.how-it-works::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.02) 40px,
    rgba(255, 255, 255, 0.02) 80px
  );
  pointer-events: none;
}

.how-it-works .section-label {
  color: var(--orange-400);
}

.how-it-works .section-label::before,
.how-it-works .section-label::after {
  background: var(--orange-400);
}

.how-it-works .section-title {
  color: var(--white);
}

.how-it-works .section-description {
  color: var(--gray-400);
}

.steps-container {
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

/* Connection Line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: calc(var(--space-8) + 50px);
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400), var(--orange-500));
  opacity: 0.3;
}

.step-card {
  position: relative;
  text-align: center;
  padding: var(--space-8);
}

.step-number {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--orange-500);
  background: var(--navy-800);
  border: 2px solid var(--navy-700);
  border-radius: 50%;
  z-index: 1;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--orange-500);
  border-radius: 50%;
  opacity: 0.3;
}

.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.step-description {
  color: var(--gray-400);
  line-height: 1.7;
}

/* =====================================================
   Workflow Focus Section
   ===================================================== */
.testimonials {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-rating svg {
  width: 20px;
  height: 20px;
  color: var(--orange-500);
  fill: var(--orange-500);
}

.testimonial-content {
  font-size: var(--text-lg);
  color: var(--navy-700);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

.testimonial-info h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-900);
}

.testimonial-info p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
  padding: var(--space-24) 0;
  background: var(--white);
}

.cta-container {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange-500) 0%, transparent 70%);
  opacity: 0.15;
  transform: translate(30%, -30%);
}

.cta-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-500) 0%, transparent 70%);
  opacity: 0.1;
  transform: translate(-30%, 30%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -1px;
}

.cta-title span {
  color: var(--orange-400);
}

.cta-description {
  font-size: var(--text-lg);
  color: var(--gray-400);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--navy-950);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text span {
  color: var(--orange-500);
}

.footer-description {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.footer-company-note {
  color: var(--gray-400);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--orange-500);
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  color: var(--gray-500);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--orange-500);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-6);
}

.footer-copyright {
  color: var(--gray-500);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 680px;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  color: var(--gray-500);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--orange-500);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (min-width: 1920px) and (min-height: 1200px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: clamp(8.75rem, 10.9vh, 11.25rem);
    padding-bottom: var(--space-16);
  }

  .features {
    padding-top: var(--space-24);
  }
}

@media (max-width: 1180px) {
  .nav-menu {
    margin-left: var(--space-5);
    gap: var(--space-2);
  }

  .nav-links {
    gap: var(--space-5);
  }

  .nav-link,
  .nav-actions .btn {
    font-size: var(--text-sm);
  }

  .nav-logo-text {
    font-size: 1.42rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    margin-left: var(--space-5);
  }

  .nav-links {
    gap: var(--space-4);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-float {
    display: none;
  }

  .features-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 1100px) {
  .nav-container {
    gap: var(--space-3);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--space-4);
    right: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
    margin-left: 0;
    padding: var(--space-4);
    border: none;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    z-index: calc(var(--z-dropdown) + 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    transition: opacity var(--transition-fast), transform var(--transition-base), visibility 0s linear var(--transition-fast);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    margin: 0;
  }

  .nav-link {
    font-size: var(--text-base);
    padding: 0.125rem 0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: rgba(15, 23, 42, 0.04);
    opacity: 1;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height var(--transition-base), margin-top var(--transition-fast), padding var(--transition-fast);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 14rem;
    margin-top: var(--space-2);
    padding: 0.35rem;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-link {
    padding: 0.55rem 0.65rem;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .nav-actions .btn {
    width: 100%;
    font-size: var(--text-sm);
    justify-content: center;
  }

  .language-selector-form {
    width: 100%;
    margin: 0;
  }

  .language-selector-trigger {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0.4rem 0.6rem;
    font-size: var(--text-xs);
    justify-content: space-between;
  }

  .language-selector-menu {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    padding: 0.3rem;
  }

  .language-option {
    padding: 0.42rem 0.55rem;
  }

  .nav-mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .nav-container {
    gap: var(--space-3);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--space-4);
    right: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
    margin-left: 0;
    padding: var(--space-4);
    border: none;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    z-index: calc(var(--z-dropdown) + 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    transition: opacity var(--transition-fast), transform var(--transition-base), visibility 0s linear var(--transition-fast);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    margin: 0;
  }

  .nav-link {
    font-size: var(--text-base);
    padding: 0.125rem 0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .nav-actions .btn {
    width: 100%;
    font-size: var(--text-sm);
    justify-content: center;
  }

  .language-selector-form {
    width: 100%;
    margin: 0;
  }

  .language-selector-trigger {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0.4rem 0.6rem;
    font-size: var(--text-xs);
    justify-content: space-between;
  }

  .language-selector-menu {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    padding: 0.3rem;
  }

  .language-option {
    padding: 0.42rem 0.55rem;
  }

  .nav-mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  section[id] {
    scroll-margin-top: 5.75rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--space-24) + var(--space-2));
  }

  .hero-title {
    font-size: var(--text-5xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 22rem);
    margin: 0 auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-device-cluster,
  .hero-device-cluster:hover {
    transform: none;
  }

  .hero-image-wrapper {
    padding: var(--space-4);
  }

  .hero-phone-wrapper {
    right: -0.85rem;
    bottom: -1.5rem;
    width: 24%;
    min-width: 5.75rem;
    padding: 0.55rem 0.4rem;
    border-radius: 1.25rem;
    transform: rotate(6deg);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-6);
    align-items: center;
  }

  .hero-stat {
    text-align: center;
  }

  .cta-container {
    padding: var(--space-10) var(--space-6);
  }

  .cta-title {
    font-size: var(--text-3xl);
  }

  .cta-actions {
    flex-direction: column;
  }

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

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--space-24) + var(--space-1));
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.4rem);
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: var(--text-base);
  }

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