:root {
  --green: #45b86a;
  --green-dark: #339955;
  --green-light: #e8f8ee;
  --orange: #e8621a;
  --orange-dark: #c9511a;
  --orange-light: #fff2ec;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --light: #f8fafc;
  --border: #e5e7eb;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ──────────── NAVBAR ──────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #444; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-outline {
  border: 1.5px solid var(--green); color: var(--green);
  padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .2s; cursor: pointer; background: transparent;
}
.btn-outline:hover { background: var(--green); color: white; }
.btn-primary {
  background: var(--orange); color: white;
  padding: 9px 22px; border-radius: 8px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 12px rgba(232,98,26,0.3);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ──────────── HERO ──────────── */
.hero {
  margin-top: 68px;
  min-height: calc(100vh - 68px);
  background: linear-gradient(135deg, #0f1e13 0%, #1a3320 40%, #0d2019 100%);
  display: flex; align-items: center;
  padding: 60px 5%;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(69,184,106,0.15) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(232,98,26,0.1) 0%, transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(69,184,106,0.15); border: 1px solid rgba(69,184,106,0.3);
  color: #7ee8a2; padding: 6px 14px; border-radius: 30px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: #7ee8a2; display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 900; line-height: 1.1;
  color: white; margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--orange); }
.hero h1 .highlight-green { color: var(--green); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7;
  margin-bottom: 40px; max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-hero-main {
  background: var(--orange); color: white;
  padding: 16px 34px; border-radius: 10px; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 24px rgba(232,98,26,0.4);
  display: flex; align-items: center; gap: 10px;
}
.btn-hero-main:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,98,26,0.45); }
.btn-hero-sec {
  background: rgba(255,255,255,0.08); color: white;
  padding: 16px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer; transition: all .25s;
  display: flex; align-items: center; gap: 10px;
}
.btn-hero-sec:hover { background: rgba(255,255,255,0.14); }
.hero-stats { display: flex; gap: 36px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 26px; font-weight: 800; color: white; }
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Phone mockup area */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-stack { position: relative; width: 320px; height: 540px; }
.phone-card {
  position: absolute; background: white; border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform .3s;
}
.phone-card-main {
  width: 260px; height: 440px; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.phone-card-back1 {
  width: 240px; height: 420px; left: 50%; top: 50%;
  transform: translate(-68%, -52%) rotate(-8deg);
  z-index: 2; opacity: .85;
}
.phone-card-back2 {
  width: 240px; height: 420px; left: 50%; top: 50%;
  transform: translate(-32%, -48%) rotate(8deg);
  z-index: 1; opacity: .7;
}
.listing-card-inner { padding: 18px; height: 100%; display: flex; flex-direction: column; }
.listing-img {
  width: 100%; height: 180px; border-radius: 12px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; margin-bottom: 14px; overflow: hidden;
}
.listing-brand { font-size: 11px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .5px; }
.listing-title { font-size: 15px; font-weight: 700; color: var(--dark); margin: 4px 0 8px; }
.listing-details { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.listing-tag {
  font-size: 11px; background: var(--light); color: var(--gray);
  padding: 3px 10px; border-radius: 20px; font-weight: 500;
}
.listing-bottom { margin-top: auto; }
.listing-offers {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--green-light); padding: 10px 14px; border-radius: 10px;
}
.offer-count { font-size: 13px; font-weight: 700; color: var(--green); }
.offer-best { font-size: 12px; color: var(--gray); }
.offer-price { font-size: 18px; font-weight: 800; color: var(--orange); }

/* Floating badges */
.float-badge {
  position: absolute; background: white; border-radius: 12px;
  padding: 10px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 10px; z-index: 10;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
.float-badge-1 { top: 10%; left: -10%; animation-delay: 0s; }
.float-badge-2 { bottom: 15%; right: -8%; animation-delay: 1.5s; }
.float-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.float-text strong { font-size: 13px; font-weight: 700; display: block; }
.float-text span { font-size: 11px; color: var(--gray); }

/* ──────────── HOW IT WORKS ──────────── */
.section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--green-light); color: var(--green);
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px;
}
.section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray); max-width: 560px; line-height: 1.7; }
.section-header { text-align: center; }
.section-header .section-sub { margin: 0 auto; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.step-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  transition: all .3s; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  opacity: 0; transition: opacity .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); border-color: transparent; }
.step-card:hover::before { opacity: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--green-light); color: var(--green);
  font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card:nth-child(2) .step-num { background: var(--orange-light); color: var(--orange); }
.step-card:nth-child(3) .step-num { background: #f0f0ff; color: #6366f1; }
.step-icon { font-size: 32px; margin-bottom: 18px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding-top: 60px;
}
.step-connector i { color: var(--border); font-size: 24px; }

/* ──────────── WHY NEXTCEP ──────────── */
.why-section {
  background: linear-gradient(135deg, #0f1e13, #1a3320);
  padding: 90px 5%; position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(69,184,106,0.12) 0%, transparent 60%);
}
.why-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.why-feature {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px;
  transition: all .3s;
}
.why-feature:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.why-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.why-feature h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.why-feature p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.why-visual { position: relative; }
.why-section .section-tag { background: rgba(69,184,106,0.15); color: #7ee8a2; }
.why-section .section-title { color: white; }
.why-section .section-sub { color: rgba(255,255,255,0.6); }

/* Counter card */
.counter-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.counter-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 32px 28px; text-align: center;
}
.counter-card:first-child { grid-column: span 2; }
.counter-num { font-size: 40px; font-weight: 900; color: white; }
.counter-num span { color: var(--green); }
.counter-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ──────────── BRANDS ──────────── */
.brands-section { padding: 60px 5%; background: var(--light); }
.brands-inner { max-width: 1200px; margin: 0 auto; }
.brands-title { text-align: center; font-size: 14px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; }
.brands-grid { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.brand-pill {
  background: white; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 12px 28px;
  font-size: 14px; font-weight: 700; color: #444;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 10px;
}
.brand-pill:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(69,184,106,0.15); }
.brand-pill img { height: 20px; }

/* ──────────── LISTINGS ──────────── */
.listings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.card {
  background: white; border: 1.5px solid var(--border); border-radius: 16px;
  overflow: hidden; cursor: pointer; transition: all .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,0.09); border-color: transparent; }
.card-img {
  height: 180px; background: linear-gradient(135deg, #f5f5f5, #ececec);
  display: flex; align-items: center; justify-content: center; font-size: 60px;
  position: relative;
}
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: white;
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
}
.card-badge.orange { background: var(--orange); }
.card-body { padding: 16px; }
.card-brand { font-size: 11px; font-weight: 600; color: var(--green); text-transform: uppercase; }
.card-title { font-size: 15px; font-weight: 700; margin: 4px 0 10px; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.card-tag { font-size: 11px; background: var(--light); color: var(--gray); padding: 3px 10px; border-radius: 20px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.offer-info { display: flex; flex-direction: column; }
.offer-info small { font-size: 11px; color: var(--gray); display: block; }
.offer-info strong { font-size: 13px; color: var(--green); }
.time-info { font-size: 11px; color: var(--gray); display: flex; align-items: center; gap: 4px; }

/* ──────────── TESTIMONIALS ──────────── */
.testimonials-section { padding: 90px 5%; background: var(--light); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: white; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px;
  transition: all .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: white;
}
.author-info strong { font-size: 14px; font-weight: 700; display: block; }
.author-info span { font-size: 12px; color: var(--gray); }
.quote-icon { font-size: 40px; color: var(--green); opacity: .15; float: right; margin-top: -10px; }

/* ──────────── CTA BANNER ──────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #d44d0e 100%);
  padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; color: white; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.btn-cta-white {
  background: white; color: var(--orange);
  padding: 16px 38px; border-radius: 10px; font-size: 16px; font-weight: 800;
  border: none; cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }

/* ──────────── FOOTER ──────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 64px 5% 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px; transition: all .2s; cursor: pointer;
}
.social-btn:hover { background: var(--green); color: white; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-bottom-links a:hover { color: white; }

/* ──────────── SECTION BG ALT ──────────── */
.bg-light { background: var(--light); }

/* ──────────── INNER PAGE HERO ──────────── */
.page-hero {
  margin-top: 68px;
  background: linear-gradient(135deg, #0f1e13 0%, #1a3320 40%, #0d2019 100%);
  padding: 80px 5% 90px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(69,184,106,0.13) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232,98,26,0.08) 0%, transparent 50%);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-tag { background: rgba(69,184,106,0.15); color: #7ee8a2; margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.15; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 560px; margin: 0 auto; }
.page-hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 36px; }

/* ──────────── FAQ ──────────── */
.faq-list { max-width: 780px; margin: 0 auto; margin-top: 56px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden; background: white;
  transition: border-color .2s;
}
.faq-item:hover { border-color: #c8e6d4; }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--dark);
  user-select: none;
}
.faq-icon { font-size: 18px; color: var(--green); transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: 14px; color: var(--gray); line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open { border-color: var(--green); }

/* ──────────── BLOG ──────────── */
.blog-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.cat-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border); background: white; color: var(--gray);
  cursor: pointer; transition: all .2s;
}
.cat-btn:hover, .cat-btn.active { border-color: var(--green); color: var(--green); background: var(--green-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-card {
  border-radius: 18px; overflow: hidden;
  border: 1.5px solid var(--border); background: white;
  transition: all .3s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,0.09); border-color: transparent; }
.blog-card-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.blog-card-body { padding: 22px; }
.blog-card-cat { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.blog-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--dark); }
.blog-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 18px; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--gray); padding-top: 14px; border-top: 1px solid var(--border); }
.blog-card-author { display: flex; align-items: center; gap: 8px; }
.author-dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: white; }

/* ──────────── TEAM ──────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.team-card { text-align: center; }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: white;
}
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.team-socials { display: flex; gap: 8px; justify-content: center; }
.team-social { width: 32px; height: 32px; border-radius: 8px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gray); transition: all .2s; cursor: pointer; }
.team-social:hover { background: var(--green); color: white; }

/* ──────────── VALUE CARDS ──────────── */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--light); border-radius: 20px; padding: 36px 28px; text-align: center; }
.value-icon { font-size: 36px; margin-bottom: 18px; }
.value-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ──────────── CONTACT FORM ──────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; margin-top: 56px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; margin-bottom: 8px; display: block; color: var(--dark); }
.form-input, .form-textarea, .form-select {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 13px 16px; font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--dark); transition: border-color .2s; outline: none; background: white;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(69,184,106,0.1); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ──────────── ILAN VER FORM ──────────── */
.ilan-form-wrap { max-width: 720px; margin: 0 auto; }
.form-step-bar { display: flex; align-items: center; margin-bottom: 48px; }
.step-bar-item { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.step-bar-item:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; left: 60%; width: 80%; height: 2px;
  background: var(--border); z-index: 0;
}
.step-bar-item.done:not(:last-child)::after { background: var(--green); }
.step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--gray);
  position: relative; z-index: 1; transition: all .3s;
}
.step-bar-item.active .step-circle { border-color: var(--green); color: var(--green); background: var(--green-light); }
.step-bar-item.done .step-circle { border-color: var(--green); background: var(--green); color: white; }
.step-bar-label { font-size: 11px; font-weight: 600; color: var(--gray); margin-top: 8px; text-align: center; }
.step-bar-item.active .step-bar-label { color: var(--green); }
.brand-select-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.brand-select-btn {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 18px 12px;
  text-align: center; cursor: pointer; transition: all .2s; background: white;
  font-size: 13px; font-weight: 600;
}
.brand-select-btn:hover, .brand-select-btn.selected { border-color: var(--green); background: var(--green-light); color: var(--green); }
.brand-select-btn .brand-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.condition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.condition-card {
  border: 1.5px solid var(--border); border-radius: 14px; padding: 20px 18px;
  cursor: pointer; transition: all .2s; background: white;
}
.condition-card:hover, .condition-card.selected { border-color: var(--green); background: var(--green-light); }
.condition-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.condition-card p { font-size: 13px; color: var(--gray); }
.form-card { background: white; border: 1.5px solid var(--border); border-radius: 20px; padding: 36px; }

/* ──────────── CAREERS ──────────── */
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.job-card {
  border: 1.5px solid var(--border); border-radius: 16px; padding: 28px;
  background: white; transition: all .3s; cursor: pointer;
}
.job-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); border-color: #c8e6d4; }
.job-dept { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.job-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.job-tag { font-size: 12px; background: var(--light); color: var(--gray); padding: 4px 12px; border-radius: 20px; }
.job-apply { font-size: 14px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 6px; }

/* ──────────── HELP CENTER ──────────── */
.help-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.help-cat-card {
  border: 1.5px solid var(--border); border-radius: 18px; padding: 32px 24px;
  text-align: center; background: white; cursor: pointer; transition: all .3s;
}
.help-cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--green); }
.help-cat-icon { font-size: 36px; margin-bottom: 16px; }
.help-cat-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.help-cat-count { font-size: 13px; color: var(--gray); }

/* ──────────── LEGAL / PRESS ──────────── */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; }
.legal-wrap p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 16px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 16px; }
.legal-wrap ul li { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 6px; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.press-card {
  border: 1.5px solid var(--border); border-radius: 16px; padding: 28px;
  background: white; transition: all .3s;
}
.press-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.press-source { font-size: 12px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.press-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.press-date { font-size: 12px; color: var(--gray); }

/* ──────────── RESPONSIVE (inner pages) ──────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .help-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: 1fr; }
  .brand-select-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .help-cats { grid-template-columns: 1fr; }
}

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1024px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .counter-cards { grid-template-columns: 1fr; }
  .counter-card:first-child { grid-column: span 1; }
  .why-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr; }
}
