@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --green:        #1A5C38;
  --green-dark:   #0D3520;
  --green-mid:    #256842;
  --green-light:  #E8F5EE;
  --green-xlight: #F2F9F5;
  --gold:         #E8A020;
  --gold-hover:   #CF8D12;
  --gold-light:   #FEF4DC;
  --white:        #FFFFFF;
  --off-white:    #F8FAFB;
  --dark:         #0C1B0F;
  --text:         #1D2B21;
  --muted:        #516154;
  --border:       #D2E4DA;
  --font:         'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max-w:        1200px;
  --nav-h:        72px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --pill:         100px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --section-pad:  clamp(64px, 9vw, 110px);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }

/* ── SCROLL PROGRESS BAR ── */
#progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 9999; width: 0%; transition: width .1s linear; }

/* ── BACK TO TOP ── */
#back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--white);
  border: none; cursor: pointer; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 18px rgba(26,92,56,.35);
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
#back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { background: var(--green-dark); }

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 22px; height: 2.5px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-label.light { color: var(--gold); }
.section-label.light::before { background: rgba(232,160,32,.5); }

.section-title {
  font-size: clamp(1.75rem, 3.8vw, 2.85rem);
  font-weight: 800; line-height: 1.14;
  color: var(--dark); margin-bottom: 16px;
  letter-spacing: -.025em;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-subtitle { font-size: clamp(.88rem, 1.4vw, 1rem); color: var(--muted); line-height: 1.82; max-width: 600px; font-weight: 400; }
.section-subtitle.light { color: rgba(255,255,255,.72); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--pill);
  font-family: var(--font); font-weight: 700;
  font-size: .82rem; letter-spacing: .03em;
  cursor: pointer; border: 2px solid transparent;
  transition: all .22s var(--ease); white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.38); }
.btn-outline-w   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-w:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,56,.32); }
.btn-outline-g   { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-g:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-white:hover { background: var(--green-light); border-color: var(--green-light); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
#navbar.scrolled {
  background: rgba(13,53,32,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 clamp(18px,4vw,32px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 65px; width: auto; display: block; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  font-size: .83rem; font-weight: 600; color: rgba(255,255,255,.85);
  padding: 7px 12px; border-radius: var(--pill);
  transition: color .18s, background .18s; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.09); }
.nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-phone { font-size: .78rem; color: rgba(255,255,255,.7); white-space: nowrap; font-weight: 500; }
.nav-phone strong { color: var(--gold); font-weight: 700; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .28s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,40,20,.97);
  backdrop-filter: blur(16px);
  padding: 16px clamp(18px,4vw,32px) 28px;
  z-index: 998; flex-direction: column; gap: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(-8px); opacity: 0;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.mobile-nav.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-nav a { color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 600; padding: 12px 14px; border-radius: var(--radius-sm); transition: background .2s, color .2s; }
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,.07); color: var(--gold); }
.mobile-nav .m-cta { margin-top: 12px; align-self: flex-start; }

/* ── HERO / CAROUSEL ── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }

.carousel-track { display: flex; height: 100%; transition: transform .9s cubic-bezier(.77,0,.18,1); will-change: transform; }

.carousel-slide { flex: 0 0 100%; height: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.carousel-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 6s ease; }
.carousel-slide.active img { transform: scale(1.05); }
.carousel-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(128deg, rgba(9,36,18,.9) 0%, rgba(9,36,18,.5) 50%, rgba(9,36,18,.18) 100%);
}

.slide-content {
  position: relative;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(18px,4vw,32px) clamp(80px,14vh,130px);
  z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,.15); border: 1px solid rgba(232,160,32,.35);
  color: var(--gold); padding: 6px 16px; border-radius: var(--pill);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(8px);
}
.slide-heading {
  font-size: clamp(2.2rem, 6.5vw, 5.2rem);
  font-weight: 800; color: var(--white);
  line-height: 1.06; margin-bottom: 18px;
  max-width: 700px; letter-spacing: -.03em;
}
.slide-subtext {
  font-size: clamp(.9rem, 1.5vw, 1.08rem); color: rgba(255,255,255,.8);
  max-width: 480px; line-height: 1.74; margin-bottom: 36px; font-weight: 400;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.carousel-controls {
  position: absolute; bottom: clamp(5%,7%,9%);
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max-w);
  padding: 0 clamp(18px,4vw,32px);
  display: flex; align-items: center; justify-content: space-between; z-index: 3;
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.32); cursor: pointer; transition: all .3s; padding: 0; }
.carousel-dots button.active { background: var(--gold); width: 28px; border-radius: 4px; }

.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrows button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.07);
  color: var(--white); cursor: pointer;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: all .22s;
}
.carousel-arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.scroll-cue {
  position: absolute; bottom: 3%; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.45); font-size: .65rem; letter-spacing: .16em;
  text-transform: uppercase; z-index: 3; animation: cue-bounce 2.2s ease-in-out infinite;
}
@keyframes cue-bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ── WELCOME ── */
.welcome-section { padding: var(--section-pad) 0; background: var(--white); }

.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: center; }

.welcome-visual { position: relative; }
.welcome-visual .img-main { width: 100%; height: clamp(360px,45vw,520px); object-fit: cover; border-radius: var(--radius-lg); }
.welcome-visual .img-inset {
  position: absolute; bottom: -28px; right: -28px;
  width: 180px; height: 180px; object-fit: cover;
  border-radius: var(--radius-md); border: 7px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.exp-badge {
  position: absolute; top: 36px; left: -24px;
  background: var(--gold); color: var(--dark);
  padding: 18px 22px; border-radius: var(--radius-md); text-align: center;
  box-shadow: 0 8px 28px rgba(232,160,32,.4);
}
.exp-badge .big { font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.exp-badge .sm  { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

.welcome-text .section-subtitle { margin-bottom: 32px; }

.welcome-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.feat-item { display: flex; gap: 13px; align-items: flex-start; }
.feat-item .ico { flex-shrink: 0; width: 42px; height: 42px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--green); }
.feat-item h4 { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.feat-item p  { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── FOCUS AREAS ── */
.focus-section { padding: var(--section-pad) 0; background: var(--off-white); }
.focus-header { text-align: center; margin-bottom: clamp(40px,6vw,64px); }
.focus-header .section-label { justify-content: center; }
.focus-header .section-label::before { display: none; }
.focus-header .section-title, .focus-header .section-subtitle { margin-left: auto; margin-right: auto; text-align: center; }

.focus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.focus-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid transparent;
}
.focus-card:hover { transform: translateY(-10px); box-shadow: 0 20px 56px rgba(0,0,0,.1); border-color: var(--green-light); }

.focus-card .card-img { height: 186px; overflow: hidden; position: relative; }
.focus-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.focus-card:hover .card-img img { transform: scale(1.06); }
.card-num {
  position: absolute; top: 14px; left: 14px;
  width: 32px; height: 32px; background: var(--gold); color: var(--dark);
  font-weight: 800; font-size: .75rem;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

.focus-card .card-body { padding: 24px 26px 28px; }
.focus-card .card-icon { font-size: 1.75rem; margin-bottom: 10px; color: var(--green); }
.focus-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 9px; letter-spacing: -.01em; }
.focus-card p  { font-size: .84rem; color: var(--muted); line-height: 1.7; }

/* ── WHAT WE DO ── */
.what-section { padding: var(--section-pad) 0; background: var(--green-dark); position: relative; overflow: hidden; }
.what-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 90px solid rgba(255,255,255,.025); pointer-events: none;
}
.what-section::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 60px solid rgba(232,160,32,.05); pointer-events: none;
}

.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: center; position: relative; z-index: 1; }

.what-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.what-point { display: flex; gap: 14px; align-items: flex-start; }
.what-point .dot { flex-shrink: 0; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: 8px; }
.what-point p { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.75; }

.what-visual { position: relative; }
.what-visual img { width: 100%; height: clamp(360px,45vw,540px); object-fit: cover; border-radius: var(--radius-lg); position: relative; z-index: 1; }
.what-visual::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid rgba(232,160,32,.4); border-radius: calc(var(--radius-lg) + 4px); z-index: 0;
}

/* ── CYBER ── */
.cyber-section { padding: var(--section-pad) 0; background: var(--white); }
.cyber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: center; }

.cyber-visual img { width: 100%; height: clamp(340px,44vw,500px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 20px 64px rgba(0,0,0,.12); }

.cyber-feats { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.cyber-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: var(--off-white);
  border-radius: var(--radius-md);
  transition: background .22s, transform .22s; cursor: default;
}
.cyber-feat:hover { background: var(--green-light); transform: translateX(4px); }
.cyber-feat .cf-ico {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--green); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.cyber-feat h4 { font-weight: 700; font-size: .88rem; color: var(--dark); margin-bottom: 4px; }
.cyber-feat p  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ── IMPACT ── */
.impact-section { padding: clamp(56px,8vw,88px) 0; background: var(--green); position: relative; overflow: hidden; }
.impact-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: clamp(28px,4vw,40px); text-align: center; position: relative; }
.impact-item .num { font-size: clamp(2.8rem,5vw,3.8rem); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 10px; letter-spacing: -.04em; }
.impact-item .lbl { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .1em; }

/* ── SDGs ── */
.sdg-section { padding: var(--section-pad) 0; background: var(--off-white); }
.sdg-header { text-align: center; margin-bottom: clamp(36px,5vw,56px); }
.sdg-header .section-label { justify-content: center; }
.sdg-header .section-label::before { display: none; }

.sdg-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sdg-pill {
  display: flex; align-items: center; gap: 11px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: transform .22s, box-shadow .22s;
}
.sdg-pill:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }
.sdg-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; color: var(--white); }
.sdg-lbl { font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.35; max-width: 130px; }
.c2  { background: #DDA63A; } .c3  { background: #4C9F38; } .c4  { background: #C31F33; }
.c5  { background: #FF3A21; } .c7  { background: #E8A020; } .c8  { background: #A21942; }
.c9  { background: #FD6925; } .c10 { background: #DD1367; } .c13 { background: #3F7E44; }
.c15 { background: #56C02B; } .c16 { background: #00689D; } .c17 { background: #19486A; }

/* ── TEAM ── */
.team-section { padding: var(--section-pad) 0; background: var(--white); }
.team-header { text-align: center; margin-bottom: clamp(40px,6vw,64px); }
.team-header .section-label { justify-content: center; }
.team-header .section-label::before { display: none; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 24px; }
.team-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px 20px 26px; text-align: center;
  transition: transform .28s, box-shadow .28s;
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.1); border-color: var(--green-light); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 800; color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,.14); overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card h3 { font-size: .98rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.team-card .role { font-size: .72rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* ── BLOG PREVIEW ── */
.blog-preview-section { padding: var(--section-pad) 0; background: var(--off-white); }
.bp-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.bp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bp-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.bp-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.09); }
.bp-card-img { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.bp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.bp-card:hover .bp-card-img img { transform: scale(1.05); }
.bp-card-cat { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 3px 10px; border-radius: 100px; }
.bp-card-body { padding: 20px; }
.bp-card-date { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.bp-card-body h3 { font-size: .95rem; font-weight: 800; line-height: 1.35; color: var(--dark); margin-bottom: 8px; }
.bp-card-body h3 a { text-decoration: none; color: inherit; transition: color .2s; }
.bp-card-body h3 a:hover { color: var(--green); }
.bp-card-excerpt { font-size: .82rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .bp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bp-grid { grid-template-columns: 1fr; } .bp-header { flex-direction: column; align-items: flex-start; } }

/* ── CTA ── */
.cta-section { padding: var(--section-pad) 0; background: var(--green-xlight); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,92,56,.07) 0%, transparent 70%); pointer-events: none;
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; }
.cta-inner p { color: var(--muted); font-size: clamp(.9rem,1.4vw,1rem); line-height: 1.82; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT STRIP ── */
.strip { background: var(--green-dark); padding: clamp(48px,7vw,72px) 0; }
.strip-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: clamp(28px,4vw,44px); }
.strip-item { display: flex; gap: 15px; align-items: flex-start; }
.strip-item .si-ico { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.strip-item h4 { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.4); margin-bottom: 5px; }
.strip-item p, .strip-item a { font-size: .88rem; color: rgba(255,255,255,.9); font-weight: 500; }
.strip-item a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer { background: #060E09; padding: clamp(60px,8vw,90px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: clamp(36px,5vw,64px); margin-bottom: clamp(48px,6vw,64px); }
.footer-logo-img { height: 100px; width: auto; display: block; margin-bottom: 14px; }
.f-brand p { font-size: .84rem; color: rgba(255,255,255,.42); line-height: 1.78; margin-bottom: 24px; max-width: 270px; }
.socials { display: flex; gap: 9px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .9rem; transition: all .22s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.f-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 18px; }
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col ul a { font-size: .84rem; color: rgba(255,255,255,.42); transition: color .18s; }
.f-col ul a:hover { color: var(--white); }
.f-col .contact-line { font-size: .84rem; color: rgba(255,255,255,.42); margin-bottom: 9px; display: flex; gap: 9px; align-items: flex-start; }
.f-col .contact-line i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.f-col .contact-line a:hover { color: var(--white); }
.f-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-bottom p { font-size: .76rem; color: rgba(255,255,255,.28); }
.f-bottom a { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero { height: clamp(340px,40vw,430px); display: flex; align-items: flex-end; padding-bottom: clamp(40px,6vw,64px); position: relative; overflow: hidden; margin-top: var(--nav-h); }
.page-hero .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,36,18,.94) 0%, rgba(9,36,18,.52) 60%, rgba(9,36,18,.2) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: .76rem; color: rgba(255,255,255,.5); margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -.03em; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .ph-sub { font-size: clamp(.88rem,1.4vw,1rem); color: rgba(255,255,255,.7); margin-top: 12px; max-width: 520px; line-height: 1.72; font-weight: 400; }

/* ── ABOUT PAGE ── */
.about-intro { padding: var(--section-pad) 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: center; }
.mv-boxes { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.mv-box { padding: 20px 22px; background: var(--off-white); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.mv-box h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.mv-box p  { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.about-intro-visual img { width: 100%; height: clamp(340px,44vw,530px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(0,0,0,.12); }

.values-section { padding: clamp(56px,8vw,80px) 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(185px,1fr)); gap: 20px; margin-top: 44px; }
.val-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 22px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: transform .28s, box-shadow .28s; border: 1px solid var(--border); }
.val-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.1); border-color: var(--green-light); }
.val-card .v-ico { font-size: 2.2rem; margin-bottom: 14px; color: var(--green); }
.val-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.val-card p  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: clamp(40px,6vw,88px); }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.ci-item { display: flex; gap: 15px; align-items: flex-start; }
.ci-item .ci-ico { flex-shrink: 0; width: 48px; height: 48px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--green); }
.ci-item h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.ci-item p, .ci-item a { font-size: .92rem; color: var(--text); font-weight: 500; }
.ci-item a:hover { color: var(--green); }

.contact-form-wrap { background: var(--off-white); padding: clamp(28px,4vw,48px); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.contact-form-wrap h3 { font-size: clamp(1.5rem,2.5vw,1.9rem); font-weight: 800; color: var(--dark); margin-bottom: 6px; letter-spacing: -.02em; }
.contact-form-wrap > p { font-size: .88rem; color: var(--muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .92rem; color: var(--text);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(26,92,56,.08); }
.form-group textarea { resize: vertical; min-height: 136px; }
.form-success { display: none; background: var(--green-light); border: 2px solid var(--green); border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 16px; }
.form-success p { font-size: .88rem; color: var(--green); font-weight: 600; }

/* ── MAP PLACEHOLDER ── */
.map-placeholder { height: clamp(280px,35vw,400px); background: var(--off-white); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; border-top: 1px solid var(--border); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .40s; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */

/* Tablet landscape */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .welcome-grid, .what-grid, .cyber-grid, .about-intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .what-visual::before { display: none; }
  .welcome-visual .img-inset, .exp-badge { display: none; }
  .focus-grid { grid-template-columns: repeat(2,1fr); }
  .welcome-grid { gap: 40px; }
  .what-grid, .cyber-grid, .about-intro-grid, .contact-grid { gap: 40px; }
  .what-visual img, .cyber-visual img { height: clamp(260px,40vw,400px); }
  .about-intro-visual img { height: clamp(260px,40vw,420px); }
}

/* Large mobile */
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .f-brand { grid-column: 1 / -1; }
  .focus-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .sdg-wrap { gap: 8px; }
  .sdg-pill { padding: 10px 12px; }
  .sdg-lbl { font-size: .72rem; max-width: 110px; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --section-pad: clamp(48px, 10vw, 72px); }
  .focus-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .welcome-features { grid-template-columns: 1fr; gap: 14px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .carousel-arrows { display: none; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Small mobile */
@media (max-width: 420px) {
  .slide-heading { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .sdg-pill { min-width: 0; }
  .f-bottom { flex-direction: column; text-align: center; gap: 6px; }
}
