:root {
  --bg: #040B1A;
  --bg-2: #070F20;
  --surface: #0C1425;
  --surface-2: #111B2E;
  --cyan: #00f0ff;
  --magenta: #ff00ff;
  --lime: #b7ff00;
  --yellow: #FFDD00;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --radius: 16px;
  --font: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--magenta);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background-color: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 9999px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--cyan);
  color: #000;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.7);
}

.btn-secondary {
  background-color: transparent;
  color: var(--magenta);
  border: 2px solid var(--magenta);
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.3);
}

.btn-secondary:hover {
  background-color: var(--magenta);
  color: #000;
  box-shadow: 0 0 24px rgba(255, 0, 255, 0.5);
}

.btn-gradient {
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 0, 255, 0.4);
}

.btn-gradient:hover {
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.6);
}

.btn-glow {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}

.btn-glow:hover {
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(4, 11, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
}

.logo span {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(70vw, 300px);
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 105;
}

.nav.open {
  transform: translateX(0);
}

.nav a {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a:hover {
  color: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-select {
  background-color: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
}

.lang-select:focus {
  border-color: var(--cyan);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(4, 11, 26, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 104;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 30%),
              radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 30%),
              var(--bg);
}

.hero .container {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 9999px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
}

.hero-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-title .neon {
  color: var(--cyan);
  text-shadow: 0 0 24px var(--cyan);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 24px 0 32px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.phone-frame {
  width: 260px;
  height: 520px;
  margin: 0 auto;
  border-radius: 40px;
  border: 4px solid var(--cyan);
  background-color: var(--surface);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background-color: var(--bg);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-2), var(--bg));
}

.phone-screen h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 12px;
}

.phone-screen p {
  color: var(--muted);
  font-size: 0.95rem;
}

.browser-frame {
  width: 100%;
  max-width: 720px;
  border: 2px solid var(--cyan);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: var(--bg-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background-color: #ff5f56;
}

.dot-yellow {
  background-color: #ffbd2e;
}

.dot-green {
  background-color: #27c93f;
}

.browser-title {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.browser-content {
  min-height: 320px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-2), var(--bg));
}

.browser-content h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px;
}

.browser-content p {
  color: var(--muted);
  font-size: 0.95rem;
}

.features {
  padding: 80px 0;
  background-color: var(--bg-2);
}

.features-grid {
  display: grid;
  gap: 24px;
}

.feature-card {
  background-color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:nth-child(1):hover {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
}

.feature-card:nth-child(2):hover {
  border-color: var(--magenta);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.25);
}

.feature-card:nth-child(3):hover {
  border-color: var(--lime);
  box-shadow: 0 0 30px rgba(183, 255, 0, 0.25);
}

.feature-card:nth-child(4):hover {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(255, 221, 0, 0.25);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--lime);
  filter: drop-shadow(0 0 8px var(--lime));
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.screenshots {
  padding: 80px 0;
  background-color: var(--bg);
}

.features .section-header {
  text-align: left;
}

.screenshots .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}

.features .section-subtitle,
.screenshots .section-subtitle {
  margin: 0;
}

.screenshot-arrows {
  display: flex;
  gap: 10px;
}

.screenshot-arrow {
  background-color: var(--surface);
  color: var(--cyan);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.screenshot-arrow:hover {
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
}

.slides {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.slides::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 85%;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  scroll-snap-align: start;
}

main > section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pricing-toggle {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 6px;
  background: rgba(10, 10, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.18);
  width: min(100%, 720px);
}

.pricing-toggle-option {
  flex: 1 1 0;
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 16px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  white-space: nowrap;
  transition: all 0.25s;
}

.pricing-toggle-option.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.55), 0 0 10px rgba(0, 240, 255, 0.35);
}

.pricing-toggle-option:hover:not(.active) {
  color: var(--text);
}

@media (max-width: 640px) {
  .pricing-toggle {
    flex-wrap: wrap;
    border-radius: 24px;
    width: 100%;
  }

  .pricing-toggle-option {
    flex: 1 1 100%;
    padding: 14px 18px;
    font-size: 1rem;
    white-space: normal;
  }
}

.billing-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 8px;
  min-height: 1.2em;
}

.billing-note:empty {
  display: none;
}

.faq {
  padding: 100px 0;
  background-color: var(--bg);
}

.faq .section-header {
  margin-bottom: 48px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--cyan);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 28px 24px 28px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 640px) {
  .faq-question {
    font-size: 1rem;
    padding: 20px 22px;
  }
  .faq-answer {
    padding: 0 22px 20px 22px;
  }
}

.pricing {
  padding: 80px 0;
  background-color: var(--bg-2);
  font-family: 'SF Pro Display', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.pricing .section-header {
  margin-bottom: 48px;
}

.pricing-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 12px;
  line-height: 1.6;
  text-align: center;
}

.pricing-subtitle:last-of-type {
  margin-bottom: 24px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.pricing-card {
  background-color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex: 0 0 280px;
  max-width: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 28px rgba(255, 0, 255, 0.15);
}

.pricing-card.popular {
  border-color: var(--magenta);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.5), 0 0 80px rgba(0, 240, 255, 0.3);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--magenta);
  color: #000;
  padding: 5px 18px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 0 16px var(--magenta), 0 0 32px rgba(255, 0, 255, 0.6);
}

.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  text-align: center;
  font-weight: 800;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 4px;
  color: var(--cyan);
}

.price .price-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--cyan);
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.credits {
  text-align: center;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.pricing-body {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  margin-bottom: 20px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.05);
}

.pricing-body::-webkit-scrollbar {
  width: 4px;
}

.pricing-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.pricing-body::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 4px;
}

.accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}

.accordion-toggle::before {
  content: '✓';
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-right: 6px;
  text-shadow: 0 0 8px var(--lime);
}

.accordion-toggle:hover {
  color: var(--cyan);
}

.accordion-icon {
  font-size: 0.85rem;
  color: var(--cyan);
  transition: transform 0.2s;
  margin-left: auto;
}

.accordion.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion.open .accordion-content {
  max-height: 180px;
}

.accordion-content p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0 0 12px 18px;
}

.pricing-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-desc strong {
  color: var(--text);
}

.pricing-card .btn {
  margin-top: auto;
}

.devis-dialog {
  background-color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  max-width: 720px;
  width: calc(100% - 48px);
  padding: 0;
  margin: auto;
  z-index: 200;
}

.devis-dialog::backdrop {
  background: rgba(4, 11, 26, 0.85);
  backdrop-filter: blur(6px);
}

.devis-dialog h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 8px;
}

.devis-dialog .dialog-subtitle {
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}

.dialog-content {
  position: relative;
  padding: 40px 24px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.enterprise-form {
  display: grid;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.try-dialog {
  background-color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  max-width: 460px;
  width: calc(100% - 48px);
  padding: 0;
  margin: auto;
  z-index: 200;
  text-align: center;
}

.try-dialog::backdrop {
  background: rgba(4, 11, 26, 0.85);
  backdrop-filter: blur(6px);
}

.try-dialog .dialog-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 4px;
}

.try-dialog .dialog-credits {
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 16px;
}

.try-dialog p:last-of-type {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact {
  padding: 80px 0;
  background-color: var(--bg);
}

.contact-grid {
  display: grid;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background-color: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-card {
  background-color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.response-time {
  text-align: center;
}

.response-time h3 {
  color: var(--cyan);
  font-size: 1rem;
  margin-bottom: 12px;
}

.lang-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.lang-chip {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-chip:hover,
.lang-chip.active {
  color: #000;
  background-color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan));
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.info-card p {
  color: var(--muted);
}

.social-card {
  text-align: center;
}

.social-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  color: var(--cyan);
  transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
  color: var(--magenta);
  transform: scale(1.1);
}

.social-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px var(--cyan));
}

.contact-info {
  color: var(--muted);
}

.contact-info h3 {
  color: var(--text);
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 12px;
}

.footer {
  background-color: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-social {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 28px;
}

.footer-social svg {
  width: 100%;
  height: 100%;
}

.footer-facebook {
  color: #1877F2 !important;
}

.footer-facebook:hover {
  color: #1877F2 !important;
}

.footer-instagram {
  color: #E1306C !important;
}

.footer-instagram:hover {
  color: #E1306C !important;
}

.copyright {
  color: var(--muted);
  font-size: 0.85rem;
}

.page-section {
  padding: 120px 0 80px;
  background-color: var(--bg);
}

.page-section h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-section h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--lime);
}

.page-section p {
  color: var(--muted);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    height: auto;
    width: auto;
    transform: none;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 32px;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .header-actions {
    display: flex;
  }

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

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

  .phone-frame {
    margin: 0 0 0 auto;
  }
}

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

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    margin: 0;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .pricing-card .price {
    font-size: 2.2rem;
  }

  .pricing-card li {
    font-size: 0.85rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

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

  .footer-links {
    justify-content: flex-end;
  }
}
