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

html {
  scroll-behavior: smooth;
    font-size: 103%; /* scales everything slightly */
}

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: #0b1020;
  color: #f5f7ff;

  font-size: 16.5px; /* was default ~16px */
  line-height: 1.65; /* slightly more breathing room */

  letter-spacing: 0.2px;
}

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

.hero {
  min-height: 100vh;
  padding: 2rem 7%;
  background: linear-gradient(135deg, #0b1020, #111933, #1c2952);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 199, 255, 0.12), transparent 68%);
  filter: blur(45px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: url("images/logo.png") no-repeat center;
  background-size: contain;
  opacity: 0.10; /* was 0.04 */
  filter: blur(2px) brightness(1.2);
  pointer-events: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0.9rem 1.4rem;
  margin-bottom: 4.5rem;

  background: rgba(17, 25, 51, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 14px;

  border: 1px solid rgba(124, 199, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  position: relative;
  z-index: 10;
}

.nav-cta {
  background: linear-gradient(135deg, #7cc7ff, #4fa3ff);
  color: #08101d;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124, 199, 255, 0.25);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.logo img {
  height: 38px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.3rem;
}

.nav-links a {
  color: #cfd7ff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #7cc7ff;
  background: rgba(124, 199, 255, 0.08);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(124, 199, 255, 0.18);
  border-radius: 10px;
  background: rgba(124, 199, 255, 0.08);
  cursor: pointer;
  padding: 0.65rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #dce3ff;
  border-radius: 999px;
  margin: 5px 0;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    width: 100%;

    flex-direction: column;
    gap: 0.35rem;

    padding: 1rem;
    background: rgba(17, 25, 51, 0.98);
    border: 1px solid rgba(124, 199, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
    z-index: 9999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }
}

.page-header .navbar {
  margin-bottom: 3.5rem;
}

.page-header {
  padding: 2rem 7% 0;
}
.hero-content {
  max-width: 700px;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #7cc7ff;
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.12;
  margin-bottom: 1.6rem;
  max-width: 17ch;
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #c8d2f0;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary {
  background: linear-gradient(135deg, #7cc7ff, #4fa3ff);
  color: #08101d;
  box-shadow: 0 8px 20px rgba(124, 199, 255, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(124, 199, 255, 0.5);
  color: #7cc7ff;
}

.section {
  padding: 5rem 7%;
}

.alt-section {
  background: #0f172d;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 700px;
}

.section-tag {
  color: #7cc7ff;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.section h2 {
  font-size: 2rem;
}

.section-subtext {
  max-width: 700px;
  color: #c8d2f0;
  margin-top: 0.8rem;
  font-size: 1rem;
}

.case-study-section {
  padding-top: 3.5rem;
  position: relative;
  text-align: center;
  .case-study-section h2 {
  margin-bottom: 0.6rem;
}
}

.case-study-section .section-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.case-study-section .section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.case-study-section h2 {
  max-width: 720px;
  margin: 0 auto;
}

.case-study-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
  letter-spacing: 0.4px;
}

.case-study-visual {
  display: flex;
  justify-content: center;
  margin: 0 0 2.5rem;
  margin-top: 1.2rem;
}

.case-study-visual img {
  width: 58%;
  max-width: 620px;
  min-width: 320px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-visual img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.case-study-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.case-result,
.trust-line {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

@media (max-width: 768px) {
  .case-study-section .section-header,
  .case-study-section h2 {
    max-width: 100%;
  }

  .case-study-visual img {
    width: 92%;
    min-width: 0;
  }
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 199, 255, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}                                             

.card h3 {
  margin-bottom: 0.8rem;
}

.card p {
  color: #c8d2f0;
}

.about-text {
  max-width: 800px;
  color: #c8d2f0;
  font-size: 1.05rem;
}

.about-text + .about-text {
  margin-top: 1rem;
}

.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #111933;
  color: white;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-note {
  margin-top: 0.65rem;
  color: #9fb3ff;
  font-size: 0.95rem;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 2rem 7% 3rem;
  text-align: center;
  color: #c8d2f0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }


  .case-study-card,
  .case-result {
    max-width: 100%;
  }
}

.case-meta {
  max-width: 980px;
  margin-top: 1rem;
}

.trust-line {
  margin-top: 0.4rem;
  color: #9fb3ff;
  font-size: 0.85rem;
}

.contact-email {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: bold;
  color: #7cc7ff;
}

.contact-email a:hover {
  opacity: 0.9;
}

/* testing zone */
.contact-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-intro {
  max-width: 520px;
}

.contact-intro h2 {
  margin-bottom: 1rem;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-points p {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(124, 199, 255, 0.08);
  border: 1px solid rgba(124, 199, 255, 0.14);
  color: #dce3ff;
  font-size: 0.92rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(124, 199, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.contact-form {
  max-width: none;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(17, 25, 51, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #93a4d8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(124, 199, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(124, 199, 255, 0.12);
}

.contact-form textarea {
  min-height: 170px;
}

.contact-form .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 0.25rem;
}

.contact-meta {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-email-label {
  color: #9fb3ff;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.contact-email {
  margin-top: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #7cc7ff;
}

.contact-email a:hover {
  opacity: 0.9;
}

#form-status {
  min-height: 24px;
}

@media (max-width: 900px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 100%;
  }

  .contact-card {
    padding: 1.1rem;
  }
}