/* ===================================================
   DM Store – Premium Landing Page Styles
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #4f6ef7;
  --primary-dark: #3a55d8;
  --primary-light: #7b96ff;
  --accent: #00d4aa;
  --accent-2: #f72585;
  --bg: #080b18;
  --bg-2: #0d1120;
  --bg-card: #111827;
  --bg-card-2: #141c2e;
  --border: rgba(79, 110, 247, 0.18);
  --text: #e8eaf6;
  --text-muted: #7b8db7;
  --text-light: #b0c0e8;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-blue: 0 0 40px rgba(79,110,247,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Light Mode ─────────────────────────────────────────── */
body.light-mode {
  --bg: #f0f4ff;
  --bg-2: #e8edf8;
  --bg-card: #ffffff;
  --bg-card-2: #f5f7ff;
  --border: rgba(79, 110, 247, 0.2);
  --text: #1a1f3e;
  --text-muted: #5a6a9a;
  --text-light: #2e3f72;
  --white: #1a1f3e;
  --shadow: 0 8px 40px rgba(79, 110, 247, 0.12);
  --shadow-blue: 0 0 40px rgba(79,110,247,0.1);
}

body.light-mode .hero-orb { opacity: 0.12; }
body.light-mode .grid-lines {
  background-image:
    linear-gradient(rgba(79, 110, 247, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 110, 247, 0.07) 1px, transparent 1px);
}
body.light-mode .navbar.scrolled {
  background: rgba(240, 244, 255, 0.92);
  border-bottom-color: rgba(79, 110, 247, 0.15);
}
body.light-mode .logo-text { color: #1a1f3e; }
body.light-mode .screen-topbar { background: #edf0fa; }
body.light-mode .device-screen { background: #f5f7ff; }
body.light-mode .screen-line { background: rgba(0,0,0,0.07); }
body.light-mode .screen-status {
  background: rgba(0,212,170,0.08);
  color: #00a87d;
}
body.light-mode .floating-card {
  background: rgba(255,255,255,0.95);
  border-color: rgba(79,110,247,0.2);
}
body.light-mode .floating-card strong { color: #1a1f3e; }
body.light-mode .service-card { background: #ffffff; }
body.light-mode .service-list li { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
body.light-mode .why-card { background: linear-gradient(135deg, rgba(79,110,247,0.06), rgba(0,212,170,0.04)); }
body.light-mode .pack-card { background: #ffffff; }
body.light-mode .pack-card.featured { background: linear-gradient(145deg, rgba(79,110,247,0.08), #ffffff); }
body.light-mode .contact-form { background: #ffffff; }
body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
  background: #f5f7ff;
  border-color: rgba(79,110,247,0.2);
  color: #1a1f3e;
}
body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder { color: #8a9cc8; }
body.light-mode .footer { background: #e8edf8; }
body.light-mode .price-amount {
  background: linear-gradient(135deg, #1a1f3e, #3a4a7a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-mode .pack-card.featured .price-amount {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}
body.light-mode .map-wrapper iframe { filter: invert(0%) saturate(1); opacity: 1; }
body.light-mode .btn-secondary {
  background: rgba(0,0,0,0.04);
  color: #2e3f72;
  border-color: rgba(79,110,247,0.25);
}
body.light-mode .btn-secondary:hover { background: rgba(79,110,247,0.08); color: #1a1f3e; }
body.light-mode .section-header p { color: #5a6a9a; }
body.light-mode .stat-label { color: #5a6a9a; }
body.light-mode .hero-subtitle { color: #5a6a9a; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 11, 24, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.logo-icon {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 1px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width var(--transition);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(79, 110, 247, 0.12);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.lang-toggle:hover {
  background: rgba(79, 110, 247, 0.22);
  color: var(--white);
  border-color: var(--primary);
}

.lang-sep {
  opacity: 0.4;
}

.lang-label-alt {
  opacity: 0.5;
}

.lang-toggle.en-active .lang-label {
  opacity: 0.5;
}

.lang-toggle.en-active .lang-label-alt {
  opacity: 1;
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(79, 110, 247, 0.35);
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 110, 247, 0.5);
}

/* Theme Toggle Button */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(79, 110, 247, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(79, 110, 247, 0.18);
  border-color: var(--primary);
  transform: rotate(20deg) scale(1.1);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: pulse-orb 6s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -200px;
  left: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: 2s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  animation-delay: 4s;
}

@keyframes pulse-orb {
  from { transform: scale(1); opacity: 0.2; }
  to { transform: scale(1.15); opacity: 0.3; }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 110, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 110, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-line-1 {
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 25px rgba(79, 110, 247, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(79, 110, 247, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 48px;
}

.hero-device {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px;
  width: 320px;
  box-shadow: var(--shadow), var(--shadow-blue);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.device-screen {
  background: var(--bg-2);
  border-radius: 12px;
  overflow: hidden;
}

.screen-topbar {
  background: var(--bg-card-2);
  padding: 10px 14px;
  display: flex;
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.screen-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.screen-dot.red { background: #ff5f56; }
.screen-dot.yellow { background: #ffbd2e; }
.screen-dot.green { background: #27c93f; }

.screen-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
}

.screen-line.long { width: 85%; }
.screen-line.medium { width: 65%; }
.screen-line.short { width: 45%; }

.screen-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-top: 8px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--primary), var(--accent));
  opacity: 0.7;
  animation: bar-pulse 2s ease-in-out infinite alternate;
}

.b1 { height: 30%; animation-delay: 0s; }
.b2 { height: 60%; animation-delay: 0.2s; }
.b3 { height: 45%; animation-delay: 0.4s; }
.b4 { height: 80%; animation-delay: 0.6s; }
.b5 { height: 55%; animation-delay: 0.8s; }

@keyframes bar-pulse {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.screen-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  padding: 8px 10px;
  background: rgba(0, 212, 170, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  margin-top: 4px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 17, 32, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.floating-card .card-icon {
  font-size: 1.6rem;
}

.floating-card .card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card strong {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
}

.floating-card span {
  font-size: 0.73rem;
  color: var(--text-muted);
}

.card-1 {
  top: 5%;
  left: -10px;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  bottom: 15%;
  left: -15px;
  animation: float 7s ease-in-out infinite 1s;
}

.card-3 {
  top: 40%;
  right: -10px;
  animation: float 5.5s ease-in-out infinite 0.5s;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 0.4; }
}

/* ===================================================
   SECTION COMMONS
   =================================================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(79, 110, 247, 0.12);
  color: var(--primary-light);
  border: 1px solid rgba(79, 110, 247, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===================================================
   SERVICES
   =================================================== */
.services-section {
  padding: 110px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,110,247,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(79, 110, 247, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-blue);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.service-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon.support  { background: rgba(79,110,247,0.12); }
.service-icon.maintenance { background: rgba(255,162,0,0.12); }
.service-icon.cloud    { background: rgba(0,212,170,0.12); }
.service-icon.digital  { background: rgba(150,100,255,0.12); }
.service-icon.mobile   { background: rgba(247,37,133,0.12); }
.service-icon.why      { background: rgba(255,218,0,0.12); }

.service-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  padding-top: 8px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.service-list li:hover {
  background: rgba(79,110,247,0.07);
}

.service-name {
  font-size: 0.85rem;
  color: var(--text-light);
  flex: 1;
  line-height: 1.4;
}

.service-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.service-suffix {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Why Us card */
.why-card {
  background: linear-gradient(135deg, rgba(79,110,247,0.08), rgba(0,212,170,0.05));
  border-color: rgba(79,110,247,0.25);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.why-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===================================================
   PACKS
   =================================================== */
.packs-section {
  padding: 110px 0;
  background: linear-gradient(180deg, transparent, rgba(79,110,247,0.04) 50%, transparent);
  position: relative;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.pack-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(79,110,247,0.12), var(--bg-card));
}

.pack-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79,110,247,0.2), transparent 70%);
  pointer-events: none;
}

.pack-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pack-badge.featured-badge {
  background: rgba(79,110,247,0.18);
  border-color: rgba(79,110,247,0.4);
  color: var(--primary-light);
}

.pack-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pack-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.pack-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--text-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pack-card.featured .price-amount {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.price-suffix {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pack-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.pack-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-light);
}

.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.pack-savings {
  font-size: 0.8rem;
  color: var(--accent);
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.15);
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 28px;
  font-weight: 500;
}

.btn-pack {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-pack:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-pack.featured-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(79,110,247,0.4);
}

.btn-pack.featured-btn:hover {
  box-shadow: 0 8px 30px rgba(79,110,247,0.6);
  transform: translateY(-3px);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-section {
  padding: 110px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.info-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(79,110,247,0.1);
  border: 1px solid rgba(79,110,247,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-block h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-block p,
.info-block a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.info-block a:hover {
  color: var(--primary-light);
}

/* Google Maps */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.map-wrapper iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8);
  opacity: 0.9;
  transition: opacity var(--transition);
}

.map-wrapper iframe:hover {
  opacity: 1;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(79,110,247,0.06);
  box-shadow: 0 0 0 3px rgba(79,110,247,0.12);
}

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

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(79,110,247,0.35);
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79,110,247,0.5);
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-success.visible {
  display: flex;
}

.form-error {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: rgba(247, 37, 133, 0.08);
  border: 1px solid rgba(247, 37, 133, 0.25);
  border-radius: 10px;
  color: #f472b6;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-error.visible {
  display: flex;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
}

.footer-brand .logo {
  margin-bottom: 4px;
}

.footer-links-col,
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col h5,
.footer-contact-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--primary-light);
}

.footer-contact-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-col a {
  color: var(--primary-light);
}

.footer-contact-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 130px 24px 80px;
    gap: 60px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    padding-left: 0;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(8, 11, 24, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    padding: 14px 28px;
    width: 100%;
    text-align: left;
  }
  .hamburger {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .packs-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .floating-card {
    display: none;
  }
  .hero-device {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .pack-card {
    padding: 28px 22px;
  }
  .price-amount {
    font-size: 2.4rem;
  }
}
