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

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --navy-10: rgba(26,39,68,0.10);
  --navy-20: rgba(26,39,68,0.20);
  --green: #7DC243;
  --green-dark: #1C9B44;
  --green-hover: #6db035;
  --green-10: rgba(125,194,67,0.12);
  --brown: #603814;
  --gold: #D4A017;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: #fff; }
.section--deep { background: var(--navy-deep); color: #fff; }

/* ── Typography ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.section--navy .eyebrow, .section--deep .eyebrow { color: var(--green); }

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; letter-spacing: -0.5px; line-height: 1.1; }
h1 { font-weight: 900; font-size: clamp(36px, 5vw, 56px); color: var(--navy); }
h1 em { color: var(--green-dark); font-style: normal; }
h1 .brown { color: var(--brown); }
h2 { font-weight: 900; font-size: clamp(28px, 3.5vw, 40px); color: var(--gray-900); }
.section--navy h2, .section--deep h2 { color: #fff; }
h3 { font-weight: 700; font-size: 18px; color: var(--gray-900); }
.subtitle { font-size: 15px; color: var(--gray-500); margin-top: 6px; max-width: 520px; }
.section--navy .subtitle { color: rgba(255,255,255,0.55); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 700; padding: 12px 28px; border-radius: var(--radius-sm);
  border: none; transition: all 0.2s; text-decoration: none;
}
.btn--primary { background: var(--green); color: var(--navy-deep); }
.btn--primary:hover { background: var(--green-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(125,194,67,0.3); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy-10); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); }
.btn--lg { padding: 16px 36px; font-size: 15px; border-radius: 8px; }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 3px solid var(--navy); backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px;
}
.nav__logo { display: flex; align-items: center; gap: 8px; }
.nav__logo img { height: 40px; width: auto; }
.nav__logo-text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px;
  color: var(--navy); letter-spacing: -0.3px;
}
.nav__logo-text em { color: var(--green); font-style: normal; }
.nav__links { display: flex; align-items: center; gap: 0; }
.nav__link {
  font-size: 14px; font-weight: 600; color: var(--navy); padding: 0 20px; height: 64px;
  display: flex; align-items: center; transition: all 0.15s; position: relative;
}
.nav__link:hover { background: var(--navy-10); }
.nav__link--active::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 3px; background: var(--green); border-radius: 3px 3px 0 0;
}
.nav__phone {
  display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
  color: var(--navy); padding: 0 20px; height: 64px; border-left: 1px solid var(--gray-200);
}
.nav__phone:hover { background: var(--navy-10); }
.nav__cta {
  background: var(--green); color: var(--navy-deep); font-size: 14px; font-weight: 700;
  padding: 0 24px; height: 64px; border: none; display: flex; align-items: center;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--green-hover); }
.nav__mobile { display: none; background: none; border: none; padding: 8px; color: var(--navy); }

/* ── Hero ── */
.hero { padding: 60px 0 48px; background: var(--gray-50); }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero__content { max-width: 520px; }
.hero__desc { font-size: 16px; line-height: 1.7; color: var(--gray-600); margin: 16px 0 28px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 32px; margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}
.hero__stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900;
  color: var(--green); display: block; line-height: 1;
}
.hero__stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--gray-500); display: block; margin-top: 4px;
}

/* ── Slider ── */
.slider-wrap {
  border-radius: var(--radius); overflow: hidden; position: relative;
  user-select: none; cursor: col-resize; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.slider-wrap img { display: block; width: 100%; height: 320px; object-fit: cover; object-position: center top; }
.slider-after { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.slider-after img { width: 200%; max-width: none; }
.slider-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: #fff; z-index: 3; }
.slider-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slider-handle svg { width: 20px; height: 20px; }
.slider-label {
  position: absolute; bottom: 12px; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px;
  border-radius: var(--radius-sm); z-index: 5;
}
.lbl-before { right: 12px; background: rgba(0,0,0,0.55); color: #fff; }
.lbl-after { left: 12px; background: rgba(28,155,68,0.85); color: #fff; }

/* ── Trust Bar ── */
.trust { background: var(--gray-900); padding: 20px 0; }
.trust__grid {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.trust__item { display: flex; align-items: center; gap: 10px; }
.trust__icon {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.1);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.trust__name { font-size: 13px; font-weight: 600; color: var(--gray-50); }
.trust__sub { font-size: 11px; color: var(--gray-400); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.step-card {
  background: #fff; border: 1px solid var(--gray-200); border-top: 4px solid var(--green);
  border-radius: var(--radius); padding: 28px 24px; transition: all 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: var(--navy-deep);
  font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.testi-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 24px; transition: all 0.2s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.testi-stars { font-size: 16px; color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; line-height: 1.6; color: var(--gray-800); margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy-10);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testi-loc { font-size: 12px; color: var(--gray-500); }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.price-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 28px 24px; transition: all 0.2s; display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.price-card--featured { border: 2px solid var(--green); position: relative; }
.price-badge {
  display: inline-block; background: var(--green-10); color: var(--green-dark);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.price-amount {
  font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900;
  color: var(--gray-900); line-height: 1; margin: 8px 0 4px;
}
.price-amount sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.price-period { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }
.price-features { margin-bottom: 24px; flex: 1; }
.price-features li {
  font-size: 14px; color: var(--gray-600); padding: 8px 0;
  border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; gap: 8px;
}
.price-features li:last-child { border-bottom: none; }
.price-check { color: var(--green); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.price-btn {
  width: 100%; padding: 12px; border-radius: var(--radius-sm); font-size: 14px;
  font-weight: 700; border: 2px solid var(--navy); background: #fff; color: var(--navy);
  transition: all 0.2s;
}
.price-btn:hover { background: var(--navy-10); transform: translateY(-1px); }
.price-btn--primary { background: var(--green); color: var(--navy-deep); border: none; }
.price-btn--primary:hover { background: var(--green-hover); box-shadow: 0 4px 16px rgba(125,194,67,0.3); }

.delivery-note {
  background: var(--navy-10); border: 1px solid var(--navy-20); border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; margin-top: 24px;
}
.delivery-note p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.delivery-note strong { color: var(--gray-900); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 32px auto 0; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; background: #fff; transition: all 0.2s;
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-q {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; background: none; border: none; font-size: 15px; font-weight: 600;
  color: var(--gray-900); text-align: left; cursor: pointer; transition: background 0.15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-arrow {
  width: 24px; height: 24px; border-radius: 50%; background: var(--navy-10);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ── Page Header ── */
.page-header {
  background: var(--navy); padding: 48px 0; text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* ── For Sale Grid ── */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.product-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: all 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.product-img {
  height: 240px; background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; color: var(--gray-400); font-size: 14px; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 24px; }
.product-body h3 { margin-bottom: 4px; }
.product-body .price { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: var(--green-dark); margin: 8px 0; }
.product-body p { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; }
.product-tag {
  display: inline-block; background: var(--green-10); color: var(--green-dark);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full);
  margin-bottom: 8px;
}

/* ── Rent Note ── */
.rent-note {
  padding: 16px 0 0;
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
  color: var(--gray-500);
  font-style: italic;
}

/* ── Video Grid ── */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.video-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: all 0.2s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.video-placeholder { aspect-ratio: 16/9; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; background: #111; }
.video-card h3 { padding: 16px 20px 4px; }
.video-card p { padding: 0 20px 20px; font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── CTA Section ── */
.cta-section { text-align: center; padding: 80px 0; }
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: var(--navy); border-top: 3px solid var(--green); padding: 48px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer__logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px;
  color: #fff; margin-bottom: 12px;
}
.footer__logo em { color: var(--green); font-style: normal; }
.footer__desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer h4 {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer ul li { padding: 4px 0; }
.footer ul li a {
  font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s;
}
.footer ul li a:hover { color: var(--green); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin-left: auto; margin-right: auto;
  font-size: 12px; color: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid, .testi-grid, .pricing-grid, .video-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .nav__links, .nav__phone { display: none; }
  .nav__mobile { display: block; }
  .hero { padding: 36px 0; }
  .section { padding: 56px 0; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .slider-wrap img { height: 220px; }
  .trust__grid { flex-direction: column; gap: 14px; }
}
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .hero__stats { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
}
