/* ============================
   VARIABLES & RESET
   ============================ */
:root {
  --primary: #00f0ff;
  --primary-dark: #00c4cc;
  --secondary: #00ff88;
  --accent: #ff006e;
  --dark: #0a0a0a;
  --darker: #050505;
  --card: #111111;
  --card-hover: #1a1a1a;
  --text: #e0e0e0;
  --text-muted: #888888;
  --border: rgba(0, 240, 255, 0.1);
  --glass: rgba(17, 17, 17, 0.8);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 0.75rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ============================
   LANGUAGE MODAL
   ============================ */
.lang-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 1rem;
}

.lang-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lang-modal-content {
  text-align: center;
  padding: 1rem;
  width: 100%;
  max-width: 500px;
}

.lang-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.lang-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lang-btn {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 140px;
  flex: 1;
  max-width: 200px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.lang-btn:hover,
.lang-btn:active {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

.lang-flag {
  font-size: 2.5rem;
  line-height: 1;
}

.lang-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
  min-height: 44px;
}

.nav-logo svg {
  stroke: var(--primary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.lang-switch {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.85rem;
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
}

.lang-switch:hover,
.lang-switch:active {
  border-color: var(--primary);
  background: rgba(0, 240, 255, 0.1);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1rem 3rem;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-wrap: wrap;
  justify-content: center;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  gap: 0.5rem;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover,
.btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 240, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover,
.btn-outline:active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 240, 255, 0.05);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover,
.btn-whatsapp:active {
  background: #128c7e;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid var(--text-muted);
  border-radius: 10px;
  position: relative;
}

.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 0.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  background: var(--darker);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow: var(--shadow-md);
}

.about-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 240, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.about-icon svg {
  width: 26px;
  height: 26px;
}

.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #fff;
  line-height: 1.3;
}

.about-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.service-card.featured {
  border-color: rgba(0, 240, 255, 0.25);
  background: linear-gradient(135deg, var(--card), rgba(0, 240, 255, 0.03));
}

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

.service-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.service-header h3 {
  font-size: 1.25rem;
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.service-badge {
  background: rgba(0, 255, 136, 0.12);
  color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.service-card > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 0.4rem 0;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================
   PRICING SECTION
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--card), rgba(0, 240, 255, 0.05));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  padding: 0.4rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
}

.pricing-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.price {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact {
  background: var(--darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-card.whatsapp .contact-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-card.phone .contact-icon {
  background: rgba(0, 240, 255, 0.08);
  color: var(--primary);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card .btn {
  width: 100%;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--dark);
}

.footer-content {
  text-align: center;
  padding: 0 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-brand svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-content {
    animation: none;
  }
}

/* ============================
   TABLET RESPONSIVE (max-width: 1024px)
   ============================ */
@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }

  .pricing-card.highlight {
    transform: scale(1.02);
  }
}

/* ============================
   MOBILE RESPONSIVE (max-width: 768px)
   ============================ */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .nav-logo svg {
    width: 24px;
    height: 24px;
  }

  /* Mobile menu overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    border-bottom: none;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    min-height: 56px;
  }

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

  .lang-switch {
    margin-top: 1rem;
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero mobile */
  .hero {
    padding: 4.5rem 0.75rem 2.5rem;
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

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

  .hero-scroll {
    bottom: 1rem;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 2rem;
  }

  /* Cards */
  .about-card,
  .service-card,
  .pricing-card,
  .contact-card {
    padding: 1.5rem;
  }

  .about-grid,
  .services-grid,
  .pricing-grid,
  .contact-grid {
    gap: 1rem;
  }

  .about-icon {
    width: 48px;
    height: 48px;
  }

  .about-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Pricing */
  .pricing-card.highlight {
    transform: scale(1);
    order: -1;
  }

  .pricing-badge {
    font-size: 0.65rem;
    padding: 0.35rem 1rem;
    top: -10px;
  }

  /* Contact */
  .contact-icon {
    width: 54px;
    height: 54px;
  }

  .contact-icon svg {
    width: 26px;
    height: 26px;
  }

  /* Footer */
  .footer {
    padding: 2rem 0;
  }

  .footer-brand {
    font-size: 1rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  /* Language modal */
  .lang-modal-content {
    padding: 0.5rem;
  }

  .lang-title {
    margin-bottom: 1.5rem;
  }

  .lang-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-btn {
    max-width: none;
    flex-direction: row;
    justify-content: center;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }

  .lang-flag {
    font-size: 1.75rem;
  }

  .lang-label {
    font-size: 1rem;
  }
}

/* ============================
   SMALL MOBILE (max-width: 480px)
   ============================ */
@media (max-width: 480px) {
  .container {
    padding: 0 0.875rem;
  }

  .section {
    padding: 3rem 0;
  }

  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-badge {
    gap: 0.4rem;
  }

  .about-card,
  .service-card,
  .pricing-card,
  .contact-card {
    padding: 1.25rem;
    border-radius: 0.6rem;
  }

  .service-header {
    gap: 0.6rem;
  }

  .service-icon {
    font-size: 1.5rem;
  }

  .service-header h3 {
    font-size: 1.1rem;
  }

  .service-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
  }

  .service-card > p,
  .service-list li,
  .about-card p,
  .pricing-features li,
  .contact-card p {
    font-size: 0.9rem;
  }

  .pricing-header h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1.6rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }

  .footer-copy {
    font-size: 0.75rem;
  }
}

/* ============================
   LANDSCAPE MOBILE FIXES
   ============================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .hero-scroll {
    display: none;
  }

  .lang-modal {
    align-items: flex-start;
    padding-top: 2rem;
    overflow-y: auto;
  }

  .nav-menu {
    padding-top: 4rem;
  }
}

/* ============================
   LARGE SCREENS
   ============================ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 4.5rem;
  }
}
