/* =============================================
   MAKSISOFT — Apple-Style Design System
   ============================================= */

:root {
  --primary: #0071E3;
  --primary-dark: #0055B3;
  --primary-light: #E8F2FF;
  --accent: #00C7FF;
  --text: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #AEAEB2;
  --bg: #FFFFFF;
  --bg-secondary: #F5F5F7;
  --bg-dark: #000000;
  --bg-dark-card: #1C1C1E;
  --border: #D2D2D7;
  --border-light: #E8E8ED;
  --success: #30D158;
  --warning: #FF9F0A;
  --danger: #FF453A;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,113,227,0.2);
  --nav-height: 64px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
p { line-height: 1.7; color: var(--text-secondary); }

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

.text-white-alpha { color: rgba(255,255,255,0.7); }

/* ── NAVIGATION ── */
.navbar-ms {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.navbar-ms.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 800;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 10px; /* hover alanını aşağı uzatır — gap köprüsü */
  margin-bottom: -10px; /* layout'u bozmamak için */
}

.nav-dropdown > a::after {
  content: '›';
  margin-left: 4px;
  display: inline-block;
  transform: rotate(90deg);
  font-size: 12px;
}

.dropdown-menu-ms {
  position: absolute;
  top: 100%; /* li'nin padding-bottom dahil alt kenarından başlar */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white;
  border-radius: 16px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9999;
}

.dropdown-menu-ms.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-ms a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.15s;
}

.dropdown-menu-ms a:hover { background: var(--bg-secondary); color: var(--primary); }
.dropdown-menu-ms a i { width: 18px; color: var(--primary); font-size: 14px; }

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,113,227,0.35) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: var(--text);
  font-size: 1.2rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 24px 24px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--bg-secondary); color: var(--primary); }
.mobile-menu a i { width: 20px; color: var(--primary); }

/* ── LAYOUT ── */
main { padding-top: var(--nav-height); }

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

section { padding: 100px 0; overflow: hidden; }

@media (max-width: 768px) {
  section { padding: 60px 0; }
}

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #000;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,113,227,0.3) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,199,255,0.2) 0%, transparent 50%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,60,140,0.3) 0%, transparent 50%),
              #000;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,113,227,0.15);
  border: 1px solid rgba(0,113,227,0.3);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.6s ease 0.2s both;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #7B61FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 44px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.7s ease 0.7s both;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
}
.hero-stat-number span { color: var(--accent); }
.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── BUTTONS ── */
.btn-ms {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary-ms {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(0,113,227,0.35);
}
.btn-primary-ms:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,113,227,0.45);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  color: var(--primary);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: white;
}

.btn-outline-ms {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline-ms:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--text);
  color: white;
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  color: white;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1EB854;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  color: white;
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* ── SECTION HEADERS ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 16px; color: var(--text); }
.section-header p { font-size: 1.1rem; }

/* ── CARDS ── */
.card-ms {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.card-ms:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.card-ms-dark {
  background: var(--bg-dark-card);
  border-color: rgba(255,255,255,0.08);
}
.card-ms-dark:hover { border-color: var(--primary); }

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

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

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.product-icon {
  width: 60px; height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.product-card:hover .product-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.product-card h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.product-card p { font-size: 0.9rem; margin-bottom: 20px; color: var(--text-secondary); }

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.product-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s;
}
.product-card:hover .product-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── FEATURES LIST ── */
.features-list { list-style: none; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.features-list li:last-child { border-bottom: none; }
.feature-icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}
.feature-text h5 { font-size: 0.95rem; margin-bottom: 2px; color: var(--text); }
.feature-text p { font-size: 0.85rem; margin: 0; }

/* ── ADVANTAGE CARDS ── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.adv-card {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

.adv-card:hover {
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.adv-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.adv-card h4 { font-size: 1rem; margin-bottom: 8px; }
.adv-card p { font-size: 0.875rem; margin: 0; }

/* ── STATS SECTION ── */
.stats-section { background: var(--bg-dark); padding: 80px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-dark);
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number sup { font-size: 0.45em; vertical-align: super; }
.stat-number .accent { color: var(--accent); }
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ── DARK SECTION ── */
.section-dark { background: var(--bg-dark); color: white; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-dark .section-eyebrow {
  background: rgba(0,113,227,0.2);
  color: var(--accent);
}

.section-gray { background: var(--bg-secondary); }

/* ── FEATURE SPLIT ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 32px; font-size: 1.05rem; }

.split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-light), white);
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.split-visual-inner {
  width: 100%; height: 100%; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
}

.visual-icon-big {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.3;
}

/* ── APP MOCKUP ── */
.phone-mockup {
  width: 260px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  position: relative;
}

.phone-screen {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 28px;
  overflow: hidden;
  min-height: 500px;
  padding: 20px;
}

.phone-notch {
  width: 100px; height: 28px;
  background: var(--text);
  border-radius: 0 0 20px 20px;
  margin: 0 auto 16px;
}

.app-screen-item {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-screen-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.app-screen-text { flex: 1; }
.app-screen-title { font-size: 0.8rem; color: white; font-weight: 600; margin-bottom: 2px; }
.app-screen-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #003087 100%);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0 24px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-section > * { position: relative; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 40px; }

/* ── ACCORDION / FAQ ── */
.accordion-ms .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-ms .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  border-radius: var(--radius-sm) !important;
}

.accordion-ms .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: none;
}

.accordion-ms .accordion-button::after {
  filter: none;
}

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: white;
  padding: 40px 32px;
  transition: all 0.3s;
}

.why-card:hover {
  background: var(--primary);
}

.why-card:hover h4,
.why-card:hover p,
.why-card:hover .why-icon {
  color: white !important;
}

.why-card:hover .why-icon { background: rgba(255,255,255,0.15) !important; }

.why-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.why-card h4 { font-size: 1.05rem; margin-bottom: 10px; transition: all 0.3s; }
.why-card p { font-size: 0.875rem; transition: all 0.3s; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-stars { color: #FF9F0A; font-size: 0.875rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.author-title { font-size: 0.8rem; color: var(--text-secondary); }

/* ── CONTACT ── */
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-group-ms {
  margin-bottom: 20px;
}

.form-group-ms label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-control-ms {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-secondary);
  transition: all 0.2s;
  font-family: var(--font);
  outline: none;
}

.form-control-ms:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,113,227,0.08);
}

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

.contact-info-card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.ci-icon {
  width: 44px; height: 44px;
  background: rgba(0,113,227,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.ci-value { font-size: 0.95rem; color: white; font-weight: 500; }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  height: 400px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 2px dashed var(--border);
  font-size: 3rem;
  color: var(--text-tertiary);
}

/* ── BREADCRUMB ── */
.breadcrumb-ms {
  background: var(--bg-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb-ms ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.875rem;
}
.breadcrumb-ms ol li a { color: var(--primary); text-decoration: none; }
.breadcrumb-ms ol li a:hover { text-decoration: underline; }
.breadcrumb-ms ol li.active { color: var(--text-secondary); }
.breadcrumb-ms ol li:not(:first-child)::before {
  content: '/';
  color: var(--text-tertiary);
  margin-right: 8px;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; font-weight: 800;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
}

.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 24px; }

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--primary); color: white; }

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── WHATSAPP BUTTON ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  z-index: 900;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  color: white;
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ── PAGE HERO (Inner Pages) ── */
.page-hero {
  background: linear-gradient(160deg, #000 0%, #0a0f1e 50%, #001236 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(0,113,227,0.25) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero .section-eyebrow { background: rgba(0,113,227,0.2); color: var(--accent); }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PROCESS STEPS ── */
.steps-list { counter-reset: steps; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  counter-increment: steps;
}
.step-item:last-child { border-bottom: none; }
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h5 { font-size: 1rem; margin-bottom: 6px; }
.step-content p { font-size: 0.875rem; margin: 0; }

/* ── IMAGE CARD ── */
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light) 0%, #e8eeff 100%);
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

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

.img-card-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 40px;
  color: var(--primary); opacity: 0.4;
}
.img-card-placeholder i { font-size: 4rem; }
.img-card-placeholder span { font-size: 0.875rem; font-weight: 600; }

/* ── SWIPER / CAROUSEL ── */
.ms-slider { position: relative; overflow: hidden; border-radius: var(--radius); }

/* ── BADGE ── */
.badge-ms {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: rgba(48,209,88,0.1); color: var(--success); }
.badge-dark { background: var(--bg-secondary); color: var(--text-secondary); }

/* ── ALERT ── */
.alert-ms {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px;
}
.alert-success-ms { background: rgba(48,209,88,0.1); color: #0a7a0a; border: 1px solid rgba(48,209,88,0.2); }
.alert-error-ms { background: rgba(255,69,58,0.1); color: #c0392b; border: 1px solid rgba(255,69,58,0.2); }

/* ── TURNIKE PAGE ── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-item {
  background: white;
  padding: 20px 24px;
  transition: background 0.2s;
}
.spec-item:hover { background: var(--bg-secondary); }
.spec-label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.spec-value { font-size: 1rem; font-weight: 700; color: var(--text); }

/* ── COMPARISON TABLE ── */
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.comparison-table th {
  background: var(--text);
  color: white;
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 700;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table th.highlight { background: var(--primary); }
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}
.comparison-table td:first-child { font-weight: 600; color: var(--text); }
.comparison-table tr:last-child td:first-child { border-radius: 0 0 0 var(--radius-sm); }
.comparison-table tr:last-child td:last-child { border-radius: 0 0 var(--radius-sm) 0; }
.comparison-table td.check { color: var(--success); text-align: center; font-size: 1.1rem; }
.comparison-table td.cross { color: var(--danger); text-align: center; font-size: 1.1rem; }
.comparison-table tr:hover td { background: var(--bg-secondary); }

/* ── ABOUT PAGE ── */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -32px; top: 4px;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.timeline-content h5 { font-size: 0.95rem; margin-bottom: 4px; }
.timeline-content p { font-size: 0.85rem; margin: 0; }

/* ── TEAM CARD ── */
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white; font-weight: 800;
}
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--text-secondary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 48px 24px; margin: 0 16px; }
  .contact-form-card { padding: 28px 20px; }
  .spec-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .page-hero { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .btn-ms { padding: 12px 22px; }
}

/* ── SCROLL BAR ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-tertiary); }

/* ── SELECTION ── */
::selection { background: rgba(0,113,227,0.2); color: var(--text); }

/* ── LOADING ── */
.page-loader {
  position: fixed; inset: 0;
  background: white; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.page-loader.fade-out { opacity: 0; pointer-events: none; }
.loader-logo {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.loader-mark {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px; font-weight: 800;
  animation: loaderPulse 1s ease infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.loader-bar {
  width: 120px; height: 3px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: loadProgress 1.2s ease forwards;
}
@keyframes loadProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* ── CUSTOM ICON VISUAL ── */
.device-visual {
  background: linear-gradient(135deg, #0a0f1e 0%, #001440 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.device-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,113,227,0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.device-icon-wrap {
  position: relative; z-index: 1; text-align: center;
}
.device-icon-main {
  font-size: 7rem;
  color: white;
  opacity: 0.15;
  display: block;
}
.device-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.device-label {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, var(--primary-light), #e8eeff);
  border: 1px solid rgba(0,113,227,0.15);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.highlight-box h5 { color: var(--primary); margin-bottom: 8px; }
.highlight-box p { margin: 0; color: var(--text); font-size: 0.9rem; }

/* ── TABS ── */
.tabs-ms {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 40px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.tab-btn.active {
  background: white;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── DUAL LOGO SWITCHING ── */
.navbar-ms .logo-for-light { display: none; }
.navbar-ms .logo-for-dark  { display: block; }
.navbar-ms.scrolled .logo-for-light { display: block; }
.navbar-ms.scrolled .logo-for-dark  { display: none; }
/* If only one logo exists, always show it */
.logo-single { display: block !important; }

/* ── CART ICON IN NAV ── */
.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,113,227,0.1);
  color: var(--primary) !important;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cart-btn:hover {
  background: var(--primary);
  color: white !important;
}
.navbar-ms:not(.scrolled) .nav-cart-btn {
  background: rgba(255,255,255,0.15);
  color: white !important;
}
.navbar-ms:not(.scrolled) .nav-cart-btn:hover {
  background: rgba(255,255,255,0.3);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #FF453A;
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  line-height: 1;
}
