/* =========================================
   WN GROUP — Premium RTL Landing Page CSS
   ========================================= */

/* --- Variables --- */
:root {
  --gold: #c8a84b;
  --gold-light: #e4c97a;
  --gold-dark: #9a7a2e;
  --navy: #040e1f;
  --navy-mid: #071426;
  --navy-card: #0a1a31;
  --navy-border: rgba(200, 168, 75, 0.18);
  --slate: #8fa3bf;
  --slate-light: #b8c9da;
  --white: #ffffff;
  --text-primary: #f0e8d0;
  --text-secondary: rgba(240, 232, 208, 0.65);
  --font-heb: 'Heebo', 'Arial Hebrew', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-gold: 0 4px 40px rgba(200, 168, 75, 0.18);
  --shadow-card: 0 8px 48px rgba(0, 0, 0, 0.45);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-heb);
  background: var(--navy);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Particle Canvas --- */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 20px 48px;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 14, 31, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--navy-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
  user-select: none;
}

.logo-wn {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(200, 168, 75, 0.45);
}

.logo-sep {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  flex-shrink: 0;
}

.logo-text-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.logo-group {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1;
}

.logo-tagline {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 75, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(200, 168, 75, 0); }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
  opacity: 0.35;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 168, 75, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(4,14,31,0.3) 0%, rgba(4,14,31,0.7) 60%, rgba(4,14,31,1) 100%);
  z-index: 2;
}

/* Construction SVG */
.construction-animation {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-48%);
  width: clamp(280px, 38vw, 500px);
  z-index: 3;
  opacity: 0.9;
}

.construction-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(200, 168, 75, 0.15));
}

/* Building rise animations */
.bld-1 {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: buildRise1 2.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.bld-2 {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: buildRise2 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.bld-3 {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: buildRise3 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes buildRise1 {
  0% { y: 310px; height: 0; }
  100% { y: 100px; height: 210px; }
}
@keyframes buildRise2 {
  0% { y: 310px; height: 0; }
  100% { y: 240px; height: 70px; }
}
@keyframes buildRise3 {
  0% { y: 310px; height: 0; }
  100% { y: 240px; height: 70px; }
}

.win-1 { animation: fadeIn 0.6s ease 3.2s forwards; }
.win-2 { animation: fadeIn 0.6s ease 2.3s forwards; }
.win-3 { animation: fadeIn 0.6s ease 2.6s forwards; }
@keyframes fadeIn { to { opacity: 1; } }

.crane { animation: craneAppear 0.5s ease forwards; }
.crane-arm   { animation-delay: 3.0s; opacity: 0; }
.crane-horizontal { animation-delay: 3.1s; opacity: 0; }
.crane-cable  { animation-delay: 3.2s; opacity: 0; }
.crane-load  { animation-delay: 3.3s; opacity: 0; }
@keyframes craneAppear { to { opacity: 1; } }

.crane-cable {
  animation: craneAppear 0.5s ease 3.2s forwards, cableBob 2s ease-in-out 3.8s infinite;
}
@keyframes cableBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.crane-load {
  animation: craneAppear 0.5s ease 3.3s forwards, cableBob 2s ease-in-out 3.8s infinite;
}

.scaffold { animation: scaffoldSlide 0.4s ease forwards; }
.s1 { animation-delay: 2.9s; opacity: 0; }
.s2 { animation-delay: 3.0s; opacity: 0; }
.s3 { animation-delay: 3.1s; opacity: 0; }
@keyframes scaffoldSlide {
  from { opacity: 0; stroke-dashoffset: 60; }
  to { opacity: 0.6; stroke-dashoffset: 0; }
}

.gear-group {
  animation: gearSpin 8s linear infinite;
  transform-origin: 360px 60px;
}
.gear-small {
  animation: gearSpinReverse 6s linear infinite;
  transform-origin: 55px 265px;
}
@keyframes gearSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes gearSpinReverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.measure {
  animation: measureAppear 0.8s ease 3.5s forwards;
  opacity: 0;
}
@keyframes measureAppear { to { opacity: 0.5; } }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 600px;
  margin-right: auto;
  margin-left: clamp(280px, 42vw, 560px);
  text-align: right;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideUp 0.8s ease 0.3s forwards;
}

.eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.eyebrow-text {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  opacity: 0;
  animation: slideUp 0.9s ease 0.5s forwards;
}

.title-wn {
  font-family: var(--font-display);
  color: var(--gold);
  display: block;
  font-size: 1.15em;
  text-shadow: 0 0 30px rgba(200, 168, 75, 0.35);
}

.title-divider {
  color: var(--gold-dark);
  margin: 0 8px;
  font-weight: 300;
}

.title-heb {
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-weight: 300;
  opacity: 0;
  animation: slideUp 1s ease 0.7s forwards;
}

/* Progress */
.progress-section {
  margin-bottom: 36px;
  opacity: 0;
  animation: slideUp 1s ease 0.9s forwards;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--slate-light);
  margin-bottom: 10px;
  font-weight: 500;
}

.progress-pct { color: var(--gold); }

.progress-track {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: visible;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 100px;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(200, 168, 75, 0.6);
}

.progress-glow {
  position: absolute;
  inset: -6px 0;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.15));
  border-radius: 100px;
  pointer-events: none;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-family: var(--font-heb);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideUp 1s ease 1.1s forwards;
  box-shadow: 0 4px 24px rgba(200, 168, 75, 0.35);
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.cta-btn:hover::before { opacity: 1; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200, 168, 75, 0.5); }
.cta-btn svg { position: relative; z-index: 1; }
.cta-btn span { position: relative; z-index: 1; }

/* CTA Contact Inline */
.cta-contact-inline {
  opacity: 0;
  animation: slideUp 1s ease 1.1s forwards;
}

.cta-contact-text {
  font-size: 14px;
  color: var(--slate-light);
}

.cta-email-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(200,168,75,0.3);
  transition: border-color var(--transition), color var(--transition);
}

.cta-email-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--slate);
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(200,168,75,0.4);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  position: relative;
  z-index: 5;
  padding: 60px 48px;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  background: rgba(10, 26, 49, 0.6);
  backdrop-filter: blur(12px);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
  padding: 20px 32px;
  text-align: center;
  position: relative;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline;
  margin-right: 2px;
}

.stat-label {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--navy-border);
  flex-shrink: 0;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
  position: relative;
  z-index: 5;
  padding: 100px 48px;
  background: var(--navy);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,168,75,0.4);
  box-shadow: var(--shadow-gold);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), border-color var(--transition);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.feature-card:hover .feature-icon {
  background: rgba(200,168,75,0.15);
  border-color: rgba(200,168,75,0.4);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  position: relative;
  z-index: 5;
  padding: 100px 48px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 100px;
}

.contact-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 16px;
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--slate-light);
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Form */
.contact-right {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.contact-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.3px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(143,163,191,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px 14px 48px;
  color: var(--text-primary);
  font-family: var(--font-heb);
  font-size: 14px;
  direction: rtl;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.input-wrapper input::placeholder { color: rgba(143,163,191,0.45); }

.input-wrapper input:focus,
.input-wrapper select:focus {
  border-color: rgba(200,168,75,0.55);
  background: rgba(200,168,75,0.04);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
}

.input-wrapper input.error {
  border-color: rgba(230, 80, 80, 0.7);
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.input-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--slate);
}

.select-wrapper select {
  cursor: pointer;
}

.select-wrapper select option {
  background: var(--navy-card);
  color: var(--text-primary);
}

.select-arrow {
  pointer-events: none;
}

.field-error {
  font-size: 12px;
  color: #e07070;
  display: none;
}

.field-error.visible { display: block; }

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-heb);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.4); }
.submit-btn:active { transform: translateY(0); }

.btn-text, .btn-loader { position: relative; z-index: 1; }

.spin {
  width: 20px;
  height: 20px;
  animation: spinAnim 0.8s linear infinite;
}

@keyframes spinAnim { to { transform: rotate(360deg); } }

/* Success Message */
.success-message {
  text-align: center;
  padding: 48px 20px;
  animation: slideUp 0.5s ease forwards;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(200,168,75,0.1);
  border: 1.5px solid rgba(200,168,75,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.success-message h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.success-message p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  position: relative;
  z-index: 5;
  padding: 48px;
  border-top: 1px solid var(--navy-border);
  background: var(--navy-mid);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 1px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--navy-border);
}

.footer-copy {
  font-size: 12px;
  color: rgba(143,163,191,0.5);
}

/* =========================================
   SCROLL REVEAL UTILITY
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .construction-animation {
    display: none;
  }

  .hero-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 640px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-left {
    position: static;
    text-align: center;
  }

  .contact-info-items {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }

  .hero { padding: 100px 24px 80px; }
  .stats-section { padding: 40px 24px; }
  .features-section { padding: 70px 24px; }
  .contact-section { padding: 70px 24px; }
  .contact-right { padding: 28px 20px; }
  .footer { padding: 36px 24px; }

  .stat-divider { display: none; }
  .stat-item { min-width: 45%; padding: 16px; }

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

  .logo-wn { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .cta-btn { width: 100%; justify-content: center; }
  .stat-item { min-width: 100%; }
}
