/* =============================================
   BREAKX — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --primary: #0a1628;
  --accent: #e8952e;
  --accent2: #f5b842;
  --light: #f7f8fc;
  --dark: #060f1e;
  --text: #1e1e2e;
  --muted: #6b7280;
  --card-bg: #ffffff;
}

/* ─── Reset ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; }

.text-danger {
    color: red;
}
/* ─── Shared Utilities ─── */
.section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent); margin-bottom: 12px;
}
.divider {
  width: 48px; height: 3px; background: var(--accent);
  border-radius: 2px; margin: 14px 0 22px;
}
.divider-center { margin: 14px auto 22px; }

/* ─── Buttons ─── */
.btn-outline {
  border: 1px solid var(--accent); color: var(--accent); padding: 9px 22px;
  border-radius: 6px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-solid {
  background: var(--accent); color: #fff; padding: 9px 22px;
  border-radius: 6px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.btn-solid:hover { background: #d07c1e; }
.btn-accent {
  background: var(--accent); color: #fff; padding: 13px 32px; border-radius: 6px;
  text-decoration: none; font-weight: 700; font-size: 0.92rem; transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(232,149,46,0.3); display: inline-flex; align-items: center; gap: 6px;
}
.btn-accent:hover { background: #d07c1e; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid #d0d5e0; color: var(--primary); padding: 13px 32px;
  border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px; background: var(--dark);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 38px; }
.nav-logo-text { color: #fff; font-size: 1.6rem; font-weight: 800; letter-spacing: 2px; font-family: 'DM Sans', sans-serif; }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ─── Hamburger ─── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer; padding: 4px;
  border: none; background: transparent; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Drawer ─── */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 99; flex-direction: column;
  padding: 32px 28px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu ul li a {
  display: block; padding: 16px 4px; color: rgba(255,255,255,0.85);
  text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.2s;
}
.mobile-menu ul li a:hover, .mobile-menu ul li a.active { color: var(--accent); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mobile-menu-cta .btn-outline,
.mobile-menu-cta .btn-solid { text-align: center; padding: 13px 20px; font-size: 0.95rem; }

/* =============================================
   HERO SLIDER (Homepage)
   ============================================= */
.hero-slider {
  position: relative; width: 100%; height: 92vh; min-height: 560px;
  overflow: hidden; background: var(--dark);
}
.slider-track { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
  display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,0.78) 0%, rgba(6,15,30,0.45) 55%, rgba(6,15,30,0.28) 100%);
}
.slide-content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 24px; max-width: 860px; width: 100%;
}
.slide.active .slide-content { animation: slideUp 0.7s ease forwards; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,149,46,0.18); border: 1px solid rgba(232,149,46,0.35);
  color: var(--accent2); padding: 6px 18px; border-radius: 24px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 24px; display: inline-flex;
}
.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: #fff; line-height: 1.15; max-width: 820px; margin: 0 auto 20px;
}
.slide-content h1 em { font-style: normal; color: var(--accent); }
.slide-content p {
  color: rgba(255,255,255,0.72); font-size: 1.08rem;
  max-width: 560px; margin: 0 auto 40px; line-height: 1.78;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn-primary {
  background: var(--accent); color: #fff; padding: 15px 40px; border-radius: 6px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(232,149,46,0.35);
}
.hero-btns .btn-primary:hover { background: #d07c1e; transform: translateY(-2px); }
.hero-btns .btn-sec {
  border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 15px 40px;
  border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.2s;
  backdrop-filter: blur(4px); background: rgba(255,255,255,0.06);
}
.hero-btns .btn-sec:hover { background: rgba(255,255,255,0.14); }
/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3);
  background: rgba(6,15,30,0.5); color: #fff; font-size: 1.2rem;
  cursor: pointer; transition: all 0.2s; backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }
/* Dots */
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10; align-items: center;
}
.dot {
  width: 10px; height: 10px; border-radius: 5px; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
}
.dot.active { background: var(--accent); border-color: var(--accent); width: 28px; }
.dot:hover:not(.active) { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.3); }
/* Progress bar */
.slider-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.1); z-index: 10; }
.slider-progress-bar { height: 100%; background: var(--accent); width: 0%; border-radius: 0 2px 2px 0; }

/* ─── Stats Bar ─── */
.stats-bar { background: var(--accent); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 24px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 2px; }

/* ─── About Strip ─── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; }
.about-img { overflow: hidden; position: relative; min-height: 420px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 420px; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,0.5) 0%, transparent 70%);
}
.about-text { background: var(--light); padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.1rem; line-height: 1.3; margin-bottom: 18px; color: var(--primary); }
.about-text p { color: var(--muted); line-height: 1.85; font-size: 0.95rem; margin-bottom: 14px; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px; color: var(--accent);
  font-weight: 700; text-decoration: none; font-size: 0.9rem; margin-top: 10px; transition: gap 0.2s;
}
.read-more:hover { gap: 10px; }

/* ─── Products Section (Homepage) ─── */
.products-section { padding: 90px 56px; background: #fff; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--primary); }
.section-header p { color: var(--muted); margin-top: 12px; font-size: 1rem; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.product-card {
  border: 1px solid #eaedf2; border-radius: 12px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(10,22,40,0.1); }
.product-card-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #142240 100%);
  position: relative; overflow: hidden;
}
.product-card-header::after {
  content: ''; position: absolute; right: -20px; bottom: -20px;
  width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.04);
}
.product-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.product-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #fff; margin-bottom: 6px; }
.product-card-header .tag {
  display: inline-block; background: rgba(232,149,46,0.2); border: 1px solid rgba(232,149,46,0.4);
  color: var(--accent2); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 3px 10px; border-radius: 20px;
}
.product-card-body { padding: 24px 32px 28px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.product-card-body p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.product-link {
  display: inline-flex; align-items: center; gap: 6px; background: var(--light);
  border: 1px solid #dde; color: var(--primary); text-decoration: none;
  font-size: 0.82rem; font-weight: 600; padding: 8px 16px; border-radius: 6px;
  transition: all 0.2s; width: fit-content;
}
.product-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── Values ─── */
.values-section { background: var(--dark); padding: 90px 56px; }
.values-section .section-header h2 { color: #fff; }
.values-section .section-header p { color: rgba(255,255,255,0.55); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.value-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 32px 20px; text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.value-card:hover { background: rgba(232,149,46,0.1); border-color: rgba(232,149,46,0.3); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { color: #fff; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.value-card p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.6; }

/* ─── Vision Mission ─── */
.vm-section { padding: 90px 56px; background: var(--light); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1000px; margin: 0 auto; }
.vm-card {
  background: #fff; border-radius: 12px; padding: 44px 40px;
  border-top: 4px solid var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.vm-card .vm-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 10px; }
.vm-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 14px; }
.vm-card p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }

/* ─── Join / CTA Section ─── */
.join-section, .cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1f3c 100%);
  padding: 90px 56px; text-align: center;
}
.join-section h2, .cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: #fff; margin-bottom: 16px; }
.join-section p, .cta-section p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 40px; line-height: 1.75; font-size: 1rem; }
.join-btns, .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.join-btns .jb1, .cta-btns .cb1 {
  background: var(--accent); color: #fff; padding: 15px 42px; border-radius: 6px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(232,149,46,0.35);
}
.join-btns .jb1:hover, .cta-btns .cb1:hover { background: #d07c1e; transform: translateY(-2px); }
.join-btns .jb2, .cta-btns .cb2 {
  border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 15px 42px;
  border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.2s;
}
.join-btns .jb2:hover, .cta-btns .cb2:hover { background: rgba(255,255,255,0.08); }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 56px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: 2px; margin-bottom: 14px; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 0.88rem; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}

/* =============================================
   PRODUCTS PAGE SPECIFIC
   ============================================= */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1f3c 55%, #142240 100%);
  padding: 80px 56px 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,149,46,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(245,184,66,0.08) 0%, transparent 50%);
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.breadcrumb .current { color: var(--accent); font-size: 0.82rem; font-weight: 600; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; line-height: 1.2; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* Tabs */
.tabs-bar {
  background: #fff; border-bottom: 2px solid #eaedf2;
  display: flex; justify-content: center;
  position: sticky; top: 72px; z-index: 50;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 18px 32px; background: none; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; white-space: nowrap;
}
.tab-btn:hover { color: var(--accent); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-btn .tab-icon { font-size: 1.1rem; }

/* Product Sections */
.product-section { display: none; }
.product-section.active { display: block; }

/* Product Detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.product-detail-visual { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.product-detail-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-detail-visual .visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,0.6) 0%, rgba(6,15,30,0.2) 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-detail-visual .big-icon { font-size: 7rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.product-detail-info { background: var(--light); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.product-detail-info h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary); margin-bottom: 16px; line-height: 1.25; }
.product-detail-info .desc { color: var(--muted); line-height: 1.85; font-size: 0.97rem; margin-bottom: 28px; }
.feature-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text); }
.feature-list li::before { content: '✓'; color: var(--accent); font-weight: 800; font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* How It Works */
.how-section { padding: 80px 56px; background: #fff; }
.how-section .section-header { text-align: center; margin-bottom: 52px; }
.how-section .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.1rem; color: var(--primary); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.step-card { text-align: center; padding: 36px 28px; border: 1px solid #eaedf2; border-radius: 12px; transition: box-shadow 0.25s, transform 0.25s; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,22,40,0.09); }
.step-num {
  width: 48px; height: 48px; background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 20px;
}
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* Highlights */
.highlights-strip { background: var(--dark); padding: 64px 56px; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.highlight-item { text-align: center; }
.highlight-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--accent); }
.highlight-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 4px; }

/* Compare Table */
.compare-section { padding: 80px 56px; background: var(--light); }
.compare-section .section-header { text-align: center; margin-bottom: 48px; }
.compare-section .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.1rem; color: var(--primary); }
.compare-table {
  width: 100%; max-width: 900px; margin: 0 auto; border-collapse: collapse;
  background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.compare-table th { background: var(--primary); color: #fff; padding: 16px 20px; text-align: left; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.compare-table td { padding: 14px 20px; font-size: 0.9rem; border-bottom: 1px solid #eaedf2; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fafbff; }
.compare-table .check { color: var(--accent); font-weight: 800; font-size: 1.1rem; }
.compare-table .cross { color: #ccc; font-size: 1.1rem; }

/* All Products Overview */
.all-products { padding: 80px 56px; background: #fff; }
.all-products .section-header { text-align: center; margin-bottom: 52px; }
.all-products .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary); }
.all-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 980px; margin: 0 auto; }
.all-card {
  border: 1px solid #eaedf2; border-radius: 12px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; cursor: pointer;
}
.all-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(10,22,40,0.1); }
.all-card-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #142240 100%);
  position: relative; overflow: hidden;
}
.all-card-header::after { content: ''; position: absolute; right: -20px; bottom: -20px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.p-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.all-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #fff; margin-bottom: 6px; }
.p-tag { display: inline-block; background: rgba(232,149,46,0.2); border: 1px solid rgba(232,149,46,0.4); color: var(--accent2); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 10px; border-radius: 20px; }
.all-card-body { padding: 24px 32px 28px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.all-card-body p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 6px; background: var(--light); border: 1px solid #dde; color: var(--primary); text-decoration: none; font-size: 0.82rem; font-weight: 600; padding: 8px 16px; border-radius: 6px; transition: all 0.2s; width: fit-content; }
.card-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .about-strip { grid-template-columns: 1fr; }
  .products-grid, .vm-grid, .all-grid, .product-detail { grid-template-columns: 1fr; }
  .values-grid, .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero, .products-section, .values-section, .vm-section, .join-section,
  .cta-section, .how-section, .compare-section, .all-products, .highlights-strip { padding: 56px 20px; }
  footer { padding: 48px 20px 24px; }
  .about-text { padding: 48px 28px; }
  .product-detail-info { padding: 40px 24px; }
  .product-detail-visual { min-height: 260px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .tab-btn { padding: 16px 18px; font-size: 0.82rem; }
}
@media (max-width: 560px) {
  .values-grid, .highlights-grid, .footer-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.8rem; }
  .compare-table td, .compare-table th { padding: 12px 10px; }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page-strip { display: grid; grid-template-columns: 1fr 1fr; }
.about-page-img { overflow: hidden; position: relative; min-height: 500px; }
.about-page-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 500px; }
.about-page-img .img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,15,30,0.55) 0%, transparent 70%); }

.team-section { padding: 90px 56px; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #142240); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; margin: 0 auto 20px; }
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 12px; }
.team-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.milestones-section { background: var(--dark); padding: 90px 56px; }
.milestones-section .section-header h2 { color: #fff; }
.milestones-section .section-header p { color: rgba(255,255,255,0.55); }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; align-items: center; }
.timeline-item:nth-child(even) .tl-content { order: -1; text-align: right; }
.tl-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; background: var(--accent); border-radius: 50%; margin-top: 6px; }
.tl-year { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
.tl-content h3 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.tl-content p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }

/* =============================================
   OPPORTUNITY PAGE
   ============================================= */
.opp-intro { display: grid; grid-template-columns: 1fr 1fr; }
.opp-intro-img { overflow: hidden; position: relative; min-height: 480px; }
.opp-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 480px; }
.opp-intro-img .img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,15,30,0.55) 0%, transparent 70%); }
.opp-intro-text { background: var(--light); padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.opp-intro-text h2 { font-family: 'Playfair Display', serif; font-size: 2.1rem; line-height: 1.3; margin-bottom: 18px; color: var(--primary); }
.opp-intro-text p { color: var(--muted); line-height: 1.85; font-size: 0.95rem; margin-bottom: 14px; }

.income-section { padding: 90px 56px; background: #fff; }
.income-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.income-card { border: 1px solid #eaedf2; border-radius: 12px; padding: 36px 28px; text-align: center; transition: transform 0.25s, box-shadow 0.25s; }
.income-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(10,22,40,0.1); }
.income-card .ic-icon { font-size: 2.4rem; margin-bottom: 16px; }
.income-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; }
.income-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.income-card.featured { background: linear-gradient(135deg, var(--primary), #142240); border-color: transparent; }
.income-card.featured h3 { color: #fff; }
.income-card.featured p { color: rgba(255,255,255,0.65); }
.income-card.featured .ic-icon { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }

.steps-opp { padding: 90px 56px; background: var(--light); }
.steps-opp .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary); }
.opp-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; position: relative; }
.opp-steps-grid::before { content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); z-index: 0; }
.opp-step { text-align: center; position: relative; z-index: 1; }
.opp-step-num { width: 48px; height: 48px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 20px; border: 3px solid #fff; box-shadow: 0 0 0 3px var(--accent); }
.opp-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.opp-step p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

.earnings-banner { background: var(--accent); padding: 60px 56px; text-align: center; }
.earnings-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: #fff; margin-bottom: 12px; }
.earnings-banner p { color: rgba(255,255,255,0.88); font-size: 1rem; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.earnings-banner .eb-btn { background: #fff; color: var(--accent); padding: 14px 40px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; display: inline-block; }
.earnings-banner .eb-btn:hover { background: var(--dark); color: #fff; }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-section { padding: 80px 56px; background: #fff; }
.faq-categories { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.faq-cat-btn { padding: 9px 24px; border: 1px solid #dde; border-radius: 30px; background: none; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid #eaedf2; border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--text); cursor: pointer; text-align: left; gap: 16px; transition: background 0.2s; }
.faq-question:hover { background: var(--light); }
.faq-question.open { background: var(--light); color: var(--accent); }
.faq-chevron { font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; color: var(--accent); }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; }
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--muted); font-size: 0.92rem; line-height: 1.8; }

.faq-cta { background: var(--light); padding: 80px 56px; text-align: center; }
.faq-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.faq-cta p { color: var(--muted); max-width: 460px; margin: 0 auto 32px; line-height: 1.75; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { display: grid; grid-template-columns: 1fr 1.4fr; min-height: 600px; }
.contact-info { background: linear-gradient(135deg, var(--primary) 0%, #142240 100%); padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; right: -60px; bottom: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.contact-info .section-label { color: var(--accent2); }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; margin-bottom: 16px; line-height: 1.3; }
.contact-info p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.cd-text h4 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.cd-text p, .cd-text a { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.cd-text a:hover { color: var(--accent); }

.contact-form-wrap { background: #fff; padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary); margin-bottom: 8px; }
.contact-form-wrap .form-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid #dde; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--light); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,149,46,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--accent); color: #fff; padding: 14px 36px; border: none; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; box-shadow: 0 6px 20px rgba(232,149,46,0.3); align-self: flex-start; }
.form-submit:hover { background: #d07c1e; transform: translateY(-2px); }
.form-success { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: 8px; padding: 20px 24px; color: #15803d; font-weight: 600; font-size: 0.95rem; text-align: center; }

.map-section { background: var(--light); padding: 80px 56px; text-align: center; }
.map-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.map-section p { color: var(--muted); margin-bottom: 40px; }
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.office-card { background: #fff; border-radius: 10px; padding: 28px 24px; text-align: center; border: 1px solid #eaedf2; transition: box-shadow 0.2s; }
.office-card:hover { box-shadow: 0 8px 24px rgba(10,22,40,0.08); }
.office-flag { font-size: 2rem; margin-bottom: 12px; }
.office-card h3 { font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.office-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* =============================================
   ADDITIONAL RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-page-strip, .opp-intro, .contact-section { grid-template-columns: 1fr; }
  .about-page-img, .opp-intro-img { min-height: 260px; }
  .opp-intro-text { padding: 40px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .income-grid { grid-template-columns: 1fr; }
  .opp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .opp-steps-grid::before { display: none; }
  .offices-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .team-section, .milestones-section, .income-section, .steps-opp, .earnings-banner, .faq-section, .faq-cta, .map-section { padding: 56px 20px; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-item:nth-child(even) .tl-content { order: unset; text-align: left; }
  /* Slider responsive */
  .hero-slider { height: 75vh; min-height: 480px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .opp-steps-grid { grid-template-columns: 1fr; }
  /* Slider responsive */
  .hero-slider { height: 85vh; min-height: 520px; }
  .slider-arrow { display: none; }
  .slide-content h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}

/* =============================================
   AUTH PAGES (Login / Register)
   ============================================= */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }

/* Left panel — branding */
.auth-visual {
  background: linear-gradient(155deg, var(--dark) 0%, #0d1f3c 50%, #142240 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 48px 56px; min-height: 100vh;
}
.auth-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=900&q=70');
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.auth-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(6,15,30,0.9) 0%, rgba(10,22,40,0.75) 100%);
}
.auth-visual-top, .auth-visual-mid, .auth-visual-bot { position: relative; z-index: 2; }
.auth-visual-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.auth-visual-logo .logo-text { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: 2px; }
.auth-visual-logo .logo-text span { color: var(--accent); }

.auth-visual-mid { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 40px 0; }
.auth-visual-mid .auth-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,149,46,0.15); border: 1px solid rgba(232,149,46,0.3);
  color: var(--accent2); padding: 5px 14px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 24px; width: fit-content;
}
.auth-visual-mid h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff; line-height: 1.25; margin-bottom: 18px;
}
.auth-visual-mid h2 em { font-style: normal; color: var(--accent); }
.auth-visual-mid p { color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.8; max-width: 360px; }

.auth-perks { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.auth-perk { display: flex; align-items: center; gap: 12px; }
.auth-perk .perk-icon { font-size: 1.2rem; flex-shrink: 0; }
.auth-perk span { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }

.auth-visual-bot { display: flex; gap: 24px; flex-wrap: wrap; }
.auth-stat { text-align: center; }
.auth-stat .num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.auth-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Right panel — form */
.auth-form-panel {
  background: #fff; display: flex; align-items: center; justify-content: center;
  padding: 48px 56px; overflow-y: auto;
}
.auth-form-box { width: 100%; max-width: 420px; }
.auth-form-box .auth-form-header { margin-bottom: 36px; }
.auth-form-box .auth-form-header h1 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.auth-form-box .auth-form-header p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* Tabs: Login / Register */
.auth-tabs { display: flex; border-bottom: 2px solid #eaedf2; margin-bottom: 32px; }
.auth-tab {
  flex: 1; padding: 12px 16px; background: none; border: none; border-bottom: 3px solid transparent;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700;
  color: var(--muted); cursor: pointer; margin-bottom: -2px; transition: all 0.2s;
}
.auth-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.auth-tab:hover:not(.active) { color: var(--primary); }

/* Form panels */
.auth-panel { display: none; }
.auth-panel.active { display: block; }

/* Form fields */
.auth-field { margin-bottom: 18px; }
.auth-field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.auth-field .input-wrap { position: relative; }
.auth-field .input-wrap .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1rem; pointer-events: none; color: var(--muted); }
.auth-field input {
  width: 100%; padding: 12px 14px 12px 42px; border: 1.5px solid #dde4ec; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--text);
  background: var(--light); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.auth-field input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(232,149,46,0.12); }
.auth-field input.no-icon { padding-left: 14px; }
.auth-field .toggle-pw {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1rem; padding: 0;
}
.auth-field .toggle-pw:hover { color: var(--accent); }

/* Row for two fields side by side */
.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Checkbox */
.auth-check { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.auth-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--accent); cursor: pointer; }
.auth-check label { font-size: 0.85rem; color: var(--muted); cursor: pointer; line-height: 1.4; }
.auth-check a { color: var(--accent); text-decoration: none; font-weight: 600; }
.auth-check a:hover { text-decoration: underline; }

/* Forgot link */
.auth-forgot { display: flex; justify-content: flex-end; margin-top: -10px; margin-bottom: 20px; }
.auth-forgot a { font-size: 0.82rem; color: var(--accent); text-decoration: none; font-weight: 600; }
.auth-forgot a:hover { text-decoration: underline; }

/* Submit button */
.auth-submit {
  width: 100%; padding: 14px; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(232,149,46,0.3); letter-spacing: 0.3px;
}
.auth-submit:hover { background: #d07c1e; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,149,46,0.4); }
.auth-submit:active { transform: translateY(0); }

/* Divider */
.auth-or { display: flex; align-items: center; gap: 12px; margin: 22px 0; }
.auth-or::before, .auth-or::after { content: ''; flex: 1; height: 1px; background: #eaedf2; }
.auth-or span { font-size: 0.78rem; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* Social buttons */
.auth-social { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border: 1.5px solid #dde4ec; border-radius: 8px;
  background: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--text); cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.auth-social-btn:hover { border-color: var(--accent); color: var(--accent); background: #fff8f2; }
.auth-social-btn .s-icon { font-size: 1.1rem; }

/* Switch link */
.auth-switch { text-align: center; margin-top: 24px; font-size: 0.88rem; color: var(--muted); }
.auth-switch a { color: var(--accent); font-weight: 700; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* Success message */
.auth-success {
  display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: 10px;
  padding: 20px 24px; text-align: center; color: #15803d;
}
.auth-success .success-icon { font-size: 2.5rem; margin-bottom: 10px; }
.auth-success h3 { font-size: 1.1rem; margin-bottom: 6px; }
.auth-success p { font-size: 0.88rem; }

/* Error message */
.auth-error {
  display: none; background: #fef2f2; border: 1px solid #fca5a5; border-radius: 8px;
  padding: 12px 16px; color: #dc2626; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 18px; text-align: center;
}
.auth-error.show { display: block; }

/* Responsive */
@media (max-width: 900px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-form-panel { padding: 40px 24px; min-height: 100vh; align-items: flex-start; padding-top: 60px; }
}
@media (max-width: 480px) {
  .auth-row { grid-template-columns: 1fr; }
  .auth-social { grid-template-columns: 1fr; }
  .auth-form-panel { padding: 32px 20px; }
}
