/* ========================================
   ARYtech Static Site - Complete CSS
   Enterprise AI Landing Page
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Light Theme Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(216, 50%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(216, 50%, 10%);
  --primary: hsl(216, 50%, 10%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(220, 20%, 97%);
  --secondary-foreground: hsl(216, 50%, 10%);
  --muted: hsl(220, 20%, 96%);
  --muted-foreground: hsl(216, 20%, 46%);
  --accent: hsl(6, 100%, 68%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 20%, 90%);
  --input: hsl(220, 20%, 90%);
  --ring: hsl(216, 50%, 10%);
  --radius: 0.75rem;
  
  /* Brand Colors */
  --navy-deep: hsl(216, 50%, 10%);
  --navy-medium: hsl(216, 45%, 20%);
  --navy-light: hsl(216, 40%, 30%);
  --coral: hsl(6, 100%, 68%);
  --coral-hover: hsl(6, 100%, 60%);
  --surface: hsl(0, 0%, 100%);
  --surface-2: hsl(220, 20%, 98%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px -2px hsla(216, 50%, 10%, 0.08);
  --shadow-md: 0 8px 24px -4px hsla(216, 50%, 10%, 0.12);
  --shadow-lg: 0 16px 48px -8px hsla(216, 50%, 10%, 0.16);
  --shadow-coral: 0 8px 32px -4px hsla(6, 100%, 68%, 0.35);
  
  /* Image Overlay */
  --image-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
}

/* Dark Theme */
.theme-dark {
  --background: hsl(216, 60%, 5%);
  --foreground: hsl(220, 20%, 97%);
  --card: hsl(216, 55%, 11%);
  --card-foreground: hsl(220, 20%, 97%);
  --secondary: hsl(216, 50%, 8%);
  --secondary-foreground: hsl(220, 20%, 97%);
  --muted: hsl(216, 45%, 14%);
  --muted-foreground: hsl(220, 15%, 65%);
  --border: hsl(216, 40%, 18%);
  --input: hsl(216, 40%, 18%);
  --ring: hsl(6, 100%, 68%);
  --navy-deep: hsl(216, 60%, 5%);
  --navy-medium: hsl(216, 55%, 11%);
  --navy-light: hsl(216, 50%, 18%);
  --surface: hsl(216, 55%, 11%);
  --surface-2: hsl(216, 50%, 14%);
  --shadow-sm: 0 2px 8px -2px hsla(0, 0%, 0%, 0.3);
  --shadow-md: 0 8px 24px -4px hsla(0, 0%, 0%, 0.4);
  --shadow-lg: 0 16px 48px -8px hsla(0, 0%, 0%, 0.5);
  --shadow-coral: 0 8px 32px -4px hsla(6, 100%, 68%, 0.25);
  --image-overlay: linear-gradient(180deg, rgba(7, 20, 38, 0.35) 0%, rgba(7, 20, 38, 0.75) 100%);
}

.theme-dark body {
  font-size: 1.0125rem;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cal Sans', system-ui, sans-serif;
  line-height: 1.2;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Hide scrollbars */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.w-full { width: 100%; }
.text-coral { color: var(--coral); }
.text-white { color: white; }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }

.hidden-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hidden-mobile { display: block; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-coral {
  background: var(--coral);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  background: var(--coral-hover);
  box-shadow: 0 12px 40px -4px hsla(6, 100%, 68%, 0.45);
  transform: translateY(-2px);
}

.btn-outline-coral {
  background: transparent;
  color: var(--coral);
  border: 1.5px solid var(--coral);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-outline-coral:hover {
  background: hsla(6, 100%, 68%, 0.1);
}

.btn-outline-navy {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 1.5rem;
}

.btn-outline-navy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  min-height: 48px;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: 52px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  min-height: 36px;
}

.btn-rounded {
  border-radius: 9999px;
}

/* ========== FORM ELEMENTS ========== */
.form-input {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px hsla(6, 100%, 68%, 0.15);
}

.form-textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--foreground);
  font-size: 0.875rem;
  resize: none;
  transition: all 0.3s ease;
}

.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px hsla(6, 100%, 68%, 0.15);
}

/* Dark mode form styles */
.theme-dark .form-input,
.theme-dark .form-textarea {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.theme-dark .form-input::placeholder,
.theme-dark .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ========== BADGES ========== */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-coral {
  background: hsla(6, 100%, 68%, 0.1);
  color: var(--coral);
}

.badge-coral-light {
  background: hsla(6, 100%, 68%, 0.2);
  color: var(--coral);
}

.badge-coral-outline {
  background: transparent;
  border: 1px solid var(--coral);
  color: var(--coral);
}

.badge-navy {
  background: hsla(216, 50%, 10%, 0.1);
  color: var(--navy-deep);
}

.theme-dark .badge-navy {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* ========== SECTION STYLES ========== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 3rem; }
}

@media (min-width: 1024px) {
  .section-header { margin-bottom: 4rem; }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.25rem; }
}

.section-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .section-subtitle { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .section-subtitle { font-size: 1.125rem; }
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .section-cta { margin-top: 3rem; }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  background: transparent;
  transition: all 0.5s ease;
}

@media (min-width: 640px) {
  .header { height: 64px; }
}

.header.scrolled {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

@media (min-width: 640px) {
  .logo { height: 28px; }
}

@media (min-width: 1024px) {
  .logo { height: 36px; }
}

.header.scrolled .logo {
  filter: none;
}

.theme-dark .header.scrolled .logo {
  filter: brightness(0) invert(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .header-actions { gap: 0.625rem; }
}

@media (min-width: 1024px) {
  .header-actions { gap: 0.75rem; }
}

.btn-schedule {
  display: none;
}

@media (min-width: 640px) {
  .btn-schedule { display: inline-flex; }
}

.header:not(.scrolled) .btn-schedule {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.header:not(.scrolled) .btn-schedule:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ========== THEME TOGGLE ========== */
.theme-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  border-radius: 9999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.header.scrolled .theme-toggle {
  background: var(--muted);
  border-color: var(--border);
}

.theme-toggle-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.theme-toggle-icon.sun {
  left: 6px;
  color: rgba(255, 255, 255, 0.4);
}

.theme-toggle-icon.moon {
  right: 6px;
  color: rgba(255, 255, 255, 0.4);
}

.theme-light .theme-toggle-icon.sun {
  color: #f59e0b;
}

.theme-dark .theme-toggle-icon.moon {
  color: #60a5fa;
}

.header.scrolled .theme-toggle-icon.sun {
  color: var(--muted-foreground);
}

.header.scrolled .theme-toggle-icon.moon {
  color: var(--muted-foreground);
}

.header.scrolled .theme-light .theme-toggle-icon.sun {
  color: #f59e0b;
}

.header.scrolled .theme-dark .theme-toggle-icon.moon {
  color: #60a5fa;
}

.theme-toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.theme-dark .theme-toggle-knob {
  left: calc(100% - 28px);
  background: var(--navy-deep);
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.4);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding-top: 96px; }
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(7, 20, 38, 0.85) 0%,
    rgba(7, 20, 38, 0.70) 40%,
    rgba(7, 20, 38, 0.50) 100%
  );
}

@media (min-width: 640px) {
  .hero-overlay {
    background: linear-gradient(to right, 
      rgba(7, 20, 38, 0.80) 0%,
      rgba(7, 20, 38, 0.60) 40%,
      rgba(7, 20, 38, 0.40) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .hero-content { padding: 3rem 0 6rem; }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: calc(100vh - 160px);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    min-height: calc(100vh - 200px);
  }
}

.hero-left {
  color: white;
  text-align: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-left { text-align: left; }
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--coral);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .eyebrow-pill {
    padding: 0.625rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: subtlePulse 2s ease-in-out infinite;
}

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 640px) {
  .eyebrow-text { font-size: 0.8125rem; }
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 4rem; }
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-ctas {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}

.btn-portfolio {
  display: none;
}

@media (min-width: 640px) {
  .btn-portfolio { display: inline-flex; }
}

.hero-chips-mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .hero-chips-mobile { display: none; }
}

.chip {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.hero-indicators {
  display: none;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-indicators { display: flex; }
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.indicator.active {
  width: 32px;
  background: var(--coral);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-right {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-right { align-self: center; }
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .hero-form-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-form-card { padding: 2.5rem; }
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .form-title { font-size: 1.875rem; }
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-form { gap: 1rem; }
}

.hero-form .form-input,
.hero-form .form-textarea {
  background: white;
  border-color: #e5e7eb;
  color: #1f2937;
}

.hero-form .form-input::placeholder,
.hero-form .form-textarea::placeholder {
  color: #6b7280;
}

.theme-dark .hero-form .form-input,
.theme-dark .hero-form .form-textarea {
  background: #1a2744;
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.theme-dark .hero-form .form-input::placeholder,
.theme-dark .hero-form .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.phone-row {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  height: 48px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .country-code { padding: 0 1rem; }
}

.theme-dark .country-code {
  background: #1a2744;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
  .form-trust {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

/* ========== TRUST SIGNALS ========== */
.trust-signals {
  padding: 2.5rem 0;
  background: var(--secondary);
  overflow: hidden;
}

@media (min-width: 640px) {
  .trust-signals { padding: 3.5rem 0; }
}

@media (min-width: 1024px) {
  .trust-signals { padding: 5rem 0; }
}

.trust-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .trust-title { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .trust-title {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

.logos-slider {
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll-logos 30s linear infinite;
  width: fit-content;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 140px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .logo-item {
    height: 70px;
    width: 160px;
  }
}

@media (min-width: 1024px) {
  .logo-item {
    height: 80px;
    width: 180px;
  }
}

.logo-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(1) brightness(0.7); */
  /* opacity: 0.8; */
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Specific adjustments for new SVGs */
.logo-item img[src*="ARY_Laguna.svg"],
.logo-item img[src*="ARY_News.svg"],
.logo-item img[src*="QTV-TUTOR-LOGO.svg"] {
  transform: scale(1.5);
}


.logo-item img[src*="ARYPlus.png"] {
  transform: scale(0.7);
}

.logo-item:hover img[src*="ARY_Laguna.svg"],
.logo-item:hover img[src*="ARY_News.svg"],
.logo-item:hover img[src*="QTV-TUTOR-LOGO.svg"] {
  transform: scale(1.6);
}

.logo-item:hover img[src*="ARYPlus.png"] {
  transform: scale(0.8);
}


/* ========== METRICS SECTION ========== */
.metrics {
  padding: 4rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .metrics { padding: 6rem 0; }
}

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

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.metric-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--secondary);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .metric-card { padding: 2rem; }
}

.metric-card:hover {
  box-shadow: var(--shadow-md);
}

.metric-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  background: hsla(6, 100%, 68%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.metric-value {
  font-family: 'Cal Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .metric-value { font-size: 2.25rem; }
}

.metric-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .metric-label { font-size: 1rem; }
}

/* ========== VALUE PROPOSITION ========== */
.value-proposition {
  padding: 3rem 0;
  background: var(--secondary);
}

@media (min-width: 640px) {
  .value-proposition { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .value-proposition { padding: 8rem 0; }
}

.value-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .value-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .value-cards-grid {
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
}

.value-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  border-left: 4px solid hsla(6, 100%, 68%, 0.7);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .value-card {
    padding: 1.75rem;
    border-radius: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .value-card { padding: 2.25rem; }
}

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

.value-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--muted);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .value-badge {
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1.25rem;
  }
}

/* .value-badge svg {
  color: var(--navy-deep);
} */

.value-card:hover .value-badge svg {
  color: var(--coral);
}

.value-badge span {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .value-badge span { font-size: 0.75rem; }
}

.value-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .value-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .value-title { font-size: 1.5rem; }
}

.value-card:hover .value-title {
  color: var(--coral);
}

.theme-dark .value-card:hover .value-title {
  color: var(--coral);
}

.value-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .value-desc {
    -webkit-line-clamp: none;
    overflow: visible;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .value-desc { font-size: 1rem; }
}

.value-outcome {
  display: inline-flex;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  background: hsla(6, 100%, 68%, 0.08);
  border: 1px solid hsla(6, 100%, 68%, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .value-outcome {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.value-card:hover .value-outcome {
  background: hsla(6, 100%, 68%, 0.12);
  border-color: hsla(6, 100%, 68%, 0.4);
}

/* ========== COMPARISON SECTION ========== */
.comparison-section {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .comparison-section {
    border-radius: 1.5rem;
    margin-bottom: 3rem;
  }
}

.comparison-header {
  text-align: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--muted), transparent);
}

@media (min-width: 640px) {
  .comparison-header { padding: 2rem; }
}

@media (min-width: 1024px) {
  .comparison-header { padding: 2.5rem; }
}

.comparison-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .comparison-header h3 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  .comparison-header h3 { font-size: 1.875rem; }
}

.comparison-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .comparison-header p { font-size: 1rem; }
}

.comparison-columns {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 768px) {
  .comparison-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-col {
  padding: 1.25rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .comparison-col { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .comparison-col { padding: 2.5rem; }
}

.arytech-col {
  background: linear-gradient(to bottom right, 
    hsla(216, 50%, 10%, 0.06), 
    hsla(216, 50%, 10%, 0.12)
  );
}

.theme-dark .arytech-col {
  background: linear-gradient(to bottom right, 
    hsla(216, 50%, 20%, 0.2), 
    hsla(216, 50%, 20%, 0.3)
  );
}

.vendor-col {
  background: linear-gradient(to bottom right, 
    hsla(0, 0%, 50%, 0.05), 
    hsla(0, 0%, 50%, 0.1)
  );
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .vendor-col {
    border-top: none;
    border-left: 1px solid var(--border);
  }
}

.theme-dark .vendor-col {
  background: linear-gradient(to bottom right, 
    hsla(0, 0%, 40%, 0.1), 
    hsla(0, 0%, 40%, 0.15)
  );
  border-color: rgba(255, 255, 255, 0.1);
}

.comparison-divider {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .comparison-divider { display: block; }
}

.comparison-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    transparent, 
    hsla(6, 100%, 68%, 0.4), 
    transparent
  );
  animation: pulseGlow 3s ease-in-out infinite;
}

.comparison-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    var(--border), 
    var(--border)
  );
}

.col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .col-header { margin-bottom: 2rem; }
}

.col-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .col-icon {
    width: 44px;
    height: 44px;
  }
}

.col-icon.check {
  background: var(--navy-deep);
  color: white;
}

.theme-dark .col-icon.check {
  background: var(--primary);
}

.col-icon.x {
  background: hsl(0, 80%, 95%);
  color: hsl(0, 70%, 50%);
}

.theme-dark .col-icon.x {
  background: hsla(0, 70%, 50%, 0.2);
  color: hsl(0, 70%, 60%);
}

.col-header h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-deep);
}

@media (min-width: 640px) {
  .col-header h4 { font-size: 1.25rem; }
}

.theme-dark .arytech-col .col-header h4 {
  color: white;
}

.vendor-col .col-header h4 {
  color: hsl(216, 10%, 40%);
}

.theme-dark .vendor-col .col-header h4 {
  color: hsl(220, 10%, 70%);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .comparison-list { gap: 1rem; }
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem;
  margin: -0.375rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: default;
}

@media (min-width: 640px) {
  .comparison-list li { gap: 0.75rem; }
}

.arytech-item:hover {
  background: hsla(120, 60%, 50%, 0.05);
}

.theme-dark .arytech-item:hover {
  background: hsla(120, 60%, 50%, 0.1);
}

.arytech-item:hover span:first-child {
  background: hsla(120, 60%, 50%, 0.25);
  box-shadow: 0 0 12px hsla(120, 60%, 50%, 0.3);
}

.vendor-item:hover {
  background: hsla(0, 70%, 50%, 0.05);
}

.theme-dark .vendor-item:hover {
  background: hsla(0, 70%, 50%, 0.1);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsla(120, 60%, 50%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .check-icon {
    width: 24px;
    height: 24px;
  }
}

.theme-dark .check-icon {
  background: hsla(120, 60%, 50%, 0.2);
}

.check-icon svg {
  color: hsl(120, 60%, 40%);
}

.theme-dark .check-icon svg {
  color: hsl(120, 60%, 60%);
}

.x-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsl(0, 80%, 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .x-icon {
    width: 24px;
    height: 24px;
  }
}

.theme-dark .x-icon {
  background: hsla(0, 70%, 50%, 0.2);
}

.x-icon svg {
  color: hsl(0, 70%, 50%);
}

.theme-dark .x-icon svg {
  color: hsl(0, 70%, 60%);
}

.arytech-item span:last-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.theme-dark .arytech-item span:last-child {
  color: white;
}

.arytech-item:hover span:last-child {
  color: hsl(120, 50%, 30%);
}

.theme-dark .arytech-item:hover span:last-child {
  color: hsl(120, 60%, 70%);
}

.vendor-item span:last-child {
  font-size: 0.875rem;
  color: hsl(216, 10%, 40%);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.theme-dark .vendor-item span:last-child {
  color: hsla(220, 10%, 70%, 0.85);
}

.vendor-item:hover span:last-child {
  color: hsl(0, 70%, 45%);
}

.theme-dark .vendor-item:hover span:last-child {
  color: hsl(0, 70%, 60%);
}

/* Tooltip styles */
.arytech-item {
  position: relative;
}

.arytech-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 0.75rem;
  background: var(--navy-deep);
  color: white;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.4;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 10;
  max-width: 200px;
  white-space: normal;
  box-shadow: var(--shadow-lg);
}

.theme-dark .arytech-item::after {
  background: var(--card);
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .arytech-item:hover::after {
    opacity: 1;
    visibility: visible;
  }
}

.comparison-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comparison-cta .btn {
  padding: 0.875rem 2rem;
}

@media (min-width: 640px) {
  .comparison-cta .btn {
    padding: 1rem 2.5rem;
    width: auto;
  }
}

.trust-rotator {
  height: 32px;
  margin-top: 1rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .trust-rotator { margin-top: 1.25rem; }
}

.trust-rotator p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  animation: fadeIn 0.35s ease-out;
}

@media (min-width: 640px) {
  .trust-rotator p { font-size: 0.875rem; }
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 3rem 0;
  background: var(--background);
}

@media (min-width: 640px) {
  .services { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .services { padding: 6rem 0; }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 640px) {
  .service-card { border-radius: 1rem; }
}

.service-card:hover {
  border-color: hsla(6, 100%, 68%, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .service-image { height: 192px; }
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    hsla(216, 50%, 10%, 0.6), 
    hsla(216, 50%, 10%, 0.2), 
    transparent
  );
}

.theme-dark .service-image::after {
  background: linear-gradient(to top, 
    hsla(216, 50%, 10%, 0.8), 
    hsla(216, 50%, 10%, 0.4), 
    transparent
  );
}

.service-content {
  padding: 1rem;
}

@media (min-width: 640px) {
  .service-content { padding: 1.5rem; }
}

.service-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .service-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

.service-card:hover .service-content h3 {
  color: var(--coral);
}

.service-content p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .service-content p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--coral);
  transition: gap 0.3s ease;
}

@media (min-width: 640px) {
  .learn-more { font-size: 0.875rem; }
}

.learn-more svg {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .learn-more {
  gap: 0.5rem;
}

.service-card:hover .learn-more svg {
  opacity: 1;
}

/* ========== INDUSTRIES SECTION ========== */
.industries {
  padding: 3rem 0;
  background: var(--secondary);
}

@media (min-width: 640px) {
  .industries { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .industries { padding: 6rem 0; }
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.industry-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s ease;
}

@media (min-width: 640px) {
  .industry-card { border-radius: 1rem; }
}

.industry-card:hover {
  border-color: hsla(6, 100%, 68%, 0.5);
  box-shadow: 0 20px 40px -10px hsla(6, 100%, 68%, 0.1);
  transform: scale(1.08);
  z-index: 20;
}

.industry-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
  transform: scale(1.05);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.8), 
    rgba(0, 0, 0, 0.4), 
    transparent
  );
  transition: opacity 0.15s ease;
}

.industry-card:hover .industry-overlay {
  opacity: 1;
}

.industry-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.industry-title-overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .industry-title-overlay h3 { font-size: 1.125rem; }
}

.industry-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  transition: all 0.12s ease;
}

@media (min-width: 640px) {
  .industry-subtitle { font-size: 0.875rem; }
}

.industry-card:hover .industry-subtitle {
  opacity: 0;
  transform: translateY(-4px);
}

.industry-hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--card);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.18s ease;
  z-index: 10;
}

.industry-card:hover .industry-hover-content {
  transform: translateY(0);
  opacity: 1;
}

.hover-section {
  margin-bottom: 0.5rem;
}

.hover-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hover-section p {
  font-size: 0.75rem;
  color: var(--foreground);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hover-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.kpi-pill {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: hsla(6, 100%, 68%, 0.1);
  color: var(--coral);
  font-size: 0.625rem;
  font-weight: 500;
}

.theme-dark .kpi-pill {
  background: hsla(6, 100%, 68%, 0.2);
}

.industry-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  transition: opacity 0.12s ease;
}

@media (min-width: 640px) {
  .industry-footer { padding: 0.875rem 1rem; }
}

.industry-card:hover .industry-footer {
  opacity: 0;
}

.industry-footer span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .industry-footer span { font-size: 0.875rem; }
}

.industry-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: hsla(6, 100%, 68%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
  transition: all 0.15s ease;
}

.theme-dark .industry-arrow {
  background: hsla(6, 100%, 68%, 0.2);
}

/* ========== TECH STACK ========== */
.tech-stack {
  padding: 3rem 0;
  background: var(--background);
}

@media (min-width: 640px) {
  .tech-stack { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .tech-stack { padding: 6rem 0; }
}

.tech-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .tech-tabs { gap: 0.75rem; }
}

.tech-tab {
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  background: var(--muted);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .tech-tab {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

.tech-tab:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.tech-tab.active {
  background: var(--navy-deep);
  color: white;
}

.theme-dark .tech-tab.active {
  background: var(--primary);
}

.tech-content {
  position: relative;
}

.tech-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.tech-grid.active {
  display: grid;
}

.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 640px) {
  .tech-card {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
    border-radius: 1rem;
  }
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tech-color, var(--coral));
}

.tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tech-color, var(--coral));
  background: color-mix(in srgb, var(--tech-color, var(--coral)) 10%, transparent);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .tech-icon {
    width: 64px;
    height: 64px;
    font-size: 1.25rem;
  }
}

.tech-card:hover .tech-icon {
  background: color-mix(in srgb, var(--tech-color, var(--coral)) 20%, transparent);
  transform: scale(1.1);
}

.tech-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
}

@media (min-width: 640px) {
  .tech-card span { font-size: 0.875rem; }
}

/* ========== PREBUILT MODELS ========== */
.prebuilt-models {
  padding: 3rem 0;
  background: var(--secondary);
}

@media (min-width: 640px) {
  .prebuilt-models { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .prebuilt-models { padding: 6rem 0; }
}

.models-grid-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .models-grid-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .models-grid-top { grid-template-columns: repeat(4, 1fr); }
}

.model-card {
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .model-card { border-radius: 1rem; }
}

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

.model-card .model-image {
  height: 160px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .model-card .model-image { height: 200px; }
}

.model-card .model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.05);
}

.model-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .model-card h3 { font-size: 1.125rem; }
}

.model-card > p {
  padding: 0 1rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .model-card > p {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }
}

.model-card .btn {
  margin: 0 1rem 1rem;
  width: calc(100% - 2rem);
}

.models-grid-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .models-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.model-card-horizontal {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .model-card-horizontal {
    flex-direction: row;
    border-radius: 1rem;
  }
}

.model-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.model-card-horizontal .model-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .model-card-horizontal .model-image {
    width: 280px;
    height: auto;
    flex-shrink: 0;
  }
}

.model-card-horizontal .model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card-horizontal:hover .model-image img {
  transform: scale(1.05);
}

.model-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 640px) {
  .model-content { padding: 1.5rem; }
}

.model-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .model-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

.model-content p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .model-content p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

/* ========== FAILURE RATE SECTION ========== */
.failure-rate {
  padding: 3rem 0;
  background: var(--navy-deep);
}

@media (min-width: 640px) {
  .failure-rate { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .failure-rate { padding: 6rem 0; }
}

.failure-rate .section-header {
  max-width: 750px;
}

.prevention-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .prevention-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .prevention-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prevention-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: hsla(216, 50%, 15%, 0.8);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .prevention-card {
    padding: 2rem;
    border-radius: 1rem;
  }
}

.prevention-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
  box-shadow: 0 0 30px hsla(6, 100%, 68%, 0.15);
}

.prevention-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: hsla(6, 100%, 68%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

@media (min-width: 640px) {
  .prevention-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }
}

.prevention-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .prevention-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

.prevention-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .prevention-card p { font-size: 0.875rem; }
}

.micro-trust {
  text-align: center;
  font-size: 0.75rem;
  color: var(--coral);
  margin-top: 2rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .micro-trust {
    font-size: 0.875rem;
    margin-top: 3rem;
  }
}

/* ========== PROCESS SECTION ========== */
.process {
  padding: 3rem 0;
  background: var(--background);
}

@media (min-width: 640px) {
  .process { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .process { padding: 6rem 0; }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .process-step { padding: 2rem; }
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: hsla(6, 100%, 68%, 0.1);
  color: var(--coral);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .step-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  box-shadow: 0 0 30px hsla(216, 50%, 10%, 0.15);
}

@media (min-width: 640px) {
  .step-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 1.25rem;
  }
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .process-step h3 { font-size: 1.25rem; }
}

.step-context {
  font-size: 0.75rem;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .step-desc { font-size: 0.875rem; }
}

.cta-helper {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .cta-helper { font-size: 0.875rem; }
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
  padding: 3rem 0;
  background: var(--background);
}

@media (min-width: 640px) {
  .portfolio { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .portfolio { padding: 6rem 0; }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

.case-study-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: hsla(6, 100%, 68%, 0.3);
}

.case-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .case-image { height: 220px; }
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-image img {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.9), 
    rgba(0, 0, 0, 0.5), 
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.case-category {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .case-category { font-size: 0.75rem; }
}

.case-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .case-overlay h3 { font-size: 1.5rem; }
}

.case-customer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.case-content {
  padding: 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.case-study-card:hover .case-content {
  max-height: 500px;
  opacity: 1;
}

.case-section {
  margin-bottom: 0.75rem;
}

.case-section h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.case-section p {
  font-size: 0.75rem;
  color: var(--foreground);
  line-height: 1.5;
}

.case-solution p {
  color: var(--muted-foreground);
}

.case-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.impact-pill {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: hsla(6, 100%, 68%, 0.1);
  color: var(--coral);
  font-size: 0.625rem;
  font-weight: 600;
}

.case-tags, .case-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.case-tags span, .case-tech span {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
}

.case-tags span {
  background: hsla(216, 50%, 10%, 0.1);
  color: var(--navy-deep);
}

.theme-dark .case-tags span {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.case-tech span {
  background: var(--muted);
  color: var(--muted-foreground);
}

.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hover-hint {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  font-style: italic;
}

.case-study-card:hover .hover-hint {
  display: none;
}

/* ========== FAQ SECTION ========== */
.faq {
  padding: 3rem 0;
  background: var(--secondary);
}

@media (min-width: 640px) {
  .faq { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .faq { padding: 6rem 0; }
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .faq-grid { gap: 1rem; }
}

.faq-item {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: hsla(6, 100%, 68%, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s ease;
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

.faq-item.open .faq-question {
  color: var(--coral);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .faq-answer p { padding: 0 1.5rem 1.25rem; }
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .final-cta { padding: 6rem 0; }
}

.cta-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(7, 20, 38, 0.95), 
    rgba(7, 20, 38, 0.80)
  );
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.cta-left {
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-left { text-align: left; }
}

.cta-left h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-left h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-left h2 { font-size: 3rem; }
}

.cta-left > p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-left > p { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .cta-left > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.cta-trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .cta-trust-signals {
    justify-content: flex-start;
    margin-bottom: 2rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.trust-item span {
  font-size: 0.875rem;
  color: white;
  font-weight: 500;
}

.cta-desktop-btn {
  display: none;
}

@media (min-width: 1024px) {
  .cta-desktop-btn { display: inline-flex; }
}

.cta-form-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.theme-dark .cta-form-card {
  background: var(--card);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .cta-form-card {
    padding: 2rem;
    border-radius: 1.25rem;
  }
}

.form-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.theme-dark .form-content h3 {
  color: white;
}

@media (min-width: 640px) {
  .form-content h3 { font-size: 1.5rem; }
}

.form-content > p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.theme-dark .form-content > p {
  color: var(--muted-foreground);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-form { gap: 1rem; }
}

.cta-form .form-input,
.cta-form .form-textarea {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #1f2937;
}

.cta-form .form-input::placeholder,
.cta-form .form-textarea::placeholder {
  color: #9ca3af;
}

.theme-dark .cta-form .form-input,
.theme-dark .cta-form .form-textarea {
  background: #1a2744;
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.theme-dark .cta-form .form-input::placeholder,
.theme-dark .cta-form .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: hsla(120, 60%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(120, 60%, 40%);
}

.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  /* color: var(--navy-deep); */
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ========== LOCATIONS SECTION ========== */
.locations {
  padding: 3rem 0;
  background: var(--secondary);
}

@media (min-width: 640px) {
  .locations { padding: 4rem 0; }
}

@media (min-width: 1024px) {
  .locations { padding: 6rem 0; }
}

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

@media (min-width: 768px) {
  .locations-grid { gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
}

.location-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}

@media (min-width: 640px) {
  .location-card { border-radius: 1rem; }
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.7), 
    rgba(0, 0, 0, 0.3)
  );
}

.location-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-time-panel {
  text-align: center;
  padding: 1.25rem;
  background: rgba(20, 24, 32, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 0.75rem;
}

@media (min-width: 640px) {
  .location-time-panel { padding: 1.5rem; }
}

.location-time {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .location-time { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .location-time { font-size: 3rem; }
}

.location-time-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .location-time-panel h3 { font-size: 1.125rem; }
}

@media (min-width: 1024px) {
  .location-time-panel h3 { font-size: 1.25rem; }
}

.location-time-panel p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .location-time-panel p { font-size: 0.875rem; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-deep);
  padding: 3rem 0 0;
}

@media (min-width: 1024px) {
  .footer { padding: 4rem 0 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
  }
}

.footer-col {
  color: white;
}

.footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--coral);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--coral);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .footer-col h4 { font-size: 1rem; }
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--coral);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.newsletter-form .form-input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.newsletter-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.social-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-block:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-block.linkedin:hover {
  border-color: #0A66C2;
  box-shadow: 0 0 20px rgba(10, 102, 194, 0.3);
}

.social-block.whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.wa-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.social-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

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

@media (min-width: 640px) {
  .footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
  }
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-bottom p { font-size: 0.875rem; }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

@media (min-width: 640px) {
  .footer-bottom-links a { font-size: 0.875rem; }
}

.footer-bottom-links a:hover {
  color: var(--coral);
}
