/* ============================================
   STOCKTELLS MAIN STYLES
   ============================================ */

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }

/* CSS VARIABLES */
:root {
  --crimson: #8B0000;
  --forest: #1A4A1A;
  --gold: #C9A84C;
  --light-gold: #E5C97A;
  --off-white: #f9f7f2;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  animation: slideInDown 0.8s ease;
}

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

.logo-icon {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(139, 0, 0, 0.2));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-text .stock { color: var(--crimson); }
.logo-text .tells { color: var(--gold); }

.nav-items {
  display: flex;
  gap: 4rem;
  list-style: none;
}
.nav-items a {
  text-decoration: none;
  color: #333;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
}
.nav-items a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-items a:hover { color: var(--crimson); }
.nav-items a:hover::after { width: 100%; }

.nav-btn {
  background: linear-gradient(135deg, var(--crimson), #a52020);
  color: white;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.25);
  letter-spacing: 0.5px;
}
.nav-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 0, 0, 0.4);
}
.nav-btn:active { transform: scale(0.95); }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  gap: 0;
  background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: linear-gradient(155deg, var(--forest) 0%, #0a3a0a 50%, #051205 100%);
  padding: 20px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* ANIMATED BACKGROUND CIRCLES */
.hero-left::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  animation: floatUp 6s ease-in-out infinite;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 2%;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  animation: floatUp 8s ease-in-out infinite 1s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  color: #ffd700;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 50px;
  margin-bottom: 36px;
  width: fit-content;
  letter-spacing: 1px;
  animation: slideInLeft 0.8s ease 0.2s both;
  backdrop-filter: blur(10px);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 14px;
  animation: slideInLeft 0.8s ease 0.3s both;
  letter-spacing: -1px;
}
.hero-h1 .accent { color: var(--gold); display: block; margin-top: 8px; }

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: slideInLeft 0.8s ease 0.4s both;
  letter-spacing: 0.3px;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  margin-bottom: 72px;
  animation: slideInLeft 0.8s ease 0.5s both;
  max-width: 450px;
}

.btn {
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: #111;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}
.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.5);
}

.hero-ctas .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.hero-ctas .btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: slideInLeft 0.8s ease 0.6s both;
}


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

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* HERO RIGHT - FORM */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.form-card {
  background: white;
  padding: 52px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: slideInRight 0.8s ease 0.3s both;
  position: relative;
  overflow: hidden;
}

/* .form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
} */

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.form-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: none;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #e0d9cc;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fafaf8;
  outline: none;
  transition: all 0.4s;
  font-weight: 400;
}

.form-group input::placeholder {
  color: #ccc;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--forest);
  background: white;
  box-shadow: 0 0 0 5px rgba(26, 74, 26, 0.08);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--crimson), #a52020);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 32px rgba(139, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139, 0, 0, 0.4);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 20px;
  font-weight: 300;
}

/* ============================================
   TICKER SECTION
   ============================================ */

.ticker-section {
  background: #1a1a1a;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-content {
  display: flex;
  gap: 80px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all 0.3s;
}
.ticker-item:hover { color: white; }

.tick-symbol {
  font-weight: 700;
  color: #fff;
}

.tick-value {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  min-width: 70px;
}

.tick-change {
  font-weight: 700;
  font-size: 0.85rem;
}
.tick-up { color: #2ecc71; }
.tick-down { color: #e74c3c; }

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
  padding: 64px 6%;
  text-align: center;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border: 2px solid #e0d9cc;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.partner-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.partner-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  color: white;
}

/* PREMIUM PARTNER LOGOS */
.partners-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo-card {
  background: white;
  border: 2px solid #e0d9cc;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.partner-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.partner-logo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(139, 0, 0, 0.02));
  opacity: 0;
  transition: opacity 0.6s;
}

.partner-logo-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.partner-logo-card:hover::before { transform: scaleX(1); }
.partner-logo-card:hover::after { opacity: 1; }

.logo-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.partner-logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
  transition: all 0.4s;
}

.partner-logo-card:hover .partner-logo {
  filter: drop-shadow(0 8px 24px rgba(139, 0, 0, 0.15));
  transform: scale(1.08);
}

.partner-text {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .partners-grid-premium { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .partners-grid-premium { grid-template-columns: 1fr; }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

section {
  position: relative;
  overflow: hidden;
}

.section {
  padding: 120px 6%;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.section-title .accent { color: var(--gold); }
.section-title.white { color: var(--off-white); }

.section-desc {
  font-size: 1.08rem;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.section-desc.white {
  color: var(--off-white);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: white;
}

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

.service-card {
  background: white;
  border: 2px solid #e0d9cc;
  border-radius: 24px;
  padding: 48px 40px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(139, 0, 0, 0.02));
  opacity: 0;
  transition: opacity 0.6s;
}

.service-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  font-size: 44px;
  margin-bottom: 24px;
  display: block;
  animation: floatUp 3s ease-in-out infinite;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s;
}
.service-link:hover { gap: 14px; color: var(--crimson); }

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
  background: linear-gradient(135deg, var(--forest) 0%, #0a3a0a 100%);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.product-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.product-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
  animation: floatUp 4s ease-in-out infinite;
}

.product-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.product-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us {
  background: var(--off-white);
}

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

.why-left {
  display: flex;
  flex-direction: column;
}

.why-stat {
  font-family: 'Playfair Display', serif;
  font-size: 7.2rem;
  font-weight: 900;
  color: var(--crimson);
  line-height: 0.9;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.why-label {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 36px;
  font-weight: 300;
}

.why-divider {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 3px;
  margin-bottom: 36px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.why-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--forest), #0a3a0a);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 24px rgba(26, 74, 26, 0.2);
}

.why-text h4 {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.why-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */

.calculator {
  background: white;
}

.calc-container {
  background: linear-gradient(135deg, var(--forest) 0%, #0a3a0a 100%);
  border-radius: 32px;
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  color: white;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.calc-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent);
  animation: floatUp 8s ease-in-out infinite;
}

.calc-left {
  position: relative;
  z-index: 2;
}

.calc-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.calc-left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 40px;
  font-weight: 300;
}

.calc-display {
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.calc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.calc-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.calc-inputs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-input-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.calc-input-group input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.4s;
  font-weight: 500;
}

.calc-input-group input::placeholder { color: rgba(255, 255, 255, 0.4); }

.calc-input-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.15);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  background: var(--off-white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testi-card {
  background: white;
  border-radius: 24px;
  padding: 44px 40px;
  border: 2px solid #e0d9cc;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  opacity: 0;
  transition: all 0.6s;
}

.testi-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.testi-card:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
}

.testi-quote {
  font-size: 3.6rem;
  color: var(--gold);
  opacity: 0.4;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  line-height: 0.8;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.testi-text {
  font-size: 0.98rem;
  color: #333;
  line-height: 1.85;
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 300;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

.testi-role {
  font-size: 0.8rem;
  color: #999;
  font-weight: 300;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--crimson) 0%, #8B0000 50%, var(--forest) 100%);
  padding: 100px 6%;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.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.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: #0f0f0f;
  padding: 64px 6% 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.footer-logo .stock { color: var(--crimson); }
.footer-logo .tells { color: var(--gold); }

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 700px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* ============================================
   STICKY FOOTER CTA - DESKTOP ONLY
   ============================================ */

.sticky-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--forest) 0%, #0a3a0a 100%);
  padding: 12px 6%;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  border-top: 1.5px solid rgba(201, 168, 76, 0.3);
  display: none;
}

.sticky-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.sticky-footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}

.sticky-footer-title::before {
  content: '✨ ';
  filter: grayscale(100%) brightness(200%);
}

.sticky-footer-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 500px;
}

.sticky-footer-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.4s;
  font-weight: 500;
}

.sticky-footer-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.sticky-footer-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.sticky-footer-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: #111;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.sticky-footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
}

.sticky-footer-btn:active {
  transform: scale(0.95);
}

/* Show sticky footer on desktop */
@media (min-width: 993px) {
  footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 992px) {
  .sticky-footer-cta {
    display: none !important;
  }
}

/* ============================================
   WHATSAPP FAB
   ============================================ */

.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatUp 3s ease-in-out infinite;
}

.wa-fab:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.6);
}

.wa-fab svg { width: 36px; height: 36px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* =========================
   Large Tablets (1200px)
   ========================= */
@media (max-width: 1200px) {
  .nav-items { gap: 2.5rem; }
  .hero-h1 { font-size: 1.8rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-stats { gap: 32px; }
  .section-title { font-size: 2.4rem; }
  .calc-container { padding: 60px; gap: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 60px; }
  .why-stat { font-size: 5.5rem; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================
   Tablets (992px)
   ========================= */
@media (max-width: 992px) {
  /* Navigation - Hamburger Menu */
  .nav-items {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    list-style: none;
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-items.active {
    height: auto;
    min-height: 320px;
  }

  .nav-items li {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nav-items a {
    display: block;
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .nav-items a::after {
    display: none;
  }

  /* Hamburger Icon */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-btn-mobile {
    display: block;
    width: calc(100% - 48px);
    margin: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--crimson), #a52020);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 120px 6% 80px;
    min-height: auto;
  }

  .hero-left::before,
  .hero-left::after {
    width: 250px;
    height: 250px;
  }

  .hero-h1 {
    font-size: 1.6rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 36px;
  }

  .hero-ctas {
    flex-direction: row;
    gap: 14px;
    margin-bottom: 48px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 18px 32px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 36px;
  }

  .stat-value {
    font-size: clamp(2rem, 5vw, 2.4rem);
  }

  .form-card {
    padding: 40px 32px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Calculator */
  .calc-container {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 40px;
    border-radius: 24px;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-stat {
    font-size: clamp(4rem, 10vw, 6rem);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* =========================
   Small Tablets (768px)
   ========================= */
@media (max-width: 768px) {
  .nav-btn{
        padding: 8px 32px;
  }

  nav {
    padding: 0 4%;
    height: auto;
  }

  .nav-logo {
    gap: 10px;
    margin-left: 4%;
  }

  .logo-icon {
    width: 100px;
    height: 100px;
    margin-left: 0;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-items {
    top: 70px;
  }

  /* Hero */
  .hero-left {
    padding: 100px 4% 60px;
  }

  .hero-h1 {
    font-size: clamp(1.75rem, 6vw, 2rem);
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 10px 18px;
    margin-bottom: 28px;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 32px;
    line-height: 1.7;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
  }

  .stat-value {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .form-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .form-title {
    font-size: 1.4rem;
  }

  /* Section Common */
  .section {
    padding: 80px 4%;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .section-desc {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 0 8px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 36px 28px;
    border-radius: 20px;
  }

  .service-icon {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }

  .product-card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  /* Calculator */
  .calc-container {
    padding: 32px 24px;
    gap: 32px;
    border-radius: 20px;
  }

  .calc-left h3 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .testi-card {
    padding: 32px 28px;
    border-radius: 20px;
  }

  .testi-quote {
    font-size: 2.5rem;
  }

  /* CTA */
  .cta-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* WhatsApp FAB */
  .wa-fab {
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
  }

  .wa-fab svg {
    width: 28px;
    height: 28px;
  }

  /* Partners */
  .partners-section {
    padding: 48px 4%;
  }

  .partners-grid {
    gap: 32px;
  }

  .partner-badge {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .partner-logo-card {
    padding: 28px 24px;
    min-height: 180px;
  }
}

/* =========================
   Mobile Devices (576px and below)
   ========================= */
@media (max-width: 576px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* Body scroll lock when mobile menu open */
  body.menu-open {
    overflow: hidden;
  }

  /* Navigation */
  nav {
    padding: 0 16px;
    height: 80px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo-icon {
    width: 100px;
    height: 100px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hamburger {
    padding: 8px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-items {
    top: 80px;
  }

  .nav-items li {
    padding: 16px 0;
  }

  .nav-items a {
    font-size: 0.8rem;
    padding: 10px 20px;
  }

  .nav-btn-mobile {
    margin: 20px 16px;
    padding: 14px;
    font-size: 0.8rem;
    border-radius: 10px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 90px 16px 60px;
    min-height: auto;
  }

  .hero-left::before,
  .hero-left::after {
    width: 180px;
    height: 180px;
  }

  .hero-h1 {
    font-size: clamp(1.5rem, 7vw, 1.75rem);
    margin-bottom: 12px;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 8px 14px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }

  .hero-desc {
    font-size: 0.85rem;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .hero-ctas {
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
  }

  .stat-value {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }

  .hero-right {
    padding: 24px 16px;
  }

  .form-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .form-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 0.75rem;
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }

  .form-submit {
    padding: 15px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  /* Section Common */
  .section {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-label {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }

  .section-desc {
    font-size: 0.9rem;
    padding: 0;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .service-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .service-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .product-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  /* Why Us */
  .why-grid {
    gap: 40px;
  }

  .why-stat {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .why-label {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .why-divider {
    width: 60px;
    height: 4px;
    margin-bottom: 24px;
  }

  .why-items {
    gap: 28px;
  }

  .why-item {
    gap: 20px;
  }

  .why-num {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  /* Calculator */
  .calc-container {
    padding: 28px 20px;
    gap: 28px;
    border-radius: 16px;
  }

  .calc-left h3 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .calc-left p {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .calc-display {
    padding: 24px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .calc-num {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .calc-input-group input {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }

  /* Testimonials */
  .testi-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .testi-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .testi-quote {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .testi-text {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .testi-avatar {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  /* CTA */
  .cta-section {
    padding: 60px 16px;
  }

  .cta-content h2 {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    margin-bottom: 16px;
  }

  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  footer {
    padding: 48px 16px 24px;
  }

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

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

  .footer-legal {
    font-size: 0.65rem;
  }

  /* Partners */
  .partners-section {
    padding: 40px 16px;
  }

  .partners-label {
    font-size: 0.65rem;
    margin-bottom: 28px;
  }

  .partners-grid {
    gap: 20px;
  }

  .partner-badge {
    padding: 10px 20px;
    font-size: 0.75rem;
  }

  .partners-grid-premium {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .partner-logo-card {
    padding: 24px 20px;
    min-height: 140px;
  }

  /* WhatsApp FAB */
  .wa-fab {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .wa-fab svg {
    width: 24px;
    height: 24px;
  }

  /* Prevent horizontal scroll for all elements */
  * {
    max-width: 100%;
  }

  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
}

/* =========================
   Landscape Orientation
   ========================= */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-left {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-left::before,
  .hero-left::after {
    width: 200px;
    height: 200px;
  }
}

/* =========================
   High DPI Displays
   ========================= */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-icon svg,
  .partner-logo,
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* =========================
   Reduced Motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

