:root {
  --bg:       #ffffff;
  --bg2:      #f4f6fb;
  --card:     #ffffff;
  --accent:   #2563eb;
  --accent-d: #1d4ed8;
  --accent-l: #eff6ff;
  --green:    #16a34a;
  --green-l:  #f0fdf4;
  --text:     #111827;
  --text2:    #4b5563;
  --text3:    #6b7280;
  --border:   #e5e7eb;
  --shadow:   0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --font-h: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: .5rem 1.25rem; border-radius: 8px; font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-d) !important; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 5vw 5rem; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: .45;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb1 { width: 500px; height: 500px; background: rgba(37,99,235,0.06); top: -80px; right: -80px; }
.orb2 { width: 400px; height: 400px; background: rgba(22,163,74,0.04); bottom: 0; left: 20%; }
.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-l); border: 1px solid #bfdbfe; border-radius: 100px;
  padding: .35rem 1rem; font-size: .75rem; font-weight: 600;
  color: var(--accent); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.8rem; animation: up .5s ease both;
}
.bdot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero h1 {
  font-family: var(--font-h); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 1.4rem; animation: up .5s .08s ease both;
}
.hero h1 .hl { color: var(--accent); display: block; }
.hero-sub {
  font-size: 1.1rem; color: var(--text2); max-width: 560px;
  margin-bottom: 2.4rem; animation: up .5s .16s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: up .5s .24s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--accent); color: #fff; padding: .85rem 2rem;
  border-radius: var(--r); font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 2px 12px rgba(37,99,235,0.25);
}
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: var(--text); padding: .85rem 2rem;
  border-radius: var(--r); font-weight: 500; font-size: .95rem;
  text-decoration: none; border: 1.5px solid var(--border); transition: all .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-l); }
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border);
  animation: up .5s .32s ease both;
}
.stat-num { font-family: var(--font-h); font-size: 2.2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.stat-label { font-size: .78rem; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; margin-top: .1rem; }

/* TRUST BAR */
.trust-bar {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.1rem 5vw; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: .45rem; color: var(--text2); font-size: .85rem; }
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-sep { color: #d1d5db; }

/* SECTION SHARED */
section { padding: 6rem 5vw; }
.s-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .7rem; }
.s-title { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--text); margin-bottom: 1rem; }
.s-body { color: var(--text2); font-size: 1rem; max-width: 520px; margin-bottom: 3rem; }
.text-center { text-align: center; }

/* SERVICES */
#services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; transition: box-shadow .25s, border-color .25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: #bfdbfe; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; background: var(--accent-l); border: 1px solid #bfdbfe;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.service-card h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.service-card p { color: var(--text2); font-size: .88rem; line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag { font-size: .7rem; padding: .22rem .65rem; background: var(--bg2); border: 1px solid var(--border); border-radius: 100px; color: var(--text2); }

/* AUSTRALIA */
#australia { background: var(--bg); }
.au-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.why-item:hover { border-color: #bfdbfe; box-shadow: var(--shadow); }
.why-icon {
  width: 38px; height: 38px; flex-shrink: 0; background: var(--accent-l);
  border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.why-item h4 { font-family: var(--font-h); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.why-item p { font-size: .84rem; color: var(--text2); }
.au-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 2rem; box-shadow: var(--shadow);
}
.au-card-title { font-family: var(--font-h); font-size: .9rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.4rem; }
.au-row { display: flex; justify-content: space-between; align-items: center; padding: .7rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.au-row:last-child { border-bottom: none; }
.au-row-label { color: var(--text3); font-size: .8rem; }
.au-row-val { font-weight: 600; color: var(--text); }
.au-row-val.green { color: var(--green); }
.au-row-val.blue  { color: var(--accent); }

/* PORTFOLIO */
#portfolio { background: var(--bg2); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.portfolio-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.portfolio-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.pi1 { background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.pi2 { background: linear-gradient(135deg, #d1fae5, #f0fdf4); }
.pi3 { background: linear-gradient(135deg, #fef3c7, #fffbeb); }
.portfolio-body { padding: 1.5rem; }
.portfolio-type { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: .45rem; }
.portfolio-card h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; }
.portfolio-card p { color: var(--text2); font-size: .87rem; line-height: 1.6; }
.portfolio-result {
  margin-top: 1rem; font-size: .78rem; font-weight: 600; color: var(--green);
  background: var(--green-l); border: 1px solid #bbf7d0;
  padding: .5rem .85rem; border-radius: 8px; display: flex; align-items: center; gap: .35rem;
}

/* TESTIMONIALS */
#testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; display: flex; flex-direction: column;
}
.stars { color: #f59e0b; font-size: .85rem; letter-spacing: .05em; margin-bottom: .8rem; }
.testi-quote-icon { font-size: 2.5rem; line-height: 1; color: var(--accent); opacity: .3; font-family: Georgia, serif; margin-bottom: .3rem; }
.testi-card p { color: var(--text2); font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; font-size: .85rem; color: #fff;
}
.testi-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: .75rem; color: var(--text3); }

/* PROCESS */
#process { background: var(--bg2); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem 1.5rem; text-align: center; transition: box-shadow .2s, border-color .2s;
}
.step:hover { box-shadow: var(--shadow); border-color: #bfdbfe; }
.step-num {
  width: 56px; height: 56px; background: var(--accent-l); border: 2px solid #bfdbfe;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; font-size: 1.1rem;
  color: var(--accent); margin: 0 auto 1.2rem;
  transition: background .2s, color .2s;
}
.step:hover .step-num { background: var(--accent); color: #fff; border-color: var(--accent); }
.step h4 { font-family: var(--font-h); font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: .4rem; }
.step p { color: var(--text2); font-size: .84rem; }

/* CONTACT */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info > p { color: var(--text2); margin-bottom: 2rem; margin-top: .5rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.contact-detail:first-of-type { border-top: 1px solid var(--border); margin-top: 1.5rem; }
.cd-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--accent-l); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.cd-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); }
.cd-val { font-size: .88rem; color: var(--text); margin-top: .1rem; }
.cd-val a { color: var(--text); text-decoration: none; }
.cd-val a:hover { color: var(--accent); }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.form-sub { font-size: .82rem; color: var(--text3); margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.form-group label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2); border: 1.5px solid var(--border); border-radius: 9px;
  color: var(--text); padding: .72rem 1rem; font-family: var(--font-b); font-size: .88rem;
  outline: none; width: 100%; transition: border-color .18s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: var(--accent-l); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #fff; color: var(--text); }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; background: var(--accent); color: #fff; padding: .85rem 1.5rem;
  border-radius: var(--r); font-family: var(--font-b); font-size: .9rem; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none; transition: background .2s, transform .18s; margin-top: .5rem;
}
.btn-submit:hover { background: var(--accent-d); transform: translateY(-1px); }
.form-alert { border-radius: var(--r); padding: .9rem 1.1rem; margin-bottom: 1.2rem; font-size: .88rem; line-height: 1.6; }
.form-alert--success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.form-alert--error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.form-alert--error div + div { margin-top: .3rem; }

/* FOOTER */
footer { background: #111827; padding: 3rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: .8rem; text-decoration: none; }
.footer-logo-img { height: 52px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-brand p { color: #9ca3af; font-size: .87rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-h); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #6b7280; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: #9ca3af; text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: #6b7280; flex-wrap: wrap; gap: 1rem; }

/* ANIMATIONS */
@keyframes up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity:0; transform:translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity:1; transform:none; }

/* MOBILE */
@media (max-width: 800px) {
  /* Nav */
  .nav-links { display: none; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 6rem 5vw 3.5rem;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-sub {
    font-size: .97rem;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: .8rem 1.5rem;
  }
  .hero-stats {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .stat-num { font-size: 1.7rem; }

  /* Trust bar */
  .trust-bar { gap: .8rem; }
  .trust-sep { display: none; }

  /* Other sections */
  .au-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 5vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── PAGE HERO (about / inner pages) ── */
.page-hero {
  padding: 9rem 5vw 5rem;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .4;
}
.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.05);
  top: -100px;
  right: -100px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text3);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text3); }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.2rem;
  animation: up .5s ease both;
}
.page-hero h1 .hl { color: var(--accent); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 580px;
  animation: up .5s .1s ease both;
}

/* ── INNER PAGE SHARED ── */
body.page-about section { padding: 5.5rem 5vw; }
body.page-about .s-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
body.page-about .s-body { margin-bottom: 0; }

/* ── STORY ── */
#story { background: var(--bg); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-text p { color: var(--text2); margin-bottom: 1.2rem; font-size: .97rem; line-height: 1.8; }
.story-text p:last-child { margin-bottom: 0; }
.story-visual { display: flex; flex-direction: column; gap: 1rem; }
.story-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s;
}
.story-stat-card:hover { box-shadow: var(--shadow-lg); border-color: #bfdbfe; }
.story-stat-card .stat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--accent-l);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.stat-big { font-family: var(--font-h); font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.stat-lbl { font-size: .8rem; color: var(--text3); margin-top: .2rem; font-weight: 500; }

/* ── VALUES ── */
#values { background: var(--bg2); }
.values-intro-wrap { max-width: 620px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.value-card:hover { box-shadow: var(--shadow-lg); border-color: #bfdbfe; }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-l);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.value-card h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.value-card p { color: var(--text2); font-size: .87rem; line-height: 1.65; }

/* ── TEAM ── */
#team { background: var(--bg); }
.team-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}
.av1 { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.av2 { background: linear-gradient(135deg, #16a34a, #0891b2); }
.av3 { background: linear-gradient(135deg, #d97706, #dc2626); }
.av4 { background: linear-gradient(135deg, #7c3aed, #db2777); }
.team-body { padding: 1.2rem; }
.team-name { font-family: var(--font-h); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.team-role { font-size: .78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.team-bio { font-size: .8rem; color: var(--text2); line-height: 1.55; }

/* ── WHY US ── */
#why { background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
#why .why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
#why .why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
#why .why-item:hover { border-color: #bfdbfe; box-shadow: var(--shadow); }
#why .why-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--accent-l);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
#why .why-item h4 { font-family: var(--font-h); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
#why .why-item p { font-size: .84rem; color: var(--text2); }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.8rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 29px; top: 36px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-l);
  border: 2px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-year { font-size: .72rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.tl-title { font-family: var(--font-h); font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.tl-desc { font-size: .83rem; color: var(--text2); }
.timeline-heading { margin-bottom: 2rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--accent);
  padding: 5rem 5vw;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  color: var(--accent);
  padding: .85rem 2rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-white:hover { background: var(--accent-l); transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: transparent;
  color: #fff;
  padding: .85rem 2rem;
  border-radius: var(--r);
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── PRIVACY PAGE ── */
body.page-privacy #privacy-body { background: var(--bg); padding: 5rem 5vw; }
.privacy-wrap { max-width: 780px; margin: 0 auto; }
.policy-block {
  padding: 2.2rem 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.policy-block h2 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.policy-block p { color: var(--text2); font-size: .93rem; line-height: 1.8; margin-bottom: .9rem; }
.policy-block p:last-child { margin-bottom: 0; }
.policy-block ul { list-style: disc; padding-left: 1.4rem; color: var(--text2); font-size: .93rem; line-height: 1.8; margin-bottom: .9rem; }
.policy-block ul:last-child { margin-bottom: 0; }
.policy-block li { margin-bottom: .4rem; }
.policy-block a { color: var(--accent); text-decoration: none; }
.policy-block a:hover { text-decoration: underline; }
.policy-block code { font-family: monospace; font-size: .85em; background: var(--bg2); padding: .1em .4em; border-radius: 4px; color: var(--text); }
.contact-list { list-style: none; padding-left: 0; }
.contact-list li { margin-bottom: .5rem; }

/* ── INNER PAGE RESPONSIVE ── */
@media (max-width: 800px) {
  .page-hero { padding: 7rem 5vw 3.5rem; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .story-grid, .team-intro, .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  body.page-about section { padding: 4rem 5vw; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
