/* ============================================================
   LANDLIS – Building Materials | Premium CSS
   Colors: Navy #1B2A5E | Gold #C8A84B | White #FFFFFF
   ============================================================ */

:root {
  --navy:        #1B2A5E;
  --navy-dark:   #0f1a3e;
  --navy-mid:    #243270;
  --gold:        #C8A84B;
  --gold-light:  #e0c06a;
  --gold-dark:   #a88830;
  --white:       #ffffff;
  --off-white:   #f8f8f4;
  --light-gray:  #f2f2ef;
  --mid-gray:    #e0e0d8;
  --text-dark:   #1a1a2e;
  --text-mid:    #444455;
  --text-light:  #888899;
  --shadow-sm:   0 2px 12px rgba(27,42,94,.08);
  --shadow-md:   0 8px 32px rgba(27,42,94,.14);
  --shadow-lg:   0 16px 48px rgba(27,42,94,.18);
  --shadow-gold: 0 4px 20px rgba(200,168,75,.35);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.section { padding: 96px 0; }
.section-dark  { background: var(--navy); color: var(--white); }
.section-light { background: var(--off-white); }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-label { background: rgba(200,168,75,.15); color: var(--gold-light); border-color: rgba(200,168,75,.3); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,75,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-light:hover {
  background: rgba(200,168,75,.1);
}
.btn-full  { width: 100%; justify-content: center; }
.btn-sm    { padding: 8px 18px; font-size: .9rem; }

/* ===== NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(27,42,94,.1);
  box-shadow: 0 2px 16px rgba(27,42,94,.07);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(27,42,94,.13); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.nav-logo img.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  /* make white pixels transparent by using mix-blend-mode on white bg */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: var(--navy);
  font-size: .93rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--gold-dark); background: rgba(200,168,75,.08); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 2px solid rgba(27,42,94,.08);
  box-shadow: 0 8px 24px rgba(27,42,94,.1);
  padding: 8px 0 12px;
}
.mobile-menu a {
  color: var(--navy);
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(27,42,94,.05);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--gold-dark); background: rgba(200,168,75,.06); }
.mobile-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  margin: 10px 16px 0 !important;
  border-radius: 8px !important;
  text-align: center !important;
  padding: 13px 24px !important;
  border-bottom: none !important;
}
.mobile-menu.open { display: flex; }

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

/* Real photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  /* subtle zoom-out on load via animation */
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Multi-layer overlay: dark + navy tint + gold hint */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 18, 40, 0.62) 0%,
      rgba(10, 18, 40, 0.55) 50%,
      rgba(10, 18, 40, 0.72) 100%
    ),
    linear-gradient(
      135deg,
      rgba(27, 42, 94, 0.30) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,.15);
  border: 1px solid rgba(200,168,75,.35);
  color: var(--gold-light);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero-accent {
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 8px 32px; }
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp .7s forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Product card with real image */
.product-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--gold-light);
}

/* Image wrapper */
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0eb;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

/* Gold top-bar on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 2;
}
.product-card:hover::before { transform: scaleX(1); }

/* Tag badge inside image */
.product-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(34,139,34,.9);
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* Text body */
.product-body {
  padding: 20px 22px 24px;
  flex: 1;
}
.product-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-body p {
  color: var(--text-mid);
  font-size: .88rem;
  line-height: 1.6;
}

/* "More products" card – full width */
.product-card-more {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(200,168,75,.25);
  min-height: unset;
}
.product-card-more::before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
}
.product-more-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
}
.product-more-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-more-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.product-card-more h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.product-card-more p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== ATMOSPHERE BANNER ===== */
.atmo-banner {
  position: relative;
  height: clamp(340px, 48vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.atmo-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/atmosphere.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transition: transform 6s ease;
}
.atmo-banner:hover .atmo-bg {
  transform: scale(1.03);
}
.atmo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 15, 35, 0.55) 0%,
      rgba(8, 15, 35, 0.60) 50%,
      rgba(8, 15, 35, 0.72) 100%
    );
}
.atmo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}
.atmo-quote {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: .02em;
  opacity: .9;
}
.atmo-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(200,168,75,.35);
  transform: translateY(-4px);
}
.why-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.steps-container {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  position: relative;
}
.step-number {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  z-index: 1;
}
.step-content {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 44px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.step-content:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-content p  { color: var(--text-mid); font-size: .88rem; line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 4px;
  margin-top: 56px;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== AUDIENCE ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.audience-item {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.audience-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.audience-item i {
  display: block;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.audience-item span { font-size: .95rem; font-weight: 600; color: var(--text-dark); }
.audience-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(200,168,75,.2);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  text-align: center;
  color: var(--white);
}
.audience-cta p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,.85); }
.audience-cta strong { color: var(--gold-light); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  gap: 16px;
  transition: all var(--transition);
}
.faq-q:hover { background: var(--off-white); }
.faq-q[aria-expanded="true"] { color: var(--gold-dark); background: #fdf8ec; }
.faq-icon {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-a p { color: var(--text-mid); font-size: .95rem; line-height: 1.75; }

/* ===== CONTACT ===== */
.contact-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.contact-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 44px;
  line-height: 1.7;
}
.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
  min-width: 280px;
  flex: 1;
  max-width: 320px;
}
.contact-btn-phone {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.contact-btn-phone:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,168,75,.5);
}
.contact-btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.contact-btn-wa:hover {
  background: #20be5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
}
.contact-btn-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-btn-phone .contact-btn-icon { background: rgba(27,42,94,.15); }
.contact-btn-text { text-align: right; }
.contact-btn-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}
.contact-btn-sub {
  display: block;
  font-size: .82rem;
  opacity: .8;
  margin-top: 3px;
}
.contact-features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.cf-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  font-weight: 500;
}
.cf-item i { color: var(--gold); font-size: .9rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
  /* on dark footer, logo with transparent bg shows perfectly */
}
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-links h4, .footer-products h4, .footer-cta-box h4 {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-products ul { display: flex; flex-direction: column; gap: 8px; }
.footer-products li { font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-cta-box p { font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--transition);
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
}
.float-cta.show {
  opacity: 1;
  transform: translateY(0);
}
.float-cta:hover {
  background: #20be5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
}
.float-cta i { font-size: 1.1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-btn { min-width: 240px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero mobile */
  .hero { min-height: 100svh; }
  .hero-content { padding: 36px 16px 48px; }
  .hero-badge { font-size: .78rem; padding: 6px 14px; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-sub { font-size: .9rem; }
  .hero-buttons { gap: 12px; }
  .hero-buttons .btn { padding: 13px 22px; font-size: .95rem; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 12px;
  }
  .stat { padding: 8px 14px; }
  .stat-divider { height: 32px; }
  .stat-num { font-size: 1.25rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-img-wrap { height: 160px; }
  .product-body { padding: 16px 16px 20px; }
  .product-body h3 { font-size: 1rem; }
  .product-card-more { min-height: unset; }
  .product-more-inner { padding: 22px 20px; gap: 16px; }
  .product-more-left { gap: 14px; }
  .product-more-icon { font-size: 2rem; }
  .product-card-more h3 { font-size: 1rem; }
  .product-card-more p { font-size: .83rem; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 24px 18px; }

  /* Steps */
  .steps-container { flex-direction: column; align-items: center; gap: 24px; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { display: none; }

  /* Audience */
  .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .audience-item { padding: 18px 10px; }
  .audience-cta { padding: 28px 20px; }

  /* Contact */
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-btn { max-width: 100%; min-width: unset; padding: 18px 24px; }
  .contact-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .contact-sub { font-size: .95rem; margin-bottom: 28px; }
  .contact-features-row { gap: 10px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta-box { text-align: center; }

  /* Float CTA */
  .float-cta { bottom: 16px; left: 16px; padding: 12px 20px; font-size: .85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.65rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 80px; padding: 8px 10px; }
  .stat-divider { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-img-wrap { height: 140px; }
  .product-more-inner { flex-direction: column; align-items: center; text-align: center; padding: 22px 16px; }
  .product-more-left { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.5rem; }
  .contact-btn-label { font-size: 1rem; }
  .step-content { padding: 40px 18px 22px; }
}
