:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-alt: #08111f;
  --surface: rgba(10, 19, 32, 0.78);
  --surface-strong: #0d1b2d;
  --border: rgba(166, 205, 255, 0.16);
  --border-strong: rgba(62, 232, 255, 0.34);
  --text: #f6f8fb;
  --muted: #aab8c8;
  --muted-strong: #d2dcea;
  --cyan: #3ee8ff;
  --gold: #f4c66a;
  --green: #45d49f;
  --coral: #ff7e68;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --header-height: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #05070d, #07101c 48%, #05070d);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

section {
  scroll-margin-top: 88px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cyan);
  color: #00121a;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(62, 232, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(62, 232, 255, 0.22), rgba(244, 198, 106, 0.18));
  box-shadow: 0 16px 40px rgba(62, 232, 255, 0.12);
  color: #ffffff;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 16px auto 16px;
  display: none;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #070d18;
  box-shadow: var(--shadow);
}

body.nav-open .site-nav {
  display: grid;
}

.site-nav a {
  padding: 14px 12px;
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(62, 232, 255, 0.08);
  color: var(--text);
}

.language-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 12px 8px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  direction: ltr;
}

.language-switcher button {
  min-width: 38px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  border-color: rgba(62, 232, 255, 0.48);
  background: rgba(62, 232, 255, 0.14);
  color: var(--text);
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 7, 13, 0.98) 0%, rgba(5, 7, 13, 0.9) 42%, rgba(5, 7, 13, 0.6) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0), rgba(5, 7, 13, 0.96)),
    url("assets/hero-zeemedia.png");
  background-position: center, center, center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    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;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  padding: 46px 0 24px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.1rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--muted-strong);
  font-size: 1.1rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::after,
.section-link::after,
.header-cta::after {
  content: "→";
}

.btn-primary {
  border: 1px solid rgba(62, 232, 255, 0.5);
  background: linear-gradient(135deg, var(--cyan), #8ff6ff 46%, var(--gold));
  box-shadow: 0 16px 48px rgba(62, 232, 255, 0.2);
  color: #031018;
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  transform: translateY(-2px);
}

.cta-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-metrics {
  display: none;
  gap: 10px;
  margin: 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
}

.proof-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #06101c;
}

.proof-grid {
  display: grid;
  gap: 10px;
  padding: 18px 0;
}

.proof-grid p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 750;
}

.section {
  padding: 72px 0;
  background: var(--bg);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(10, 26, 43, 0.62), rgba(5, 7, 13, 0.92)),
    #07101c;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.section-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 820;
  transition: transform 180ms ease, color 180ms ease;
}

.service-grid,
.portfolio-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.process-step,
.pricing-card,
.portfolio-card,
.contact-form,
.map-frame {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 240px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.portfolio-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(62, 232, 255, 0.26);
  border-radius: 8px;
  background: rgba(62, 232, 255, 0.08);
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 850;
}

.service-card p,
.process-step p,
.pricing-card p,
.portfolio-content span {
  color: var(--muted);
}

.portfolio-grid {
  gap: 18px;
}

.portfolio-card {
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: transform 320ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.035);
}

.portfolio-content {
  padding: 22px;
}

.portfolio-content p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.split-layout {
  display: grid;
  gap: 28px;
}

.split-layout .section-heading {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-list span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 0 6px rgba(69, 212, 159, 0.08);
}

.feature-list p {
  margin: 0;
  color: var(--muted-strong);
  font-weight: 780;
}

.process-step {
  min-height: 230px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--green));
}

.process-step span,
.plan-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.pricing-card-featured {
  border-color: rgba(244, 198, 106, 0.5);
  background:
    linear-gradient(180deg, rgba(244, 198, 106, 0.08), rgba(62, 232, 255, 0.04)),
    var(--surface-strong);
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.pricing-card .btn {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  gap: 26px;
}

.contact-copy p:not(.eyebrow):not(.cta-note) {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-methods a {
  width: fit-content;
  color: var(--muted-strong);
  font-weight: 780;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  color: var(--cyan);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-strong);
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(1, 6, 13, 0.7);
  color: var(--text);
  outline: 0;
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(62, 232, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(62, 232, 255, 0.1);
}

.map-section {
  padding-top: 64px;
}

.map-frame {
  overflow: hidden;
  background: #07101c;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #04070d;
}

.footer-inner {
  display: grid;
  gap: 14px;
  padding: 30px 0;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(69, 212, 159, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, var(--green));
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.32);
  color: #04130a;
  font-weight: 950;
}

.reveal,
.hero .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .hero .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, 1160px);
  }

  .hero-metrics,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 860px) {
  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

  .section {
    padding: 96px 0;
  }

  .hero-inner {
    align-content: center;
    padding: 90px 0 54px;
  }

  .hero-metrics {
    display: grid;
    max-width: 850px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .section-heading .eyebrow,
  .section-heading p {
    grid-column: 1 / -1;
  }

  .section-heading .section-link {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    padding: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .language-switcher {
    margin-left: 6px;
    padding: 0;
    border-top: 0;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(244, 198, 106, 0.36);
    border-radius: 8px;
    background: rgba(244, 198, 106, 0.08);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 850;
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1160px) {
  h1 {
    font-size: 5.45rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-subtitle {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    padding-inline: 14px;
  }

  .hero-actions {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .hero {
  background-image:
    linear-gradient(270deg, rgba(5, 7, 13, 0.98) 0%, rgba(5, 7, 13, 0.9) 42%, rgba(5, 7, 13, 0.6) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0), rgba(5, 7, 13, 0.96)),
    url("assets/hero-zeemedia.png");
}

html[dir="rtl"] .site-nav {
  text-align: right;
}

html[dir="rtl"] .btn::after,
html[dir="rtl"] .section-link::after,
html[dir="rtl"] .header-cta::after {
  content: "←";
}

html[dir="rtl"] .pricing-card li {
  padding-left: 0;
  padding-right: 24px;
}

html[dir="rtl"] .pricing-card li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .contact-methods a,
html[dir="rtl"] .section-link {
  margin-left: auto;
}
