@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --navy: #071422;
  --navy-2: #0c1d33;
  --ink: #102033;
  --text: #1c2b3d;
  --muted: #5d6d80;
  --line: #e4eaf1;
  --paper: #f4f7fa;
  --white: #ffffff;
  --teal: #14c4b6;
  --teal-d: #0b9b90;
  --violet: #7b5cff;
  --grad: linear-gradient(90deg, #14c4b6, #7b5cff 55%, #e14fd0);
  --shadow: 0 18px 50px rgba(7, 20, 34, 0.08);
  --radius: 14px;
}
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Outfit", sans-serif; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #9fb0c4;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; flex-wrap: wrap; }
.topbar a { color: #c9d6e5; }
.topbar a:hover { color: var(--teal); }
.topbar-links { display: flex; gap: 22px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(7, 20, 34, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img { height: 42px; width: auto; }
.brand-name { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 20px; letter-spacing: .04em; display: block; }
.brand-tag { font-size: 11px; letter-spacing: .16em; color: #8ea0b5; text-transform: uppercase; }

.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-list > li > a,
.nav-drop > button {
  display: block;
  padding: 10px 14px;
  color: #c5d2e0;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-list > li > a:hover,
.nav-list > li > a.is-active,
.nav-drop > button:hover,
.nav-drop.open > button { color: #fff; }
.nav-drop { position: relative; }
.nav-drop > button { display: flex; align-items: center; gap: 6px; }
.nav-drop > button::after { content: ""; border: solid currentColor; border-width: 0 1.5px 1.5px 0; padding: 2.5px; transform: rotate(45deg) translateY(-2px); }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; display: none; border: 1px solid var(--line);
}
.nav-drop.open .drop-menu,
.nav-drop:hover .drop-menu { display: block; }
.drop-menu a {
  display: block; padding: 10px 12px; border-radius: 8px; color: var(--text); font-size: 14.5px;
}
.drop-menu a:hover { background: var(--paper); color: var(--teal-d); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; transition: .2s; cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--grad); color: #071422; }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline { border-color: #c9d5e2; color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-d); }
.nav-cta { white-space: nowrap; padding: 10px 18px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18);
  background: transparent; border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 6px 10px; }

/* Page hero */
.page-hero {
  position: relative; min-height: 280px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; color: #fff;
  padding: 80px 0 48px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,34,.88) 0%, rgba(7,20,34,.55) 70%, rgba(7,20,34,.35) 100%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.crumbs { color: #9fb0c4; font-size: 13px; margin-bottom: 10px; }
.crumbs a:hover { color: var(--teal); }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 48px); max-width: 720px; }
.page-hero p { color: #c9d6e5; max-width: 560px; margin-top: 12px; font-size: 17px; }

/* Home hero */
.home-hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background: var(--navy) center/cover no-repeat; color: #fff;
}
.home-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7,20,34,.92) 0%, rgba(7,20,34,.72) 48%, rgba(7,20,34,.38) 100%);
}
.home-hero .wrap { position: relative; z-index: 1; padding: 90px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--teal); }
.home-hero h1 { color: #fff; font-size: clamp(36px, 5.4vw, 64px); max-width: 760px; margin-bottom: 20px; }
.home-hero .lead { color: #c5d2e0; font-size: 18px; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.1); max-width: 560px; border: 1px solid rgba(255,255,255,.1); }
.stat { background: rgba(7,20,34,.55); padding: 18px 16px; }
.stat b { display: block; font-family: "Outfit", sans-serif; font-size: 28px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 12px; color: #9fb0c4; letter-spacing: .04em; text-transform: uppercase; }

/* Sections */
section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 17px; }
.section-paper { background: var(--paper); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 1px 0 rgba(7,20,34,.03);
  transition: .22s transform, .22s box-shadow;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { height: 190px; background-size: cover; background-position: center; }
.card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-num { color: var(--teal-d); font-size: 12px; letter-spacing: .12em; font-weight: 700; margin-bottom: 8px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; flex: 1; }
.card .more { margin-top: 16px; color: var(--teal-d); font-weight: 600; font-size: 14px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split img, .split .photo {
  width: 100%; height: 420px; object-fit: cover; border-radius: 18px;
  background-size: cover; background-position: center;
}
.split ul { margin: 18px 0 28px; padding-left: 18px; color: var(--muted); }
.split li { margin: 8px 0; }

.feature-list { list-style: none; display: grid; gap: 14px; margin: 22px 0 28px; }
.feature-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start;
  color: var(--muted);
}
.feature-list li::before {
  content: "✓";
  color: var(--teal-d);
  font-weight: 700;
  line-height: 1.4;
}

table.spec { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
table.spec th {
  text-align: left; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); padding: 14px 20px; background: var(--paper); font-weight: 600;
}
table.spec td { padding: 18px 20px; border-top: 1px solid var(--line); }
table.spec td.mat { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 17px; }
table.spec td.thk { color: var(--teal-d); font-weight: 700; font-family: "Outfit", sans-serif; }
.bar { height: 7px; background: var(--line); border-radius: 99px; max-width: 220px; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--grad); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pstep { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.pstep .n { font-family: "Outfit", sans-serif; color: var(--teal-d); font-weight: 700; margin-bottom: 10px; }
.pstep h3 { font-size: 18px; margin-bottom: 8px; }
.pstep p { color: var(--muted); font-size: 15px; }

.cta-band {
  background: var(--navy-2) url("../images/hero-lazer-kesim.jpg") center/cover no-repeat;
  color: #fff; text-align: center; position: relative;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(7,20,34,.82); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.cta-band p { color: #c5d2e0; margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.info-card, .form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.info-card h3 { font-size: 18px; margin: 0 0 8px; }
.info-card p, .info-card a { color: var(--muted); display: block; }
.info-card a:hover { color: var(--teal-d); }
.info-stack { display: grid; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: #fff; color: var(--text); margin-bottom: 14px;
}
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.map { height: 320px; border: 0; width: 100%; border-radius: var(--radius); margin-top: 28px; filter: grayscale(.15); }

footer { background: var(--navy); color: #c5d2e0; padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.foot-grid h5 { color: #fff; font-family: "Outfit", sans-serif; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.foot-grid a, .foot-grid p { display: block; font-size: 14.5px; color: #9fb0c4; margin-bottom: 8px; }
.foot-grid a:hover { color: var(--teal); }
.foot-brand p { max-width: 280px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: #7e8fa3; flex-wrap: wrap;
}

@media (max-width: 980px) {
  .card-grid, .card-grid-3, .process, .split, .contact-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 28px; }
  .nav-toggle { display: block; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-list { display: none; }
  .site-header.menu-open .nav-list {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy-2); padding: 12px 20px 20px; gap: 0;
  }
  .drop-menu { position: static; box-shadow: none; background: transparent; border: 0; padding: 0 0 0 12px; }
  .drop-menu a { color: #c5d2e0; }
  .nav-drop:hover .drop-menu { display: none; }
  .nav-drop.open .drop-menu { display: block; }
}
@media (max-width: 680px) {
  .card-grid, .card-grid-3, .card-grid-2, .process, .split, .contact-grid, .foot-grid, .stats, .form-row { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; }
  .split .photo, .split img { height: 260px; }
}
