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

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

:root {
  --bg:          #0b0f1a;
  --bg-card:     #111827;
  --bg-sec:      #0d1526;
  --primary:     #f59e0b;
  --primary-dk:  #d97706;
  --text:        #f1f5f9;
  --text-muted:  #64748b;
  --text-sub:    #94a3b8;
  --border:      rgba(255,255,255,.08);
  --radius:      16px;
  --font-d:      'Outfit', sans-serif;
  --font-b:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); line-height: 1.6; overflow-x: hidden; }
a    { color: inherit; text-decoration: none; }
address { font-style: normal; }
img  { display: block; max-width: 100%; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-alt{ background: var(--bg-card); }

.section-label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.section-label.center { justify-content: center; }
.label-line { width: 32px; height: 2px; background: var(--primary); flex-shrink: 0; }
.label-text { color: var(--primary); font-size: 11px; font-weight: 700;
              letter-spacing: .15em; text-transform: uppercase; }

.section-intro { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-intro h2 { font-family: var(--font-d); font-size: clamp(28px,4vw,48px);
                    font-weight: 700; margin-bottom: 16px; }
.section-intro p  { color: var(--text-sub); font-size: 17px; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(32px);
          transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(11,15,26,.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px;
            font-family: var(--font-d); font-weight: 700; font-size: 16px;
            letter-spacing: .04em; }
.nav-logo-icon { width: 28px; height: 28px; background: var(--primary);
                 border-radius: 6px; display: flex; align-items: center;
                 justify-content: center; }
.nav-logo-dot  { width: 8px; height: 8px; background: var(--bg); border-radius: 2px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a   { font-size: 14px; font-weight: 500; color: var(--text-sub);
                 transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--primary); color: #000; font-weight: 700; font-size: 13px;
  padding: 9px 22px; border-radius: 8px; transition: background .2s;
}
.nav-cta:hover { background: var(--primary-dk); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; border-radius: 2px; }
.nav-drawer {
  display: none; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a { padding: 16px 24px; font-size: 15px; font-weight: 500;
                color: var(--text-sub); border-bottom: 1px solid var(--border); }
.nav-drawer a:hover { color: var(--text); background: rgba(255,255,255,.03); }

@media(max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; position: relative; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('./assets/images/hero-bg.png') center/cover no-repeat;
  opacity: .15;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, var(--bg) 10%, rgba(11,15,26,.7) 60%, transparent 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 2; opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 3; max-width: 860px; }

.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 48px; height: 2px; background: var(--primary); }
.hero-eyebrow-text { color: var(--primary); font-size: 12px; font-weight: 700;
                     letter-spacing: .2em; text-transform: uppercase; }

.hero-h1 { font-family: var(--font-d); font-size: clamp(40px,6vw,80px);
           font-weight: 800; line-height: 1.08; margin-bottom: 28px; }
.hero-h1 .accent {
  color: transparent;
  background: linear-gradient(135deg, var(--primary), #fcd34d);
  -webkit-background-clip: text; background-clip: text;
}
.hero-desc { font-size: clamp(16px,1.8vw,20px); color: var(--text-sub);
             max-width: 600px; margin-bottom: 48px; line-height: 1.75; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #000; font-weight: 700; font-size: 15px;
  padding: 15px 32px; border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--font-b); transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 10px; border: 1px solid var(--border);
  cursor: pointer; font-family: var(--font-b); transition: background .2s, transform .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.05); transform: translateY(-2px); }

.hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 520px; }
@media(min-width: 600px) { .hero-badges { grid-template-columns: repeat(4,1fr); max-width: 100%; } }
.badge {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 12px; font-size: 13px; font-weight: 500;
  color: rgba(241,245,249,.78);
}
.badge svg { color: var(--primary); flex-shrink: 0; }

/* ── About ── */
.about-grid { display: grid; gap: 64px; align-items: center; }
@media(min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-text h2 { font-family: var(--font-d); font-size: clamp(28px,3.5vw,42px);
                 font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.about-text p  { color: var(--text-sub); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }

.about-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.about-attr  { display: flex; align-items: center; gap: 10px; font-size: 14px;
               font-weight: 500; color: rgba(241,245,249,.82); }
.about-attr svg { color: var(--primary); flex-shrink: 0; }

.about-visual {
  border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; position: relative; height: 520px; background: var(--bg);
}
.hex-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,17 58,35 30,50 2,35 2,17' fill='none' stroke='%23f59e0b' stroke-width='0.8' stroke-opacity='0.13'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}
.hex-glow { position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(245,158,11,.09) 0%, transparent 70%); }
.about-cards { position: absolute; inset: 0; display: flex;
               flex-direction: column; justify-content: space-between; padding: 28px; }
.info-card {
  background: rgba(11,15,26,.9); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 20px 24px; backdrop-filter: blur(8px);
}
.info-card-lbl { font-size: 10px; font-weight: 700; letter-spacing: .15em;
                 text-transform: uppercase; color: var(--primary);
                 margin-bottom: 5px; display: flex; align-items: center; gap: 6px; }
.info-card-lbl svg { flex-shrink: 0; }
.info-card-val { font-family: var(--font-d); font-weight: 700; font-size: 20px; }
.info-card-sub { color: var(--text-sub); font-size: 13px; margin-top: 2px; }
.info-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-card-sm   { background: rgba(11,15,26,.9); border: 1px solid rgba(255,255,255,.1);
                  border-radius: 12px; padding: 16px 18px; backdrop-filter: blur(8px); }
.info-card-sm .info-card-val { font-family: var(--font-d); font-weight: 600; font-size: 14px; }
.info-year { align-self: flex-end; max-width: 160px; margin-left: auto; }

/* ── Services ── */
.services-grid { display: grid; gap: 24px; margin-bottom: 60px; }
@media(min-width:600px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .services-grid { grid-template-columns: repeat(4,1fr); } }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .25s, transform .2s;
}
.service-card:hover { border-color: rgba(245,158,11,.4); transform: translateY(-3px); }
.service-icon { margin-bottom: 24px; padding: 14px; background: var(--bg);
                border-radius: 12px; display: inline-flex; }
.service-icon svg { color: var(--primary); }
.service-card h3 { font-family: var(--font-d); font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.service-card p  { color: var(--text-sub); font-size: 14px; line-height: 1.75; }

.how-box { background: var(--bg-card); border: 1px solid var(--border);
           border-radius: 24px; padding: 56px; }
.how-box > h3  { font-family: var(--font-d); font-size: 26px; font-weight: 700;
                 text-align: center; margin-bottom: 8px; }
.how-box > .sub { text-align: center; color: var(--text-sub); margin-bottom: 48px; }
.how-steps { display: grid; gap: 32px; }
@media(min-width: 768px) { .how-steps { grid-template-columns: repeat(4,1fr); } }
.step-num { font-family: var(--font-d); font-size: 52px; font-weight: 800;
            color: rgba(245,158,11,.18); line-height: 1; margin-bottom: 14px; }
.how-step h4 { font-family: var(--font-d); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.how-step p  { color: var(--text-sub); font-size: 13px; line-height: 1.7; }

/* ── Values ── */
.values-grid { display: grid; gap: 52px; }
@media(min-width: 960px) { .values-grid { grid-template-columns: 1fr 2fr; } }

.values-left h2 { font-family: var(--font-d); font-size: clamp(28px,3.5vw,40px);
                  font-weight: 700; margin-bottom: 20px; }
.values-left > p { color: var(--text-sub); font-size: 17px; line-height: 1.8; margin-bottom: 32px; }
.quote-box { background: var(--bg); border: 1px solid var(--border);
             border-radius: 14px; padding: 24px 28px; }
.quote-box blockquote { color: rgba(241,245,249,.8); font-style: italic;
                        font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.quote-attr { display: flex; align-items: center; gap: 10px; }
.quote-attr-line { width: 24px; height: 2px; background: var(--primary); }
.quote-attr-name { color: var(--primary); font-size: 13px; font-weight: 600; }

.values-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.value-item   { border-top: 1px solid var(--border); padding-top: 22px; }
.value-num    { color: var(--primary); font-size: 11px; font-family: monospace;
                letter-spacing: .1em; font-weight: 600; margin-bottom: 8px; }
.value-item h3 { font-family: var(--font-d); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.value-item p  { color: var(--text-sub); font-size: 14px; line-height: 1.75; }

/* ── Contact ── */
.contact-intro { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.contact-intro h2 { font-family: var(--font-d); font-size: clamp(28px,3.5vw,42px);
                    font-weight: 700; margin-bottom: 14px; }
.contact-intro p  { color: var(--text-sub); font-size: 17px; }

.contact-card { max-width: 940px; margin: 0 auto;
                background: var(--bg-card); border: 1px solid var(--border);
                border-radius: 24px; overflow: hidden; }
.contact-inner { display: grid; }
@media(min-width: 700px) { .contact-inner { grid-template-columns: 2fr 3fr; } }

.contact-info { background: var(--bg-sec); padding: 48px;
                display: flex; flex-direction: column; justify-content: space-between; }
.contact-info h3 { font-family: var(--font-d); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.contact-info > p { color: rgba(241,245,249,.58); font-size: 14px;
                    line-height: 1.7; margin-bottom: 36px; }
.contact-detail   { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-detail svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.cd-label { font-size: 10px; font-weight: 700; letter-spacing: .12em;
            text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
.cd-val   { font-size: 13px; color: rgba(241,245,249,.72); line-height: 1.6; }
.cd-val a:hover { color: var(--primary); }

.expect-list  { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; }
.expect-label { font-size: 10px; font-weight: 700; letter-spacing: .12em;
                text-transform: uppercase; color: rgba(241,245,249,.32); margin-bottom: 12px; }
.expect-item  { display: flex; align-items: flex-start; gap: 10px;
                margin-bottom: 10px; font-size: 13px; color: rgba(241,245,249,.6); }
.expect-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.contact-form-wrap { padding: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500;
                    margin-bottom: 8px; color: var(--text-sub); }
.form-group input,
.form-group textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; color: var(--text);
  font-size: 14px; font-family: var(--font-b); outline: none;
  transition: border-color .2s; resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,.5); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(245,158,11,.5); }
.form-group textarea { min-height: 140px; }
.form-error { color: #ef4444; font-size: 12px; margin-top: 5px; display: none; }
.form-error.show { display: block; }
.btn-submit {
  width: 100%; background: var(--primary); color: #000;
  font-weight: 700; font-size: 15px; padding: 14px;
  border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--font-b); transition: background .2s;
}
.btn-submit:hover { background: var(--primary-dk); }
.form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: #1a2b39; border: 1px solid rgba(245,158,11,.3);
  border-radius: 14px; padding: 18px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6); max-width: 340px;
  transform: translateY(80px); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: #22c55e; flex-shrink: 0; }
.toast-title { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.toast-desc  { font-size: 13px; color: var(--text-sub); }

/* ── Footer ── */
footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 44px 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between;
                align-items: center; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px;
               font-family: var(--font-d); font-weight: 700; font-size: 16px; }
.footer-sub  { color: var(--text-muted); font-size: 13px; margin-top: 4px; font-weight: 400; font-family: var(--font-b); }
.footer-right { text-align: right; }
.footer-email { display: block; font-size: 14px; color: var(--text-sub);
                margin-bottom: 6px; transition: color .2s; }
.footer-email:hover { color: var(--primary); }
.footer-copy  { font-size: 12px; color: var(--text-muted); }