
* {
  box-sizing: border-box;
}

:root {
  --navy: #061a3d;
  --navy-dark: #020b1e;
  --blue: #0b4fd4;
  --blue-light: #4da3ff;
  --text: #07142d;
  --muted: #4b5563;
  --panel: rgba(255,255,255,.68);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 137, 210, .35), transparent 32%),
    linear-gradient(90deg, rgba(14, 27, 48, .28), rgba(255,255,255,.82), rgba(14, 27, 48, .28)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 2px, rgba(5,14,28,.05) 2px 8px),
    #c8ced6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
}

/* Top logo area + navigation like the supplied graphic */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(1, 10, 27, .22) 0%, rgba(5, 20, 51, .92) 70%, rgba(2, 12, 35, .98) 100%);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.nav {
  min-height: 118px;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 32px;
}

.logo {
  display: block;
  width: 360px;
}

.logo img {
  display: block;
  max-width: 100%;
  height: 92px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.32));
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
  color: #f8fbff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0,0,0,.8);
}

nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #8cc8ff;
  border-bottom-color: #8cc8ff;
}

/* Hero simplified to match graphic style */
.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(2, 9, 26, .88), rgba(12, 32, 62, .55), rgba(210, 218, 230, .35));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/vokal-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: .24;
  filter: saturate(.85) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 45%, rgba(55,137,238,.32), transparent 34%),
    linear-gradient(90deg, rgba(2,8,24,.92), rgba(3,16,42,.62), rgba(255,255,255,.08));
}

.hero-content {
  position: relative;
  padding: 78px 0 88px;
  color: white;
}

.tagline {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(140,200,255,.55);
  background: rgba(7, 35, 82, .54);
  color: #dbeafe;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -2px;
  font-weight: 950;
  text-shadow: 0 8px 24px rgba(0,0,0,.42);
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d8e4f2;
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.primary {
  background: linear-gradient(135deg, #084bd6, #42a5ff);
  color: white;
  box-shadow: 0 18px 40px rgba(0,58,180,.35);
}

.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(255,255,255,.08);
}

/* Sections */
.section {
  padding: 92px 0;
}

.light {
  background: rgba(255,255,255,.34);
}

.dark {
  background:
    radial-gradient(circle at 30% 0%, rgba(65,136,230,.22), transparent 36%),
    linear-gradient(90deg, rgba(3, 13, 34, .95), rgba(9, 28, 58, .88), rgba(3, 13, 34, .95));
  color: white;
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.section-label {
  margin: 0 0 10px;
  color: #073fba;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 14px;
  font-weight: 950;
}

.section-label.blue {
  color: #8cc8ff;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.section p {
  font-size: 17px;
  line-height: 1.75;
}

.cards {
  display: grid;
  gap: 30px;
  margin-top: 48px;
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(77,163,255,.17);
  color: #8cc8ff;
  font-size: 31px;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  color: #d2dceb;
}

/* Projects: graphic layout from screenshot */
#projects {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(90deg, rgba(14, 27, 48, .32), rgba(255,255,255,.80), rgba(14, 27, 48, .32)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 2px, rgba(5,14,28,.06) 2px 8px),
    #c9ced6;
}

#projects .container {
  width: min(1420px, calc(100% - 48px));
}

#projects .section-label {
  text-align: center;
}

#projects h2 {
  text-align: center;
  color: #071a43;
  text-transform: uppercase;
  letter-spacing: .8px;
  text-shadow: 0 12px 25px rgba(0,0,0,.22);
}

.projects-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 34px;
  align-items: start;
}

.project {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.project-photo,
.project-img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow:
    0 18px 45px rgba(9, 19, 39, .28),
    inset 0 0 0 1px rgba(255,255,255,.45);
}

.project-title {
  margin: 0;
  padding: 18px 44px 10px 0;
  position: relative;
  color: #061c63;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.18;
  font-weight: 950;
  text-shadow: 0 8px 18px rgba(255,255,255,.65);
  cursor: pointer;
  user-select: none;
}

.project-title::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6,28,99,.10);
  color: #061c63;
  font-size: 26px;
  line-height: 1;
}

.project.open .project-title::after {
  content: "−";
}

.project-description {
  display: none;
  margin: 0;
  padding: 12px 18px 18px;
  border-left: 4px solid #0b4fd4;
  background: rgba(255,255,255,.55);
  color: #1f2937;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 14px 28px rgba(15,23,42,.12);
}

.project.open .project-description {
  display: block;
}

.benefits {
  display: grid;
  gap: 16px;
}

.benefits p {
  margin: 0;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #e5edf7;
  font-weight: 800;
}

.contact-wrap {
  background: rgba(255,255,255,.46);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 48px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(77,163,255,.2), transparent 34%),
    linear-gradient(135deg, #02112d, #08265a);
  color: white;
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}

.contact p {
  color: #dbe7f5;
}

.contact-info {
  align-content: center;
  display: grid;
  gap: 8px;
}

.contact-info a {
  color: #8cc8ff;
}

footer {
  padding: 26px 0;
  background: #020b1e;
  color: #b8c6d8;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-content img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 260px 1fr;
    min-height: 96px;
  }

  .logo {
    width: 260px;
  }

  .logo img {
    height: 72px;
  }

  nav {
    gap: 18px;
    font-size: 13px;
  }

  .four {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-photo,
  .project-img {
    height: 300px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  .nav {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .logo,
  .logo img {
    width: 230px;
    height: auto;
  }

  nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 6px;
  }

  .hero {
    min-height: 560px;
  }

  .two-col,
  .contact {
    grid-template-columns: 1fr;
  }

  .four,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-photo,
  .project-img {
    height: 260px;
  }

  .section {
    padding: 68px 0;
  }

  .contact {
    padding: 28px;
  }
}


.quote-nav {
  color: #8cc8ff !important;
}

.floating-quote {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg,#0b4fd4,#42a5ff);
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,70,190,.35);
  transition: transform .2s ease;
}

.floating-quote:hover {
  transform: translateY(-4px);
}

.quote-section {
  background: rgba(255,255,255,.55);
}

.quote-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg,#04142f,#0b2f6d);
  color: white;
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.quote-box p {
  color: #d8e7ff;
}

.quote-actions {
  display: flex;
  justify-content: center;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg,#0b4fd4,#42a5ff);
  color: white;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(0,70,190,.35);
}

.quote-btn:hover {
  filter: brightness(1.08);
}

@media (max-width: 760px) {
  .quote-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .floating-quote {
    right: 14px;
    bottom: 14px;
    font-size: 14px;
    padding: 14px 18px;
  }
}
