:root {
  --bg: #07121f;
  --bg-soft: #0d1e33;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-muted: rgba(255,255,255,0.08);
  --text: #142033;
  --text-soft: #5e6a7f;
  --white: #ffffff;
  --blue: #2f6fbc;
  --blue-dark: #143765;
  --orange: #f26522;
  --orange-soft: #ff8f5c;
  --border: rgba(17, 32, 53, 0.08);
  --shadow: 0 18px 45px rgba(8, 25, 52, 0.12);
  --shadow-soft: 0 12px 30px rgba(7, 18, 31, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--surface-soft);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 48px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.compact {
  margin: 0;
}

.section-heading h2,
.about-section h2,
.cta-copy h2,
.featured-copy h2,
.hero h1 {
  margin: 0;
  line-height: 1.08;
}

.section-heading h2,
.about-section h2,
.cta-copy h2,
.featured-copy h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 18px;
}

.section-heading p,
.about-section p,
.featured-copy p,
.cta-copy p {
  color: var(--text-soft);
  margin: 0 0 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 18, 31, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 84px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.brand strong,
.brand small,
.main-nav a,
.nav-cta {
  color: var(--white);
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  opacity: 0.72;
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.35);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.footer-bg,
.footer-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url('../img/hero-dragon.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(47,111,188,0.24), transparent 35%),
    linear-gradient(115deg, rgba(6,14,24,0.95) 20%, rgba(6,14,24,0.78) 45%, rgba(6,14,24,0.65) 65%, rgba(6,14,24,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  max-width: 760px;
}

.hero .eyebrow,
.hero h1,
.hero-text,
.hero-badges li {
  color: var(--white);
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  margin-bottom: 20px;
}

.hero h1 span {
  color: #d9eaff;
}

.hero-text {
  max-width: 680px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(7,18,31,0.42);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 40px rgba(0,0,0,0.20);
  backdrop-filter: blur(10px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--white);
  box-shadow: 0 18px 35px rgba(242, 101, 34, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 16px 30px rgba(255,255,255,0.14);
}

.large {
  min-height: 58px;
  padding: 0 26px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
}

.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -52px;
}

.stats-grid {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-grid article {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(47,111,188,0.07), rgba(242,101,34,0.03));
  border: 1px solid rgba(47,111,188,0.08);
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.stats-grid span {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.about-side-card,
.clients-collage-box,
.featured-media,
.portfolio-card,
.service-card,
.cta-box,
.info-card,
.process-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-side-card {
  padding: 16px;
}

.about-side-card img,
.clients-collage-box img,
.featured-media img,
.service-media img,
.portfolio-card img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
}

.info-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--border);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.info-card p,
.info-card li {
  color: var(--text-soft);
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.accent-blue {
  background: linear-gradient(180deg, rgba(47,111,188,0.1), rgba(47,111,188,0.03));
}

.accent-orange {
  background: linear-gradient(180deg, rgba(242,101,34,0.12), rgba(242,101,34,0.03));
}

.accent-dark {
  background: linear-gradient(180deg, rgba(7,18,31,0.04), rgba(7,18,31,0.02));
}

.clients-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
}

.clients-marquee {
  overflow: hidden;
  padding: 12px 0 20px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.clients-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.logo-card {
  width: 170px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 10px 24px rgba(16, 41, 76, 0.08);
  border: 1px solid rgba(17,32,53,0.06);
}

.logo-card img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

.clients-collage-box {
  margin-top: 30px;
  padding: 16px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-media {
  position: relative;
  overflow: hidden;
}

.service-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-media img,
.portfolio-card:hover img,
.featured-media:hover img {
  transform: scale(1.04);
}

.service-copy {
  padding: 26px;
}

.service-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  font-size: 0.8rem;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(47,111,188,0.09);
  font-weight: 700;
}

.service-copy h3,
.portfolio-copy h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.service-copy p,
.portfolio-copy p,
.process-card p,
.feature-list li {
  color: var(--text-soft);
}

.featured-work-section {
  background: #ffffff;
}

.featured-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.feature-list {
  margin: 20px 0 30px;
  padding-left: 18px;
}

.featured-media {
  padding: 16px;
  overflow: hidden;
}

.featured-media img {
  transition: transform 0.4s ease;
}

.portfolio-section {
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--border);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-copy {
  padding: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: left;
}

.process-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(20,55,101,1) 0%, rgba(10,24,44,1) 45%, rgba(242,101,34,0.9) 120%);
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: auto -120px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cta-copy,
.cta-copy p,
.cta-copy h2 {
  color: var(--white);
}

.cta-copy p {
  color: rgba(255,255,255,0.82);
}

.site-footer {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.footer-bg {
  background-image: url('../img/footer-dragon.jpg');
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  background: linear-gradient(180deg, rgba(7,18,31,0.92), rgba(7,18,31,0.98));
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 30px;
  padding: 84px 0 28px;
}

.footer-brand img {
  width: 220px;
  border-radius: 18px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-col p,
.footer-col li,
.footer-col a,
.footer-bottom p {
  color: rgba(255,255,255,0.78);
}

.footer-col h3 {
  margin-top: 0;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 0 0 36px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
  font-weight: 800;
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-icon svg {
  width: 22px;
  height: 22px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .stats-grid,
  .portfolio-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .featured-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(7,18,31,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-content {
    padding: 72px 0;
    text-align: center;
  }

  .hero-text,
  .section-heading,
  .cta-copy,
  .featured-copy,
  .about-section .section-heading.compact {
    text-align: center;
  }

  .hero-cta-group {
    width: 100%;
    align-items: center;
    padding: 18px 16px;
  }

  .services-grid,
  .info-cards,
  .portfolio-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges {
    justify-content: center;
  }

  .btn,
  .large {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .stats-bar {
    margin-top: -34px;
  }

  .cta-box {
    padding: 30px 24px;
  }

  .whatsapp-float span:last-child {
    display: none;
  }
}
