/* ============================================================
   Master Remotly 🥷 | Professional Remote Services
   Inspired by Master Splinter design system
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --color-primary: #82cfe2;
  --color-primary-dark: #4aa0ba;
  --color-primary-light: #b0e4f0;
  --color-accent: #181819;
  --color-bg: #0a0e13;
  --color-surface: #1a2332;
  --color-surface-light: #243044;
  --color-muted: #8a9bb5;
  --color-border: #2d3a4f;
  --color-success: #6bcb77;
  --color-warning: #ffd93d;
  --color-danger: #ff6b6b;
  --color-info: #4d96ff;
  --font-primary: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Poppins', 'Cairo', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(130, 207, 226, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Light Theme ----- */
[data-theme="light"] {
  --color-bg: #f0f5fa;
  --color-surface: #ffffff;
  --color-surface-light: #e8edf3;
  --color-accent: #1a1a2e;
  --color-muted: #5a6a7a;
  --color-border: #d0d8e0;
}

[data-theme="light"] body {
  background: var(--color-bg);
  color: var(--color-accent);
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .brand__text strong {
  color: var(--color-accent);
}

[data-theme="light"] .nav-toggle {
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav-toggle span {
  background: #333;
}

[data-theme="light"] .nav-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .site-nav a,
[data-theme="light"] .desktop-nav a {
  color: #555;
}

[data-theme="light"] .hero__title {
  background: linear-gradient(135deg, #1a1a2e 30%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .service-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .service-card__body h3 {
  color: var(--color-accent);
}

[data-theme="light"] .service-card__features li {
  color: #555;
}

[data-theme="light"] .feature-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .feature-card h3 {
  color: var(--color-accent);
}

[data-theme="light"] .process-step {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .process-step__content h3 {
  color: var(--color-accent);
}

[data-theme="light"] .request-form {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .request-form label {
  color: #444;
}

[data-theme="light"] .form-row input,
[data-theme="light"] .form-row select,
[data-theme="light"] .form-row textarea {
  background: #f5f8fc;
  border-color: var(--color-border);
  color: var(--color-accent);
}

[data-theme="light"] .pricing-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .pricing-card--featured {
  background: linear-gradient(135deg, var(--color-surface), rgba(130, 207, 226, 0.08));
  border-color: var(--color-primary);
}

[data-theme="light"] .pricing-card__features li {
  color: #555;
}

[data-theme="light"] .testimonial-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .testimonial-card blockquote {
  color: #555;
}

[data-theme="light"] .faq-question {
  color: var(--color-accent);
}

[data-theme="light"] .faq-answer p {
  color: #555;
}

[data-theme="light"] .portfolio-item {
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .filter-btn {
  color: #666;
  background: var(--color-surface);
  border-color: var(--color-border);
}

[data-theme="light"] .filter-btn.active {
  background: var(--color-primary);
  color: #0a0e13;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px; /* Account for fixed header when scrolling to anchors */
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 110px;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 95px;
  }
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.lang-loaded {
  opacity: 1;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ----- Loading Screen ----- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  transition: opacity 0.4s ease;
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(130, 207, 226, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#loader p {
  color: var(--color-primary);
  font-family: var(--font-primary);
  margin-top: 20px;
  font-size: 14px;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ----- Toast Notification ----- */
.toast {
  position: fixed;
  bottom: 90px;
  right: clamp(12px, 3vw, 24px);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid rgba(130, 207, 226, 0.3);
  border-radius: var(--radius-md);
  padding: clamp(12px, 2vw, 14px) clamp(16px, 2.5vw, 20px);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: min(350px, calc(100vw - 24px));
}

.toast.show {
  transform: translateX(0);
}

.toast.hidden {
  transform: translateX(120%);
}

.toast__icon {
  color: var(--color-success);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.toast__message {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ----- Container & Page Wrapper ----- */
.page-wrapper {
  width: 100%;
  overflow: hidden;
  padding-top: 140px; /* Increased fixed space for header + logo */
}

/* Responsive padding for smaller screens */
@media (max-width: 768px) {
  .page-wrapper {
    padding-top: 110px;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding-top: 95px;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}

/* Footer Logo */
.footer-brand__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(130, 207, 226, 0.2));
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
}

.footer-brand__text strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.footer-brand__text small {
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.5px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 19, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(0.75rem, 2vw, 1.5rem) clamp(0.875rem, 2.5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 20px);
  transition: all 0.3s ease;
}

/* Scrolled state for header */
.site-header.scrolled {
  background: rgba(10, 14, 19, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: clamp(0.5rem, 1.5vw, 1rem) clamp(0.875rem, 2.5vw, 2rem);
}

.brand__link {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.brand__link:hover {
  color: var(--color-primary);
}

.brand__logo-image {
  width: clamp(60px, 8vw, 130px);
  height: clamp(60px, 8vw, 130px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(130, 207, 226, 0.3));
  transition: var(--transition);
}

.brand__link:hover .brand__logo-image {
  filter: drop-shadow(0 0 20px rgba(130, 207, 226, 0.5));
  transform: scale(1.05);
}

.brand__logo-wrapper {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(130, 207, 226, 0.3);
  animation: logo-glow 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes logo-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(130, 207, 226, 0.3); }
  50% { box-shadow: 0 0 35px rgba(130, 207, 226, 0.5); }
}

.brand__logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.brand__text small {
  font-size: clamp(0.75rem, 1.2vw, 1.1rem);
  color: var(--color-muted);
  letter-spacing: 0.5px;
}

/* Header Controls */
.header-controls {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 10px);
}

.header-control-stack {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 8px);
}

.theme-toggle,
.lang-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.theme-toggle:hover,
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
}

.lang-flag {
  font-weight: 700;
  color: var(--color-primary);
}

.lang-text {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.whatsapp-header-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  transition: var(--transition);
}



.whatsapp-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Navigation Toggle (Mobile) - Professional Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 6px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 82, 82, 0.15);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  width: 20px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  width: 20px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.desktop-nav ul {
  display: flex;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  color: var(--color-muted);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(130, 207, 226, 0.1);
}

.desktop-nav a i {
  margin-left: 6px;
  color: var(--color-primary);
  font-size: 0.8rem;
}

/* Mobile Navigation (hidden on desktop, shown as overlay on mobile) */
.site-nav {
  display: none;
}

/* Desktop layout ordering */
@media (min-width: 769px) {
  .desktop-nav {
    order: 2;
  }

  .header-controls {
    order: 3;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 0 0 clamp(30px, 6vw, 60px); /* Removed top padding - page-wrapper handles it */
  min-height: clamp(60vh, 85vh, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -150px;
  right: -150px;
  animation: orb-float 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: #764ba2;
  bottom: -100px;
  left: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: #ff6b6b;
  top: 50%;
  left: 50%;
  animation: orb-float 6s ease-in-out infinite;
  transform: translate(-50%, -50%);
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: clamp(20px, 4vw, 40px) 16px 0; /* Added top padding for breathing space */
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(130, 207, 226, 0.1);
  border: 1px solid rgba(130, 207, 226, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero__badge i {
  font-size: 0.9rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__actions {
  display: flex;
  gap: clamp(6px, 1.5vw, 12px);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__actions .btn {
  gap: 5px;
  padding: clamp(6px, 1.2vw, 14px) clamp(10px, 1.5vw, 20px);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__actions .btn i {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem) !important;
}

.hero__stats {
  display: flex;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__stat {
  text-align: center;
  position: relative;
}

.hero__stat-num {
  display: inline;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-plus,
.hero__stat-percent {
  display: inline;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 4px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #0a0e13 !important;
  box-shadow: 0 4px 20px rgba(130, 207, 226, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(130, 207, 226, 0.5);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.btn--small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted) !important;
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: #fff !important;
}

.btn--field {
  position: relative;
  background: linear-gradient(135deg, #f0a500, #e67e00);
  border: none;
  color: #1a1a2e !important;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(240, 165, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}

.btn--field::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffb820, #f0a500, #d47400);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn--field:hover::before {
  opacity: 1;
}

.btn--field:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 40px rgba(240, 165, 0, 0.55);
}

.btn--field:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--field .btn__content i {
  color: #1a1a2e;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.btn--field:hover .btn__content i {
  animation: fieldBounce 0.8s ease infinite;
}

.btn--field .btn__content span {
  position: relative;
  z-index: 2;
}

/* Pulsing ring */
.btn__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  transform: translate(-50%, -50%) scale(1);
  animation: fieldPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes fieldPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }
}

@keyframes fieldBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-5px) scale(1.1); }
  50% { transform: translateY(0) scale(1); }
  70% { transform: translateY(-3px) scale(1.05); }
}

/* Glow shimmer sweep */
.btn--field::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: fieldShimmer 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes fieldShimmer {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: -75%; }
}

.btn--mail {
  position: relative;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: none;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}

.btn--mail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c084fc, #a855f7, #7c3aed);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn--mail:hover::before {
  opacity: 1;
}

.btn--mail:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.55);
}

.btn--mail:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--mail .btn__content i {
  transition: transform 0.3s ease;
}

.btn--mail:hover .btn__content i {
  animation: mailShake 0.6s ease infinite;
}

.btn__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  transform: translate(-50%, -50%) scale(1);
  animation: mailPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes mailPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }
}

@keyframes mailShake {
  0%, 100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-8deg) scale(1.1); }
  50% { transform: rotate(0) scale(1); }
  75% { transform: rotate(8deg) scale(1.1); }
}

.btn--mail::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1), transparent);
  animation: mailSpin 6s linear infinite;
  z-index: -1;
}

@keyframes mailSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.1rem;
  width: 100%;
  justify-content: center;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(40px, 8vw, 80px) 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section--form {
  background: linear-gradient(180deg, transparent, rgba(130, 207, 226, 0.03));
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(24px, 5vw, 50px);
  padding: 0 16px;
}

.section__eyebrow {
  display: inline-block;
  background: rgba(130, 207, 226, 0.08);
  color: var(--color-primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: clamp(6px, 1vw, 8px);
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 0 16px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: rgba(130, 207, 226, 0.1);
  border-color: rgba(130, 207, 226, 0.3);
  color: #fff;
}

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #0a0e13;
  box-shadow: 0 4px 15px rgba(130, 207, 226, 0.3);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  padding: 0 16px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px;
  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(--color-primary), var(--color-primary-dark));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(130, 207, 226, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(130, 207, 226, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(130, 207, 226, 0.2);
  transform: scale(1.1);
}

.service-card__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.service-card__body > p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #bbb;
}

.service-card__features li i {
  color: var(--color-primary);
  width: 16px;
  font-size: 0.8rem;
}

.service-details-btn {
  margin-top: 8px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.plan-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 8px);
  margin-bottom: clamp(24px, 5vw, 40px);
  flex-wrap: wrap;
  padding: 0 16px;
}

.plan-toggle__btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.plan-toggle__btn:hover {
  border-color: rgba(130, 207, 226, 0.3);
  color: #fff;
}

.plan-toggle__btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #0a0e13;
  box-shadow: 0 4px 15px rgba(130, 207, 226, 0.3);
}

.plan-toggle__badge {
  background: rgba(107, 203, 119, 0.15);
  color: var(--color-success);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(107, 203, 119, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 24px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.pricing-card--featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(130, 207, 226, 0.05));
  border-color: rgba(130, 207, 226, 0.3);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card__badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-card__badge--popular {
  color: var(--color-primary);
  background: rgba(130, 207, 226, 0.1);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.pricing-card__price {
  margin-bottom: 12px;
}

.pricing-card__amount {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 4px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: block;
  margin-top: 2px;
}

.pricing-card__target {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(130, 207, 226, 0.06);
  border: 1px solid rgba(130, 207, 226, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: right;
  line-height: 1.5;
}

.pricing-card__target i {
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #bbb;
}

.pricing-card__features li i {
  color: var(--color-success);
  width: 16px;
  flex-shrink: 0;
}

.pricing-card__payment {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Partnership Section - Premium Custom Solution */
.partnership {
  max-width: min(900px, calc(100% - 32px));
  margin: clamp(30px, 6vw, 60px) auto 0;
  background: linear-gradient(135deg, rgba(212, 168, 71, 0.06), rgba(245, 215, 123, 0.02));
  border: 1px solid rgba(212, 168, 71, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 48px) clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4a847, #f5d77b, #d4a847, transparent);
}

.partnership__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 71, 0.12);
  border: 1px solid rgba(212, 168, 71, 0.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d4a847;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.partnership__badge i {
  font-size: 0.7rem;
}

.partnership__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.partnership__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 168, 71, 0.15), rgba(212, 168, 71, 0.05));
  border: 1px solid rgba(212, 168, 71, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #d4a847;
}

.partnership__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.partnership__subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.partnership__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(12px, 2vw, 16px);
  margin-bottom: clamp(24px, 4vw, 36px);
}

.partnership__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: var(--transition);
}

.partnership__feature:hover {
  background: rgba(212, 168, 71, 0.04);
  border-color: rgba(212, 168, 71, 0.15);
}

.partnership__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 71, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #d4a847;
}

.partnership__feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.partnership__feature small {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.partnership__cta {
  text-align: center;
}

.partnership__cta-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 12px;
}

/* ============================================================
   FEATURES GRID (Why Us)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 3vw, 24px);
  padding: 0 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(130, 207, 226, 0.2);
  transform: translateY(-5px);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(130, 207, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 16px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(130, 207, 226, 0.2);
}

.process-step__number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a0e13;
}

.process-step__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.process-step__content p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.process-step__connector {
  text-align: center;
  padding: 8px 0;
  color: var(--color-primary);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 20px);
  padding: 0 16px;
}

.portfolio-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-item:hover {
  border-color: rgba(130, 207, 226, 0.3);
  transform: translateY(-3px);
}

.portfolio-item__icon {
  font-size: 3rem;
  color: rgba(130, 207, 226, 0.15);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-item__icon {
  transform: scale(1.2);
  color: rgba(130, 207, 226, 0.25);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 19, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.portfolio-item__overlay p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.portfolio-item__tag {
  display: inline-block;
  background: rgba(130, 207, 226, 0.15);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 20px);
  padding: 0 16px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(130, 207, 226, 0.2);
}

.testimonial-card__stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
}

.testimonial-card figcaption strong {
  color: #fff;
  font-size: 0.95rem;
}

.testimonial-card figcaption span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(130, 207, 226, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: right;
  transition: var(--transition);
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.8;
}

/* ============================================================
   REQUEST MODAL (Professional)
   ============================================================ */
.request-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: min(92%, calc(100vw - 16px));
  max-height: min(90vh, calc(100vh - 40px));
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.request-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.request-modal::-webkit-scrollbar { width: 6px; }
.request-modal::-webkit-scrollbar-track { background: transparent; }
.request-modal::-webkit-scrollbar-thumb { background: rgba(130, 207, 226, 0.3); border-radius: 3px; }

.request-modal__header {
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 30px) clamp(16px, 2vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.05), transparent);
}

.request-modal__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0a0e13;
  box-shadow: 0 0 20px rgba(130, 207, 226, 0.3);
}

.request-modal__titles h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.request-modal__price {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.request-modal__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.request-modal__body {
  padding: clamp(20px, 3vw, 24px) clamp(20px, 3vw, 30px) clamp(24px, 3vw, 30px);
}

.rm-row {
  margin-bottom: 18px;
}

.rm-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 6px;
}

.rm-row input,
.rm-row select,
.rm-row textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
}

.rm-row input:focus,
.rm-row select:focus,
.rm-row textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(130, 207, 226, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.rm-row input::placeholder,
.rm-row textarea::placeholder { color: rgba(255, 255, 255, 0.2); }

.rm-row input[readonly] {
  background: rgba(130, 207, 226, 0.06);
  border-color: rgba(130, 207, 226, 0.15);
  color: var(--color-primary);
  font-weight: 700;
  cursor: default;
}

.rm-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9bb5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

.rm-row select option { background: var(--color-surface); color: #fff; }

.rm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

#rm-primary-row.business #rm-platform-cell {
  grid-column: 1 / -1;
}

.rm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rm-actions .btn--large { margin: 0; }

/* Price Breakdown in Modal */
.rm-price-breakdown {
  background: rgba(130, 207, 226, 0.05);
  border: 1px solid rgba(130, 207, 226, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.rm-price-breakdown__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--color-muted);
  padding: 4px 0;
}

.rm-price-breakdown__line:first-child {
  padding-top: 0;
}

.rm-price-breakdown__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 6px;
  padding-top: 10px;
}

.rm-price-breakdown__total span:last-child {
  color: var(--color-primary);
  font-size: 1.15rem;
}

/* ============================================================
   PARTNERSHIP MODAL
   ============================================================ */
.partnership-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 71, 0.25);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: min(92%, calc(100vw - 16px));
  max-height: min(90vh, calc(100vh - 40px));
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.partnership-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.partnership-modal__header {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px) clamp(16px, 2vw, 20px);
  border-bottom: 1px solid rgba(212, 168, 71, 0.1);
  background: linear-gradient(135deg, rgba(212, 168, 71, 0.05), transparent);
}

.partnership-modal__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(212, 168, 71, 0.15), rgba(212, 168, 71, 0.05));
  border: 1px solid rgba(212, 168, 71, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #d4a847;
}

.partnership-modal__titles h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.partnership-modal__price {
  font-size: 1rem;
  font-weight: 700;
  color: #d4a847;
  display: block;
  margin-bottom: 4px;
}

.partnership-modal__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.partnership-modal__body {
  padding: clamp(20px, 3vw, 24px) clamp(20px, 3vw, 32px) clamp(24px, 3vw, 32px);
}

.pm-row {
  margin-bottom: 18px;
}

.pm-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 6px;
}

.pm-row input,
.pm-row select,
.pm-row textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

.pm-row input:focus,
.pm-row select:focus,
.pm-row textarea:focus {
  border-color: #d4a847;
  box-shadow: 0 0 0 3px rgba(212, 168, 71, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.pm-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a847' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

.pm-row select option {
  background: var(--color-surface);
  color: #fff;
}

.pm-row textarea {
  resize: vertical;
  min-height: 100px;
}

.pm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 168, 71, 0.1);
}

.pm-actions .btn--large {
  margin: 0;
}

/* Light theme overrides for partnership modal */
[data-theme="light"] .partnership-modal {
  background: var(--color-surface);
  border-color: rgba(212, 168, 71, 0.3);
}

[data-theme="light"] .partnership-modal__header {
  background: linear-gradient(135deg, rgba(212, 168, 71, 0.06), transparent);
}

[data-theme="light"] .pm-row label {
  color: #444;
}

[data-theme="light"] .pm-row input,
[data-theme="light"] .pm-row select,
[data-theme="light"] .pm-row textarea {
  background: #f5f8fc;
  border-color: var(--color-border);
  color: var(--color-accent);
}

[data-theme="light"] .partnership-modal__titles h3 {
  color: var(--color-accent);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.service-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: min(90%, calc(100vw - 16px));
  max-height: min(85vh, calc(100vh - 40px));
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.service-modal::-webkit-scrollbar {
  width: 6px;
}

.service-modal::-webkit-scrollbar-track {
  background: transparent;
}

.service-modal::-webkit-scrollbar-thumb {
  background: rgba(130, 207, 226, 0.3);
  border-radius: 3px;
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-danger);
  color: var(--color-danger);
}

.modal-header {
  padding: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px) clamp(16px, 2vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-icon {
  width: 48px;
  height: 48px;
  background: rgba(130, 207, 226, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.modal-body {
  padding: clamp(20px, 3vw, 24px) clamp(20px, 3vw, 30px);
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.modal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-section ul li {
  font-size: 0.9rem;
  color: #bbb;
  padding-right: 16px;
  position: relative;
}

.modal-section ul li::before {
  content: '•';
  color: var(--color-primary);
  position: absolute;
  right: 0;
}

.modal-section p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============================================================
   PLAN SELECTOR (Main form)
   ============================================================ */
.plan-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.plan-option {
  position: relative;
  cursor: pointer;
}

.plan-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-option__content {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.plan-option input:checked + .plan-option__content {
  border-color: var(--color-primary);
  background: rgba(130, 207, 226, 0.1);
  box-shadow: 0 0 15px rgba(130, 207, 226, 0.15);
}

.plan-option:hover .plan-option__content {
  border-color: rgba(130, 207, 226, 0.3);
}

.plan-option--featured .plan-option__content {
  border-color: rgba(130, 207, 226, 0.2);
}

.plan-option--featured input:checked + .plan-option__content {
  border-color: var(--color-primary);
  background: rgba(130, 207, 226, 0.15);
}

.plan-option__badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(50%);
  background: var(--color-primary);
  color: #0a0e13;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-option__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.plan-option input:checked + .plan-option__content .plan-option__name {
  color: var(--color-primary);
}

.plan-option__price {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.plan-option__price small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-muted);
}

.plan-option input:checked + .plan-option__content .plan-option__price {
  color: var(--color-primary);
}

.plan-option__period {
  display: block;
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 2px;
}

@media (max-width: 600px) {
  .plan-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   REQUEST FORM
   ============================================================ */
.request-form {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
}

.form-row {
  margin-bottom: 20px;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#remote-primary-row.business #remote-platform-cell {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 8px;
}

.required-mark {
  color: var(--color-danger);
  margin-right: 2px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(130, 207, 226, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9bb5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-row select option {
  background: var(--color-surface);
  color: #fff;
}

#remote-access-id-wrapper,
#rm-remote-id-wrapper {
  grid-column: 1 / -1;
}

#remote-access-id-wrapper input,
#rm-remote-id-wrapper input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

#remote-access-id-wrapper input:focus,
#rm-remote-id-wrapper input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(130, 207, 226, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

#remote-access-id-wrapper label,
#rm-remote-id-wrapper label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 6px;
}

.form-price-estimate {
  font-size: 0.82rem;
  color: var(--color-primary);
  padding: 6px 10px;
  background: rgba(130, 207, 226, 0.08);
  border-radius: var(--radius-sm);
  text-align: center;
}

.form-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 12px;
}

/* ============================================================
   COPY PHONE BUTTON
   ============================================================ */
.btn-copy-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(130, 207, 226, 0.1);
  border: 1px solid rgba(130, 207, 226, 0.2);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.btn-copy-phone:hover {
  background: rgba(130, 207, 226, 0.2);
  border-color: var(--color-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 20px 30px;
  margin-top: 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.site-footer h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.site-footer ul li a {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer ul li a:hover {
  color: var(--color-primary);
}

.site-footer ul li a i {
  width: 16px;
  color: var(--color-primary);
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: clamp(16px, 3vw, 24px);
  left: clamp(16px, 3vw, 24px);
  z-index: 999;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  padding: clamp(12px, 1.5vw, 14px) clamp(14px, 2vw, 20px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp i {
  font-size: 1.4rem;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: clamp(16px, 3vw, 24px);
  right: clamp(16px, 3vw, 24px);
  z-index: 999;
  width: clamp(36px, 5vw, 45px);
  height: clamp(36px, 5vw, 45px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-primary);
  color: #0a0e13;
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE - Comprehensive Breakpoints
   ============================================================ */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pricing-card--featured {
    transform: none;
  }
  
  .pricing-card--featured:hover {
    transform: translateY(-5px);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .plan-selector {
    grid-template-columns: repeat(2, 1fr);
  }

  .rm-split,
  .pm-split {
    grid-template-columns: 1fr;
  }
}

/* --- Small Tablet / Large Phone (max-width: 768px) --- */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 6, 10, 0.97);
    backdrop-filter: blur(40px) saturate(1.3);
    -webkit-backdrop-filter: blur(40px) saturate(1.3);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    overflow-y: auto;
  }

  .site-nav[aria-expanded] {
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-header.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav[aria-expanded="true"] {
    opacity: 1;
    pointer-events: all;
  }

  .site-nav__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    padding: 16px 20px;
  }

  .nav-close-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .nav-close-btn:hover {
    background: rgba(255, 82, 82, 0.2);
    border-color: rgba(255, 82, 82, 0.3);
    color: #ff6b6b;
    transform: rotate(90deg);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 340px;
    padding: 0;
  }

  .site-nav ul li {
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    transition: none;
  }

  .site-nav[aria-expanded="true"] ul li {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .site-nav[aria-expanded="true"] ul li:nth-child(1) { transition-delay: 0.08s; }
  .site-nav[aria-expanded="true"] ul li:nth-child(2) { transition-delay: 0.14s; }
  .site-nav[aria-expanded="true"] ul li:nth-child(3) { transition-delay: 0.2s; }
  .site-nav[aria-expanded="true"] ul li:nth-child(4) { transition-delay: 0.26s; }
  .site-nav[aria-expanded="true"] ul li:nth-child(5) { transition-delay: 0.32s; }
  .site-nav[aria-expanded="true"] ul li:nth-child(6) { transition-delay: 0.38s; }
  .site-nav[aria-expanded="true"] ul li:nth-child(7) { transition-delay: 0.44s; }
  .site-nav[aria-expanded="true"] ul li:nth-child(8) { transition-delay: 0.5s; }

  .site-nav a {
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.25s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform 0.25s ease;
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    transform: scaleY(1);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(130, 207, 226, 0.1);
    border-color: rgba(130, 207, 226, 0.2);
    color: #fff;
  }

  .site-nav a i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: var(--color-primary);
  }

  .site-nav__footer {
    margin-top: 24px;
    text-align: center;
  }

  .nav-close-hint {
    display: block;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.72rem;
    letter-spacing: 0.3px;
  }

  .hero {
    min-height: auto;
    padding: 0 0 clamp(20px, 4vw, 40px); /* Keep consistent - no top padding */
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .hero__stats--cyber {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .whatsapp-header-btn span {
    display: none;
  }

  .floating-whatsapp__label {
    display: none;
  }

  .floating-whatsapp {
    padding: 14px;
    border-radius: 50%;
  }

  .modal-actions {
    flex-direction: column;
  }

  .service-modal {
    max-height: calc(100vh - 20px);
    width: calc(100vw - 12px);
    border-radius: var(--radius-md);
  }

  .request-modal {
    max-height: calc(100vh - 20px);
    width: calc(100vw - 12px);
    border-radius: var(--radius-md);
  }

  .partnership-modal {
    max-height: calc(100vh - 20px);
    width: calc(100vw - 12px);
    border-radius: var(--radius-md);
  }

  .partnership__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .partnership__grid {
    grid-template-columns: 1fr;
  }

  .partnership__title {
    font-size: 1.3rem;
  }

  .plan-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .plan-option__content {
    padding: 10px 8px;
  }

  .plan-option__price {
    font-size: 0.95rem;
  }

  .rm-split,
  .pm-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .process-step__content h3 {
    text-align: center;
  }

  .process-step__content p {
    text-align: center;
  }

  .site-footer {
    padding: 30px 16px 20px;
  }

  .toast {
    bottom: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
  }

  .service-card {
    padding: 24px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card__price .price-amount {
    font-size: 2.2rem;
  }

  .faq-list {
    padding: 0 12px;
  }
}

/* --- Phone (max-width: 480px) --- */
@media (max-width: 480px) {
  .header-controls {
    gap: 4px;
  }

  .lang-text {
    display: none;
  }

  .lang-toggle {
    padding: 8px 10px;
  }

  .theme-toggle {
    padding: 8px 10px;
  }

  .site-header {
    padding: 0.5rem 0.75rem;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    gap: 5px;
  }

  .hero__badge i {
    font-size: 0.7rem;
  }

  .hero__actions {
    gap: 6px;
  }

  .hero__actions .btn {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .hero__title--glitch {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .filter-bar {
    gap: 5px;
    padding: 0 8px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .section__title {
    font-size: 1.3rem;
  }

  .section__subtitle {
    font-size: 0.85rem;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .service-card__body h3 {
    font-size: 1.05rem;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .pricing-card__price .price-amount {
    font-size: 2rem;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .portfolio-item {
    padding: 30px 16px;
    min-height: 140px;
  }

  .request-form {
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .plan-selector {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .plan-option__content {
    padding: 8px 6px;
  }

  .plan-option__name {
    font-size: 0.75rem;
  }

  .plan-option__price {
    font-size: 0.9rem;
  }

  .plan-option__badge {
    font-size: 0.55rem;
    padding: 2px 8px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
    padding: 0 16px 14px;
  }

  .request-modal__header {
    padding: 16px;
    gap: 12px;
  }

  .request-modal__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .request-modal__title {
    font-size: 1rem;
  }

  .request-modal__price {
    font-size: 1rem;
  }

  .request-modal__body {
    padding: 16px;
  }

  .partnership-modal__header {
    padding: 16px;
  }

  .partnership-modal__body {
    padding: 16px;
  }

  .modal-header {
    padding: 16px;
  }

  .modal-header h2 {
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 16px;
  }

  .rm-row input,
  .rm-row select,
  .rm-row textarea,
  .pm-row input,
  .pm-row select,
  .pm-row textarea {
    padding: 11px 14px;
    font-size: 0.88rem;
  }

  .brand__link {
    gap: 10px;
  }

  .floating-whatsapp {
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }

  .scroll-to-top {
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .toast {
    bottom: 70px;
    right: 8px;
    left: 8px;
    padding: 12px 16px;
  }

  .toast__title {
    font-size: 0.85rem;
  }

  .toast__message {
    font-size: 0.75rem;
  }

  #loader p {
    font-size: 12px;
  }

  .loader-spinner {
    width: 36px;
    height: 36px;
  }

  .partnership__feature {
    padding: 12px 14px;
  }

  .partnership__feature-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .partnership__feature strong {
    font-size: 0.82rem;
  }

  .partnership__feature small {
    font-size: 0.72rem;
  }

  .site-footer h3 {
    font-size: 0.9rem;
  }

  .site-footer ul li a {
    font-size: 0.82rem;
  }

  .footer-brand__logo {
    width: 44px;
    height: 44px;
  }

  .btn-copy-phone {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .hero__corner {
    width: 30px;
    height: 30px;
  }

  .hero__corner--tl,
  .hero__corner--tr {
    top: 12px;
  }
  
  .hero__corner--bl,
  .hero__corner--br {
    bottom: 12px;
  }
  
  .hero__corner--tl,
  .hero__corner--bl {
    left: 12px;
  }
  
  .hero__corner--tr,
  .hero__corner--br {
    right: 12px;
  }
}

/* --- Very Small Phones (max-width: 360px) --- */
@media (max-width: 360px) {
  .hero__actions .btn {
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .plan-selector {
    grid-template-columns: 1fr;
  }

  .brand__link {
    gap: 8px;
  }

  .service-card {
    padding: 16px 12px;
  }

  .pricing-card {
    padding: 20px 12px;
  }

  .hero__title--glitch {
    font-size: 1.3rem;
  }
}

/* --- Landscape Phone Mode --- */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 0; /* No extra padding on landscape */
  }

  .hero__content {
    padding: 10px 0 0; /* Minimal top padding on landscape */
  }

  .hero__stats--cyber {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .hero__stat-box {
    padding: 12px;
  }

  .hero__stat-num {
    font-size: 1.3rem;
  }

  .hero__stat-label {
    font-size: 0.7rem;
  }

  .hero__actions {
    margin-bottom: 16px;
  }

  .hero__orbs {
    display: none;
  }

  .hero__grid {
    opacity: 0.3;
  }

  .site-nav {
    padding: 60px 20px 20px;
  }

  .site-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .site-nav a {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}


/* ============================================================
   CYBER HERO SECTION - ADVANCED ANIMATIONS
   ============================================================ */

/* Hero Container */
.hero--cyber {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e13 0%, #1a2332 50%, #0a0e13 100%);
}

/* Animated Grid Background */
.hero__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(130, 207, 226, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 207, 226, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  perspective: 1000px;
  transform-style: preserve-3d;
  pointer-events: none;
  user-select: none;
}

.hero__grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(130, 207, 226, 0.08) 2px, transparent 2px),
    linear-gradient(90deg, rgba(130, 207, 226, 0.08) 2px, transparent 2px);
  background-size: 100px 100px;
  animation: gridPulse 4s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes gridMove {
  0% { transform: translateY(0) translateZ(0); }
  100% { transform: translateY(50px) translateZ(-50px); }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Floating Particles */
.hero__particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.hero__particles::before,
.hero__particles::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 
    0 0 10px var(--color-primary),
    0 0 20px var(--color-primary),
    0 0 30px var(--color-primary);
  animation: particleFloat 6s ease-in-out infinite;
}

.hero__particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero__particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  10% { opacity: 1; }
  50% { 
    transform: translate(100px, -100px) scale(1.5);
    opacity: 0.8;
  }
  90% { opacity: 1; }
}

/* Enhanced Orbs */
.hero__orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4d96ff 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  animation-delay: 2s;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-primary-dark) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Scanner Line Effect */
.hero__scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-primary) 50%, 
    transparent 100%);
  box-shadow: 0 0 20px var(--color-primary);
  animation: scanLine 4s linear infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes scanLine {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Badges Wrapper */
.hero__badges {
  display: flex;
  gap: clamp(8px, 1.5vw, 12px);
  flex-wrap: wrap;
  margin-bottom: clamp(16px, 3vw, 24px);
}

/* Badge with Pulse */
.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(5px, 1vw, 8px) clamp(12px, 2vw, 20px);
  background: rgba(130, 207, 226, 0.1);
  border: 1px solid rgba(130, 207, 226, 0.3);
  border-radius: 50px;
  color: var(--color-primary);
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 600;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero__badge-pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.5);
    opacity: 0;
  }
}

.hero__badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(130, 207, 226, 0.3) 50%, 
    transparent 100%);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Glitch Title Effect */
.hero__title--glitch {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 
    0 0 10px rgba(130, 207, 226, 0.5),
    0 0 20px rgba(130, 207, 226, 0.3);
}

.hero__title--glitch::before,
.hero__title--glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.hero__title--glitch::before {
  color: #ff00ff;
  animation: glitch1 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.hero__title--glitch::after {
  color: #00ffff;
  animation: glitch2 2s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(-2px, 2px); }
}

/* Typing Cursor */
.hero__title-cursor {
  display: inline-block;
  width: 3px;
  background: var(--color-primary);
  margin-left: 5px;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Glowing Buttons */
.btn--glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(130, 207, 226, 0.4);
}

.btn--glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.btn__glare {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
}

.btn--glow:hover .btn__glare {
  transform: translate(-50%, -50%) scale(1);
}

/* Cyber Glass Button */
.btn--cyber {
  position: relative;
  background: rgba(130, 207, 226, 0.05);
  border: 1px solid rgba(130, 207, 226, 0.3);
  backdrop-filter: blur(10px);
}

.btn__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.05);
    opacity: 0.6;
  }
}

.btn--cyber:hover .btn__border {
  opacity: 1;
}

/* Cyber Stats */
.hero__stats--cyber {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(16px, 3vw, 30px);
  margin-top: clamp(30px, 6vw, 60px);
  padding: 0 16px;
}

.hero__stat-box {
  position: relative;
  padding: 24px;
  background: rgba(26, 35, 50, 0.5);
  border: 1px solid rgba(130, 207, 226, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  pointer-events: none;
  cursor: default;
}

/* Remove hover effect that makes it look clickable */

.hero__stat-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.hero__stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-plus,
.hero__stat-percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero__stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.hero__stat-bar {
  width: 100%;
  height: 4px;
  background: rgba(130, 207, 226, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.hero__stat-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  border-radius: 10px;
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% { 
    box-shadow: 0 0 10px var(--color-primary);
  }
  50% { 
    box-shadow: 0 0 20px var(--color-primary);
  }
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero__scroll:hover {
  color: var(--color-primary);
}

.hero__scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(130, 207, 226, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 0;
}

.hero__scroll-icon i {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Corner Decorations */
.hero__corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(130, 207, 226, 0.3);
  pointer-events: none;
  user-select: none;
}

.hero__corner--tl {
  top: 30px;
  left: 30px;
  border-right: none;
  border-bottom: none;
}

.hero__corner--tr {
  top: 30px;
  right: 30px;
  border-left: none;
  border-bottom: none;
}

.hero__corner--bl {
  bottom: 30px;
  left: 30px;
  border-right: none;
  border-top: none;
}

.hero__corner--br {
  bottom: 30px;
  right: 30px;
  border-left: none;
  border-top: none;
}

/* Responsive - Cyber Hero */
@media (max-width: 1024px) {
  .hero--cyber {
    min-height: auto;
  }

  .hero__orb--1 {
    width: 300px;
    height: 300px;
  }

  .hero__orb--2 {
    width: 250px;
    height: 250px;
  }

  .hero__orb--3 {
    width: 200px;
    height: 200px;
  }

  .hero__scanner {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__title--glitch {
    font-size: 1.6rem;
  }

  .hero__orb--1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }

  .hero__orb--2 {
    width: 150px;
    height: 150px;
  }

  .hero__orb--3 {
    width: 120px;
    height: 120px;
  }
  
  .hero__corner {
    width: 30px;
    height: 30px;
  }
  
  .hero__corner--tl,
  .hero__corner--tr {
    top: 16px;
  }
  
  .hero__corner--bl,
  .hero__corner--br {
    bottom: 16px;
  }
  
  .hero__corner--tl,
  .hero__corner--bl {
    left: 16px;
  }
  
  .hero__corner--tr,
  .hero__corner--br {
    right: 16px;
  }

  .hero__particles::before,
  .hero__particles::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title--glitch {
    font-size: 1.4rem;
  }

  .hero__orb--1 {
    width: 120px;
    height: 120px;
    filter: blur(40px);
  }

  .hero__orb--2 {
    width: 100px;
    height: 100px;
    filter: blur(40px);
  }

  .hero__orb--3 {
    display: none;
  }

  .hero__grid {
    background-size: 30px 30px;
  }

  .hero__grid-lines {
    background-size: 60px 60px;
  }
}

/* ============================================================
   LTR MODE FIXES
   ============================================================ */

/* Fix arrow direction in service cards for LTR (English) */
body[dir="ltr"] .service-details-btn .fa-arrow-left::before {
  content: "\f061"; /* fa-arrow-right unicode */
}

/* Fix select dropdown arrow position for LTR */
body[dir="ltr"] select {
  background-position: left 12px center;
  padding-left: 40px;
  padding-right: 15px;
}

body[dir="ltr"] .form-row select,
body[dir="ltr"] .pm-row select {
  background-position: left 12px center;
  padding-left: 40px;
  padding-right: 15px;
}
