@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #102040;
  --navy-light: #1a3358;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-100: #f1efe9;
  --gray-200: #e2dfd5;
  --gray-400: #9a9488;
  --gray-600: #5c5750;
  --text: #1a1714;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

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

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800;
  color: var(--navy); font-size: 18px;
}
.nav-name { color: var(--white); font-size: 15px; font-weight: 600; letter-spacing: 0.3px; }
.nav-name span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius);
  transition: var(--transition); letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(201,168,76,0.12); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important; font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35) !important; }

.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); padding: 8px;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: var(--transition);
}

.nav-mobile-menu {
  display: none; flex-direction: column;
  position: absolute; top: 72px; left: 0; right: 0;
  background: var(--navy); padding: 20px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: rgba(255,255,255,0.8); padding: 12px 16px;
  border-radius: var(--radius); font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-menu a:last-child { border: none; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0d2040 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 24px; letter-spacing: -0.5px; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 15px;
  padding: 15px 36px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3); font-weight: 500; font-size: 15px;
  padding: 15px 36px; border-radius: 50px; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.hero-stat { }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; margin-top: 2px; }

.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition);
}
.hero-card:hover { border-color: rgba(201,168,76,0.3); transform: translateX(-4px); }
.hero-card-icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-card h4 { color: var(--white); font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.hero-card p { color: rgba(255,255,255,0.5); font-size: 13px; }
.hero-card-accent { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(var(--gold), transparent 70%); opacity: 0.1; }

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 100px 40px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }

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

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; line-height: 1.75; }
.section-sub.light { color: rgba(255,255,255,0.6); }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── STAT STRIP ─────────────────────────────────────────── */
.stat-strip { background: var(--navy); padding: 60px 40px; }
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); }
.stat-label { color: rgba(255,255,255,0.55); font-size: 13px; letter-spacing: 0.5px; margin-top: 4px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); }

/* ── CARDS ─────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(10,22,40,0.2);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

.card-feature { border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.card-feature::before { display: none; }

/* ── CHECKLIST ─────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 11px; color: var(--navy); font-weight: 700; }
.check-item p { color: var(--gray-600); font-size: 0.95rem; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 80px; color: var(--gold); opacity: 0.2; position: absolute; top: 10px; left: 24px; line-height: 1; }
.testimonial p { color: var(--gray-600); font-size: 0.98rem; line-height: 1.75; margin-bottom: 24px; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 16px; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-org { color: var(--gray-400); font-size: 12px; }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 2px; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.form-label span { color: #e53e3e; }
.form-input, .form-textarea, .form-select {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--text); background: var(--white); transition: var(--transition);
  width: 100%; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9488' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 15px;
  padding: 15px 40px; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); width: 100%; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ── SUCCESS / ERROR STATES ─────────────────────────────────────────── */
.form-success {
  background: #f0fff4; border: 1px solid #9ae6b4; border-radius: var(--radius-lg);
  padding: 32px; text-align: center; display: none;
}
.form-success.show { display: block; }
.form-success h3 { color: #276749; margin-bottom: 8px; font-family: 'DM Sans'; font-size: 1.1rem; }
.form-success p { color: #276749; font-size: 0.9rem; }
.form-error-msg { background: #fff5f5; border: 1px solid #feb2b2; border-radius: var(--radius); padding: 12px 16px; color: #c53030; font-size: 14px; display: none; margin-bottom: 16px; }
.form-error-msg.show { display: block; }

/* ── INFO BOX ─────────────────────────────────────────── */
.info-box {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 36px;
}
.info-box h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 20px; font-family: 'DM Sans'; font-weight: 700; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 18px; width: 36px; height: 36px; background: rgba(201,168,76,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; margin-bottom: 3px; }
.info-value { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); }
.footer-top { padding: 80px 40px 60px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand-name { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 24px; }
.footer-col h4 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { font-size: 14px; margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 40px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.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.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 50px; padding: 6px 14px; font-size: 12px; color: var(--gold); }

/* ── PROCESS STEPS ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content:''; position:absolute; top:36px; left:10%; right:10%; height:2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index:0; }
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
.step h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 160px 40px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%); }
.page-hero-grid { position:absolute; inset:0; opacity:0.03; background-image:linear-gradient(rgba(201,168,76,0.5) 1px,transparent 1px),linear-gradient(90deg,rgba(201,168,76,0.5) 1px,transparent 1px); background-size:60px 60px; }
.page-hero-content { position:relative; max-width:800px; margin:0 auto; }
.page-hero h1 { font-size: clamp(2rem,5vw,3.5rem); color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display:flex; align-items:center; justify-content:center; gap:8px; font-size:13px; color:rgba(255,255,255,0.45); margin-bottom:20px; }
.breadcrumb a { color:var(--gold); }
.breadcrumb span { color:rgba(255,255,255,0.25); }

/* ── TIMELINE ─────────────────────────────────────────── */
.timeline { position:relative; padding-left: 40px; }
.timeline::before { content:''; position:absolute; left:0; top:8px; bottom:0; width:2px; background:linear-gradient(var(--gold),transparent); }
.timeline-item { position:relative; margin-bottom:40px; }
.timeline-dot { position:absolute; left:-46px; top:4px; width:14px; height:14px; border-radius:50%; background:var(--gold); border:3px solid var(--white); box-shadow:0 0 0 3px var(--gold); }
.timeline-item h4 { font-size:1rem; color:var(--navy); margin-bottom:6px; }
.timeline-item p { color:var(--gray-600); font-size:0.9rem; line-height:1.65; }
.timeline-year { font-size:11px; color:var(--gold); font-weight:700; letter-spacing:1px; margin-bottom:4px; }

/* ── BADGE ROW ─────────────────────────────────────────── */
.badge-row { display:flex; flex-wrap:wrap; gap:12px; }
.badge { display:inline-flex; align-items:center; gap:6px; background:var(--gold-pale); border:1px solid rgba(201,168,76,0.3); color:var(--navy); font-size:13px; font-weight:600; padding:8px 16px; border-radius:50px; }

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar { background: var(--gold-pale); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 20px 40px; }
.trust-bar-inner { max-width:1200px; margin:0 auto; display:flex; justify-content:center; gap:48px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:var(--navy); }
.trust-item span { color:var(--gold); font-size:16px; }

/* ── POLICY PAGES ─────────────────────────────────────────── */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.5rem; color: var(--navy); margin: 40px 0 16px; border-bottom: 2px solid var(--gold-pale); padding-bottom: 10px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { color: var(--gray-600); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.policy-meta { background: var(--gold-pale); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 40px; font-size: 14px; color: var(--gray-600); }
.policy-meta strong { color: var(--navy); }

/* ── JOB PAGE ─────────────────────────────────────────── */
.job-details-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.job-section { margin-bottom: 40px; }
.job-section h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); }
.job-section ul { display: flex; flex-direction: column; gap: 10px; }
.job-section ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.6; }
.job-section ul li::before { content:'✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.materials-card { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.materials-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.material-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; color: var(--gray-600); }
.material-item:last-child { border: none; }
.material-item::before { content:'📦'; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .job-details-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .section { padding: 70px 20px; }
  .stat-strip .container { grid-template-columns: repeat(2,1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 60px 20px 40px; }
  .footer-bottom { padding: 20px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .trust-bar-inner { gap: 20px; }
  .hero { padding: 120px 20px 60px; }
  .page-hero { padding: 140px 20px 60px; }
}

@media (max-width: 480px) {
  .stat-strip .container { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .steps { grid-template-columns: 1fr; }
  .badge-row { gap: 8px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-2 { transition-delay: 0.1s; }
.fade-up-3 { transition-delay: 0.2s; }
.fade-up-4 { transition-delay: 0.3s; }
