/* The Digital OGs — Shared Stylesheet */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #3aadb8;
  --teal-d: #2b8f99;
  --lime: #8cc364;
  --text: #1a3035;
  --muted: #5a8590;
  --bg: #f7fafb;
  --white: #fff;
  --border: rgba(58, 173, 184, 0.15);
  --grad: linear-gradient(135deg, #8cc364, #3aadb8);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.nav-logo {
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-d);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.page {
  padding-top: 74px;
}

section {
  padding: 5rem 5%;
}

.alt {
  background: var(--bg);
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-d);
  margin-bottom: 0.75rem;
}

.sec-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  flex-shrink: 0;
}

h2.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

h2.sec-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(58, 173, 184, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 173, 184, 0.4);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--teal-d);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
}

.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(58, 173, 184, 0.05);
}

.btn-white {
  background: #fff;
  color: var(--teal-d);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.marquee {
  background: #ebf8fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.85rem 0;
}

.mq-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: mscroll 25s linear infinite;
}

@keyframes mscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-d);
  white-space: nowrap;
}

.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(58, 173, 184, 0.12);
  border-color: rgba(58, 173, 184, 0.3);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.svc-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
}

.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.reel-card:hover img {
  transform: scale(1.06);
}

.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 2rem;
  color: #fff;
}

.reel-card:hover .reel-play {
  opacity: 1;
}

.reel-num {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  border-radius: 100px;
}

.sl-wrap {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}

.sl-wrap::before,
.sl-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.sl-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.sl-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.sl-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: mscroll 30s linear infinite;
}

.sl-track:hover {
  animation-play-state: paused;
}

.sl-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  height: 68px;
  border-right: 1px solid var(--border);
  min-width: 150px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(58, 173, 184, 0.12);
  border-color: rgba(58, 173, 184, 0.3);
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.brand-ind {
  font-size: 0.68rem;
  color: var(--teal-d);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(58, 173, 184, 0.12);
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 0.75rem 1rem;
  background: var(--white);
}

.card-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.card-info span {
  font-size: 0.72rem;
  color: var(--muted);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}

.cert-item:hover {
  border-color: rgba(58, 173, 184, 0.3);
  transform: translateX(4px);
}

.cert-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-item strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.cert-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(58, 173, 184, 0.1);
}

.stars {
  color: #8cc364;
  margin-bottom: 0.75rem;
}

.testi-text {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.rev-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(58, 173, 184, 0.1);
  border: 2px solid rgba(58, 173, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal-d);
  flex-shrink: 0;
}

.rev-name {
  font-size: 0.87rem;
  font-weight: 700;
}

.rev-role {
  font-size: 0.72rem;
  color: var(--muted);
}

.cta-band {
  background: var(--grad);
  text-align: center;
  padding: 5rem 5%;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

footer {
  background: #1a3035;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 5% 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.8);
}

.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 260px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 1.25rem;
}

.soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease-in-out;
}

.soc:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.soc img {
  width: 50%;
}

footer h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.55rem;
}

footer ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

footer ul li a:hover {
  color: #3aadb8;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.page-hero {
  padding: 5.5rem 5% 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
}

#lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

#lb.open {
  display: flex;
}

.lb-box {
  position: relative;
  width: min(360px, 88vw);
  aspect-ratio: 9/16;
}

.lb-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px;
}

.lb-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fade.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .grid-3,
  .grid-4,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  section {
    padding: 3.5rem 5%;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0.85rem 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* ═══ GLOBAL 1280px CONTAINER ═══ */
section {
  padding-left: max(40px, calc((100% - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1280px) / 2 + 40px));
}

footer {
  padding-left: max(40px, calc((100% - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1280px) / 2 + 40px));
}

.cta-band {
  padding-left: max(40px, calc((100% - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1280px) / 2 + 40px));
}

.hero {
  padding-left: max(40px, calc((100% - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1280px) / 2 + 40px));
}

.page-hero {
  padding-left: max(40px, calc((100% - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1280px) / 2 + 40px));
}

.brands-section {
  padding-left: max(40px, calc((100% - 1280px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1280px) / 2 + 40px));
}
