* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #07090f;
  color: #ffffff;
  overflow-x: hidden;
}

/* HERO */
.hero--brand {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(78, 198, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(78, 198, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #05070c 0%, #0b1020 45%, #07090f 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: 8%;
  left: 10%;
  background: rgba(78, 198, 255, 0.18);
}

.orb-2 {
  width: 260px;
  height: 260px;
  right: 8%;
  bottom: 10%;
  background: rgba(78, 198, 255, 0.12);
  animation-delay: 1.2s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.2;
}

.hero__container--brand {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 20px 70px;
  display: grid;
  align-content: center;
  gap: 2rem;
}

.hero__top {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.letters {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.letters span {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  animation: letterFloat 3.2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(78, 198, 255, 0.08);
}

.letters span:nth-child(1),
.letters span:nth-child(2),
.letters span:nth-child(3) {
  color: #f5f7fb;
}

.letters span:nth-child(4),
.letters span:nth-child(5),
.letters span:nth-child(6),
.letters span:nth-child(7) {
  color: #4ec6ff;
}

.letters span:nth-child(2) { animation-delay: 0.08s; }
.letters span:nth-child(3) { animation-delay: 0.16s; }
.letters span:nth-child(4) { animation-delay: 0.24s; }
.letters span:nth-child(5) { animation-delay: 0.32s; }
.letters span:nth-child(6) { animation-delay: 0.40s; }
.letters span:nth-child(7) { animation-delay: 0.48s; }

.symbol {
  width: clamp(44px, 5vw, 74px);
  height: clamp(44px, 5vw, 74px);
  filter: drop-shadow(0 0 18px rgba(78, 198, 255, 0.24));
}

.outline {
  fill: none;
  stroke: #4ec6ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawLine 2.6s ease forwards;
}

.fill-shape {
  fill: rgba(78, 198, 255, 0.18);
  animation: pulseFill 3s ease-in-out infinite;
}

/* MINIMAL HERO */
.hero-minimal {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* LOGO */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.letters span {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 900;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.letters span:nth-child(-n+3) {
  color: #ffffff;
}

.letters span:nth-child(n+4) {
  color: #4ec6ff;
}

/* SVG */
.symbol {
  width: 60px;
  height: 60px;
}

.outline {
  fill: none;
  stroke: #4ec6ff;
  stroke-width: 4;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: draw 2s ease forwards;
}

.fill-shape {
  fill: rgba(78, 198, 255, 0.2);
}

/* TEXT */
.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* BUTTON */
.hero-btn {
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

.hero-btn:hover {
  background: #ffffff;
  color: #000;
}

/* ANIMATIONS */
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

/* GENERAL SECTIONS */
.section {
  padding: 100px 20px;
  text-align: center;
  background: #0b0f18;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.section p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

footer {
  padding: 24px;
  text-align: center;
  background: #06080d;
  color: rgba(255,255,255,0.65);
}

/* ANIMATIONS */
@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-18px) translateX(10px);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseFill {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);
    transform-origin: center;
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
    transform-origin: center;
  }
}

@keyframes letterFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero__container--brand {
    padding-top: 90px;
    gap: 1.5rem;
  }

  .hero__top,
  .hero__content {
    text-align: center;
    align-items: center;
  }

  .logo-container {
    justify-content: center;
  }

  .hero__badge-wrap,
  .hero__cta-row,
  .hero__proof {
    justify-content: center;
  }

  .btn--primary {
    width: 100%;
    max-width: 280px;
  }
}


/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #4ec6ff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.topbar-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.topbar-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.topbar-link--cta {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
}

.topbar-link--cta:hover {
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

/* Push hero down below fixed bar */
.hero-minimal {
  min-height: 100vh;
  padding-top: 46px;
}

/* MOBILE */
@media (max-width: 768px) {
  .topbar-inner {
    height: 42px;
    padding: 0 10px;
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .topbar-inner::-webkit-scrollbar {
    display: none;
  }

  .topbar-link {
    font-size: 0.78rem;
  }

  .topbar-link--cta {
    padding: 5px 10px;
  }

  .hero-minimal {
    padding-top: 42px;
  }
}
/* GLOBAL SECTION STRUCTURE */
.section {
  padding: 110px 24px;
  background: #ffffff;
  color: #111111;
}

.section-dark {
  background: #0d0f14;
  color: #f5f7fb;
}

.section-accent {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  color: #111111;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.container.narrow,
.narrow {
  width: min(820px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 45, 114, 0.08);
  color: #002d72;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: #d9e7ff;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.72);
}

.section-dark .section-heading p {
  color: rgba(245, 247, 251, 0.72);
}

/* FEATURED WORK */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(121, 170, 255, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.work-card-top {
  margin-bottom: 16px;
}

.work-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(121, 170, 255, 0.12);
  color: #cfe0ff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.work-card p {
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245, 247, 251, 0.76);
}

.work-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.work-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(245, 247, 251, 0.85);
}

.work-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ea7ff;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 45px rgba(12, 24, 44, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(12, 24, 44, 0.12);
  border-color: rgba(0, 91, 181, 0.18);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #002d72, #005bb5);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 700;
  color: #101828;
}

.process-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(16, 24, 40, 0.72);
}

/* CUSTOM REQUEST */
.custom-form {
  margin-top: 36px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 45, 114, 0.08);
  box-shadow: 0 20px 55px rgba(12, 24, 44, 0.08);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
  color: #111111;
  font-size: 0.98rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.custom-form input:focus,
.custom-form textarea:focus {
  border-color: rgba(0, 91, 181, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 91, 181, 0.08);
}

.custom-form textarea {
  resize: vertical;
  min-height: 180px;
  margin-bottom: 18px;
}

.custom-form .hero-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* IMPROVED BUTTON STYLE */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #002d72, #005bb5);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 14px 34px rgba(0, 45, 114, 0.22);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 45, 114, 0.28);
  opacity: 0.98;
}

/* FOOTER */
footer {
  padding: 34px 24px 50px;
  background: #0d0f14;
  text-align: center;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 84px 20px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .work-card,
  .process-card,
  .custom-form {
    padding: 22px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .section-heading p,
  .work-card p,
  .process-card p {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}


.featured-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.featured-proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 34px;
}

.proof-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.proof-item strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.proof-item span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.work-card-top {
  margin-bottom: 14px;
}

.work-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: #9ed0ff;
}

.work-card h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.25;
  color: #fff;
}

.work-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.work-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.work-list li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}

.work-result {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.work-result span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ed0ff;
}

.work-result p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.testimonial-feature {
  margin-top: 34px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 60px rgba(0,0,0,0.2);
}

.testimonial-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(158,208,255,0.12);
  color: #9ed0ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-feature blockquote {
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ffffff;
}

.testimonial-meta strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.testimonial-meta span {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .featured-proof-bar,
  .work-grid {
    grid-template-columns: 1fr;
  }
}
