:root {
  --navy: #1a2d5a;
  --navy-dark: #0f1c3d;
  --navy-deep: #0a1430;
  --orange: #f7841e;
  --orange-dark: #e06f0b;
  --text: #1f2937;
  --muted: #5b6475;
  --line: #e5e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 28, 61, .08);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Montserrat", "Inter", sans-serif; color: var(--navy-dark); line-height: 1.2; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--orange); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: all .25s ease; cursor: pointer; border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(247, 132, 30, .35); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(15, 28, 61, .08); }
.topbar { background: var(--navy-deep); color: #c9d1e3; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.topbar a:hover { color: var(--orange); }
.topbar-items { display: flex; gap: 24px; }
.topbar-items span, .topbar-items a { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg { width: 14px; height: 14px; color: var(--orange); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Montserrat", sans-serif; font-size: 20px; font-weight: 800; color: var(--navy-dark); letter-spacing: .02em; }
.brand-text small { font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: .18em; text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 8px; list-style: none; }
.menu a {
  position: relative; display: block; padding: 10px 16px;
  font-weight: 600; font-size: 15px; color: var(--navy-dark);
  transition: color .2s;
}
.menu a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--orange); transform: scaleX(0); transition: transform .25s;
}
.menu a:hover, .menu a.active { color: var(--orange); }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.menu .btn { margin-left: 12px; padding: 11px 22px; color: #fff; }
.menu .btn::after { display: none; }
.menu .btn:hover { color: #fff; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy-dark); margin: 6px 0; transition: .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 85% 20%, rgba(247,132,30,.18), transparent 60%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 120px 0 140px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 40%, transparent);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; margin-bottom: 22px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 18px; color: #c9d1e3; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-emblem {
  width: min(380px, 80vw); aspect-ratio: 1; border-radius: 32px;
  background: #fff; display: grid; place-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transform: rotate(-4deg);
  animation: float 6s ease-in-out infinite;
}
.hero-emblem img { width: 70%; }
.hero-ring {
  position: absolute; width: 115%; aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(247,132,30,.4); top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 40s linear infinite;
}
@keyframes float { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-14px); } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Feature strip */
.strip { margin-top: -64px; position: relative; z-index: 2; }
.strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.strip-item { padding: 32px; display: flex; gap: 18px; align-items: flex-start; border-right: 1px solid var(--line); }
.strip-item:last-child { border-right: 0; }
.strip-item h3 { font-size: 18px; margin-bottom: 6px; }
.strip-item p { color: var(--muted); font-size: 15px; }

.icon {
  flex: none; width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(247,132,30,.12); color: var(--orange);
}
.icon svg { width: 28px; height: 28px; }
.icon.navy { background: rgba(26,45,90,.08); color: var(--navy); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cards-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards.cards-4 .card { padding: 32px 26px; }
.cards.cards-4 .card h3 { font-size: 19px; }

/* AI products */
.ai-section {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(700px 400px at 10% 0%, rgba(247,132,30,.16), transparent 60%),
              radial-gradient(700px 400px at 90% 100%, rgba(80,120,220,.18), transparent 60%),
              var(--navy-deep);
}
.ai-section .section-head h2 { color: #fff; }
.ai-section .section-head p { color: #b8c2d9; }
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product {
  position: relative; padding: 40px; border-radius: 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s, border-color .3s, background .3s;
}
.product:hover { transform: translateY(-6px); border-color: rgba(247,132,30,.5); background: rgba(255,255,255,.07); }
.product .icon { width: 64px; height: 64px; margin-bottom: 22px; background: rgba(247,132,30,.15); }
.product .icon svg { width: 32px; height: 32px; }
.product h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.product p { color: #b8c2d9; font-size: 15.5px; }
.badge {
  position: absolute; top: 24px; right: 24px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  color: var(--orange); background: rgba(247,132,30,.12); border: 1px solid rgba(247,132,30,.35);
}
.service .badge { position: static; display: inline-block; margin-bottom: 10px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; transition: all .3s ease; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon { margin-bottom: 22px; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; color: var(--orange); font-size: 15px; }
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; transition: .2s; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.split p { color: var(--muted); margin-bottom: 16px; font-size: 16.5px; }
.checklist { list-style: none; margin: 24px 0 32px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/13px no-repeat;
}

.panel {
  position: relative; border-radius: 20px; padding: 48px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(circle, rgba(247,132,30,.45), transparent 70%);
}
.panel h3 { color: #fff; font-size: 24px; margin-bottom: 28px; position: relative; }
.pillars { display: grid; gap: 22px; position: relative; z-index: 1; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar .num {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; font-family: "Montserrat", sans-serif;
  background: rgba(247,132,30,.15); color: var(--orange); border: 1px solid rgba(247,132,30,.35);
}
.pillar h4 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.pillar p { color: #b8c2d9; font-size: 14.5px; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 36px;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange); margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* CTA */
.cta {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; padding: 72px 0; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 22px);
}
.cta .container { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.9); font-size: 17px; }
.cta .btn-navy { background: var(--navy-deep); }

/* Page hero */
.page-hero {
  position: relative; overflow: hidden; color: #fff; padding: 88px 0 80px;
  background: radial-gradient(800px 400px at 90% 0%, rgba(247,132,30,.22), transparent 60%),
              linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 50px); margin-bottom: 14px; }
.page-hero p { color: #c9d1e3; font-size: 18px; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: #9aa6c2; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span:last-child { color: var(--orange); }

/* Service detail */
.service-list { display: grid; gap: 32px; }
.service {
  display: grid; grid-template-columns: 96px 1fr 1fr; gap: 40px; align-items: start;
  padding: 44px; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  transition: box-shadow .3s;
}
.service:hover { box-shadow: var(--shadow); }
.service .icon { width: 80px; height: 80px; border-radius: 20px; }
.service .icon svg { width: 40px; height: 40px; }
.service h2 { font-size: 26px; margin-bottom: 12px; }
.service p { color: var(--muted); }
.service .checklist { margin: 0; }
.service .checklist li { font-size: 15px; }

/* Values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { text-align: center; padding: 36px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.value .icon { margin: 0 auto 18px; }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
.info-cards { display: grid; gap: 18px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.info-card h3 { font-size: 16px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 15.5px; }
.info-card a:hover { color: var(--orange); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 26px; margin-bottom: 8px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--navy-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; font: inherit; font-size: 15px; color: var(--text);
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(247,132,30,.12);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

.map { margin-top: 40px; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); height: 400px; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer { background: var(--navy-deep); color: #aab4cc; padding: 80px 0 0; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--orange); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .logo-badge { background: #fff; border-radius: 12px; padding: 6px; }
.footer-brand img { height: 44px; }
.footer-brand strong { color: #fff; font-family: "Montserrat", sans-serif; font-size: 18px; letter-spacing: .02em; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--orange); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13.5px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 25px rgba(37,211,102,.4);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .cards, .cards.cards-4, .values { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service { grid-template-columns: 80px 1fr; }
  .service .checklist { grid-column: 2; }
}
@media (max-width: 860px) {
  .topbar-items.secondary, .topbar .secondary { display: none; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; box-shadow: 0 20px 30px rgba(15,28,61,.08);
    display: none;
  }
  .menu.open { display: flex; }
  .menu a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .menu a::after { display: none; }
  .menu .btn { margin: 16px 0 0; justify-content: center; border-bottom: 0; }
  .nav { position: relative; }
  .hero { padding: 72px 0 110px; }
  .hero .container, .split, .contact-grid, .products { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .product { padding: 28px; }
  .badge { position: static; display: inline-block; margin-bottom: 16px; }
  .cards, .cards.cards-2, .cards.cards-4, .values, .steps, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .brand img { height: 44px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 9.5px; }
  .topbar-items { gap: 14px; }
  .service { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
  .service .checklist { grid-column: auto; }
  .panel, .form-card { padding: 28px; }
  .cta .container { flex-direction: column; align-items: flex-start; }
}
