:root {
  --navy: #071425;
  --navy-dark: #050e1a;
  --navy-2: #0d2138;
  --blue: #11b8ff;
  --orange: #ff5a1f;
  --orange-2: #ff7a1a;
  --text: #f5f7fa;
  --muted: #b8c4d0;
  --border: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.045);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 20, 37, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 180px;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 0 26px rgba(255, 90, 31, 0.35);
}

.nav-cta {
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  padding: 7px 12px;
  position: relative;
  z-index: 2;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 20px 4%;
  background: var(--navy-2);
}

.mobile-nav a {
  padding: 10px;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  background:
    radial-gradient(circle at 15% 35%, rgba(255, 90, 31, 0.20), transparent 28%),
    radial-gradient(circle at 78% 40%, rgba(17, 184, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #06111f, #071425 58%, #0a1d32);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.14;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(52px, 7vw, 106px);
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero h1 span {
  display: block;
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255, 90, 31, 0.25);
}

.hero-text {
  color: var(--muted);
  font-size: 20px;
  max-width: 660px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 900;
}

.btn-secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: rgba(17, 184, 255, 0.06);
  box-shadow: 0 0 26px rgba(17, 184, 255, 0.14);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transform: translateX(-70px);
}

.hero-image img,
.hero-superhero {
  width: min(560px, 100%);
  max-width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 45px rgba(17, 184, 255, 0.42))
    drop-shadow(0 0 45px rgba(255, 90, 31, 0.22));
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(17, 184, 255, 0.28), transparent 65%),
    radial-gradient(circle at 70% 70%, rgba(255, 90, 31, 0.18), transparent 55%);
  filter: blur(12px);
  z-index: 1;
}

/* GENERAL SECTIONS */

section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.audit-box h2,
.demo-box h2,
.final-cta h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-heading p,
.audit-box p,
.demo-box p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

/* PROBLEM */

.problem-section {
  background: var(--navy-dark);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.small-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

/* FRAMEWORK */

.framework-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 90, 31, 0.14), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(17, 184, 255, 0.14), transparent 30%),
    var(--navy);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.framework-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: 26px;
}

.framework-card h3 {
  color: var(--blue);
  margin-bottom: 12px;
}

.framework-card p {
  color: var(--muted);
}

/* SERVICES */

.services-section,
.portfolio-section {
  background: #08192d;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px;
  border-radius: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.portfolio-card:hover,
.framework-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 184, 255, 0.38);
}

.icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

/* AUDIT */

.audit-section {
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 90, 31, 0.18), transparent 32%),
    radial-gradient(circle at 88% 70%, rgba(17, 184, 255, 0.16), transparent 32%),
    var(--navy);
}

.audit-box,
.demo-box {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 32px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* PORTFOLIO */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.portfolio-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.portfolio-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.portfolio-card.featured img {
  height: 360px;
}

.portfolio-card div {
  padding: 24px;
}

.portfolio-card p {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-card h3 {
  margin-bottom: 10px;
}

.portfolio-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 16px;
}

.portfolio-card a {
  color: var(--blue);
  font-weight: 900;
}

/* DEMO */

.demo-section {
  background: var(--navy-dark);
  text-align: center;
}

.demo-box {
  flex-direction: column;
  max-width: 900px;
}

/* FINAL CTA */

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 90, 31, 0.20), transparent 34%),
    var(--navy);
}

.final-cta .hero-buttons {
  justify-content: center;
  margin-top: 26px;
}

/* FOOTER */

.site-footer {
  background: #040b14;
  border-top: 1px solid var(--border);
  padding: 44px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
}

.site-footer img {
  width: 170px;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.site-footer h4 {
  margin-bottom: 12px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }

  .nav-container {
    height: 96px;
  }

  .logo img {
    width: 185px;
  }

  .hero {
    min-height: auto;
    padding: 45px 0 70px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 82px);
    line-height: 0.88;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }

  .hero-text {
    font-size: 20px;
    max-width: 92%;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn {
    width: fit-content;
    max-width: 100%;
  }

  .hero-image {
    justify-content: center;
    transform: none;
    padding-left: 0;
    margin-top: 5px;
  }

  .hero-image img {
    width: min(310px, 82vw);
    max-width: 100%;
  }

  .problem-grid,
  .service-grid,
  .framework-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .audit-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-container {
    height: 92px;
  }

  .logo img {
    width: 175px;
  }

  .hero {
    padding: 32px 0 62px;
  }

  .hero h1 {
    font-size: 58px;
    line-height: 0.9;
  }

  .hero-text {
    font-size: 19px;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-image img {
    width: 300px;
  }

  .problem-grid,
  .service-grid,
  .framework-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card.featured {
    grid-column: span 1;
  }

  .portfolio-card.featured img,
  .portfolio-card img {
    height: 230px;
  }

  .audit-box,
  .demo-box {
    padding: 30px;
  }
}

/* ==========================
   SERVICES PAGE
========================== */

.page-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.1;
}

.page-hero p {
    max-width: 750px;
    margin: auto;
    color: #cfd6e4;
    font-size: 1.1rem;
}

.services-section {
    padding: 80px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,170,255,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.service-card .icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.4rem;
}

.service-card p {
    color: #cfd6e4;
    line-height: 1.7;
}

.final-cta {
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: #cfd6e4;
    max-width: 650px;
    margin: auto auto 40px;
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 80px;
    padding: 50px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.site-footer img {
    max-width: 180px;
    margin-bottom: 20px;
}

.site-footer h4 {
    margin-bottom: 15px;
    color: white;
}

.site-footer p,
.site-footer a {
    display: block;
    color: #cfd6e4;
    text-decoration: none;
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
/* AUDIT PAGE */

.audit-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
}

.audit-card h3 {
  margin-bottom: 12px;
}

.audit-card p {
  color: #cfd6e4;
}

.audit-form-section {
  padding: 80px 0;
}

.audit-form-box {
  max-width: 800px;
  margin: auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
}

.audit-form-box h2 {
  margin-bottom: 10px;
}

.audit-form-box p {
  color: #cfd6e4;
  margin-bottom: 30px;
}

.audit-form-box form {
  display: grid;
  gap: 18px;
}

.audit-form-box input,
.audit-form-box textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 12px;
  color: white;
}

.audit-form-box textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 768px) {

  .audit-benefits {
    grid-template-columns: 1fr;
  }

}
/* DEMO PAGE */

.demo-options-section {
  padding: 80px 0;
  background: #08192d;
}

.demo-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.demo-option-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px;
}

.demo-option-card h3 {
  margin-bottom: 12px;
  color: var(--blue);
}

.demo-option-card p {
  color: #cfd6e4;
}

.audit-form-box select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 12px;
  color: white;
}

.audit-form-box select option {
  color: black;
}

@media (max-width: 768px) {
  .demo-options-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE */

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

.contact-info-card,
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
}

.contact-info-card h2,
.contact-form-card h2 {
  margin-bottom: 25px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h4 {
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-item p {
  color: #cfd6e4;
}

.contact-form-card form {
  display: grid;
  gap: 18px;
}

.contact-form-card input,
.contact-form-card textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  color: white;
}

.contact-form-card textarea {
  min-height: 160px;
  resize: vertical;
}

@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

}

/* FINAL MOBILE HERO FIX */

@media (max-width: 768px) {
  .hero-image {
    display: none !important;
  }

  .hero {
    padding: 45px 0 70px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero h1 {
    font-size: 54px;
    line-height: 0.9;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.55;
  }
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37,211,102,0.35);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 65px;
        height: 65px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 65px;
        height: 65px;
        object-fit: contain;
    }
}
