/* ===========================
   MOKIATO FACTORY - REDESIGN
   Design inspired by Protex.es
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #0A1628;
  --primary-mid: #162447;
  --primary-light: #1E3A5F;
  --accent: #F1B300;
  --accent-dark: #CC9800;
  --accent-glow: rgba(241, 179, 0, 0.15);
  --orange: #FF5722;
  --white: #FFFFFF;
  --light: #F7F8FA;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --dark-text: #0D1B2A;
  --body-text: #4B5563;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === UTILITIES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-top {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
}

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

.header-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.header-top-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.header-top-left a:hover { color: var(--accent); }

.header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-top-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}

.header-top-right a:hover { color: var(--white); }

.header-main {
  padding: 16px 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-name span {
  color: var(--accent);
}

.logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link.active {
  color: var(--accent);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.nav-dropdown-item:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.nav-dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

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

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  color: var(--white);
}

/* === HERO === */
.hero {
  background: var(--primary);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245, 197, 24, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(30, 58, 95, 0.8) 0%, transparent 70%);
}

.hero-grid-bg {
  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;
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title span {
  color: var(--accent);
  display: block;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.hero-stat-num span {
  color: var(--accent);
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 420px;
  position: relative;
}

.hero-sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.hero-sport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.hero-sport-item:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateY(-3px);
}

.hero-sport-item .sport-icon {
  font-size: 24px;
}

.hero-sport-item span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.2;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--accent);
  border-radius: var(--radius);
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-badge-text {
  flex: 1;
}

.hero-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.hero-badge-text span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(10, 22, 40, 0.7);
}

/* === FEATURES / INCLUYE === */
.features-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.3), transparent);
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-label {
  justify-content: center;
}

.features-header .section-label::before {
  display: none;
}

.features-header .section-title {
  color: var(--white);
}

.features-header .section-subtitle {
  color: rgba(255,255,255,0.55);
  margin: 0 auto;
}

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

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--orange));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(245, 197, 24, 0.2);
  background: rgba(245, 197, 24, 0.04);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(245, 197, 24, 0.2);
  transform: scale(1.05);
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* === SPORTS SECTION === */
.sports-section {
  padding: 100px 0;
  background: var(--light);
}

.sports-header {
  text-align: center;
  margin-bottom: 56px;
}

.sports-header .section-label {
  justify-content: center;
}

.sports-header .section-label::before {
  display: none;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sport-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.sport-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.sport-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.0) 0%,
    rgba(10, 22, 40, 0.15) 50%,
    rgba(10, 22, 40, 0.75) 100%
  );
  transition: var(--transition);
  z-index: 1;
}

.sport-card:hover .sport-card-bg {
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.0) 0%,
    rgba(10, 22, 40, 0.1) 50%,
    rgba(10, 22, 40, 0.70) 100%
  );
}

.sport-card-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  font-size: 72px;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.sport-card:hover .sport-card-emoji {
  opacity: 0;
}

.sport-card-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
  z-index: 2;
}

.sport-card:hover .sport-card-accent {
  opacity: 1;
  transform: scale(1);
}

.sport-card-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding-top: 48px;
}

.sport-card-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.sport-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sport-card-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* === WHY SECTION === */
.why-section {
  padding: 100px 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content {}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-item-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
}

.why-item-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.why-visual {
  position: relative;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-stat-card:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-stat-card:hover .why-stat-num,
.why-stat-card:hover .why-stat-label {
  color: var(--white);
}

.why-stat-card:hover .why-stat-num span {
  color: var(--accent);
}

.why-stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -2px;
  transition: var(--transition);
}

.why-stat-num span { color: var(--accent); }

.why-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: var(--transition);
}

.why-stat-card.accent {
  background: var(--primary);
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px 32px;
}

.why-stat-card.accent .why-stat-num {
  font-size: 56px;
  color: var(--white);
  flex-shrink: 0;
}

.why-stat-card.accent .why-stat-num span { color: var(--accent); }

.why-stat-card.accent .why-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* === PROCESS === */
.process-section {
  padding: 100px 0;
  background: var(--gray-100);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header .section-label {
  justify-content: center;
}

.process-header .section-label::before { display: none; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--orange));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* === MATERIALS === */
.materials-section {
  padding: 80px 0;
  background: var(--primary);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.material-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.material-card:hover {
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.05);
  transform: translateY(-4px);
}

.material-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.material-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.material-weight {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.material-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.material-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.material-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before { display: none; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark-text);
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-500);
}

/* === ECOMMERCE BANNER === */
.ecommerce-banner {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #FFB800 100%);
  position: relative;
  overflow: hidden;
}

.ecommerce-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.ecommerce-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.ecommerce-banner-content {}

.ecommerce-banner-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10,22,40,0.6);
  margin-bottom: 8px;
}

.ecommerce-banner-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.ecommerce-banner-desc {
  font-size: 16px;
  color: rgba(10,22,40,0.7);
  max-width: 500px;
}

.ecommerce-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(245,197,24,0.06), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-content .section-title {
  color: var(--white);
}

.contact-content .section-subtitle {
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

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

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  min-height: 950px;
}

.contact-form-wrapper h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 24px;
}

/* === FOOTER === */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 0;
}

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

.footer-brand .logo-name {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

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

/* === SPORT PAGE HERO === */
.sport-hero {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.sport-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,197,24,0.08), transparent);
}

.sport-hero-grid-bg {
  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: 48px 48px;
}

.sport-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sport-hero-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sport-hero-emoji img {
  max-height: 440px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 16px 0;
  background: var(--primary-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

.breadcrumb-current {
  color: var(--accent);
  font-weight: 600;
}

/* === SPORT FEATURES === */
.sport-features-section {
  padding: 80px 0;
  background: var(--light);
}

.sport-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sport-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.sport-feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.sport-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.sport-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.sport-feature-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* === MOBILE === */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sport-card-wide {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-top { display: none; }

  .nav, .header-actions .btn:not(.btn-whatsapp) {
    display: none;
  }

  .mobile-menu-btn { display: flex; }

  .hero .container,
  .why-inner,
  .contact-inner,
  .sport-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-visual { display: none; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ecommerce-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .ecommerce-banner-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .why-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sport-features-grid {
    grid-template-columns: 1fr;
  }

  .sport-hero-emoji { display: none; }

  .contact-form-wrapper {
    padding: 24px;
  }
}
