:root {
  --bg: #07131a;
  --bg-2: #0b1d26;
  --card: rgba(255,255,255,0.05);
  --stroke: rgba(255,255,255,0.09);
  --text: #edf5fa;
  --muted: #99adba;
  --primary: #66d0e2;
  --primary-2: #39b0c7;
  --accent: #97ecf7;
  --shadow: 0 20px 60px rgba(0,0,0,0.25);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(102,208,226,0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(57,176,199,0.08), transparent 24%),
    linear-gradient(180deg, #07131a 0%, #081922 45%, #08141b 100%);
  color: var(--text);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 120px 0;
}

.page-main {
  padding-top: 84px;
}

.page-hero {
  padding: 140px 0 70px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.page-text,
p {
  color: var(--muted);
  max-width: 800px;
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.section-head {
  max-width: 860px;
  margin-bottom: 52px;
}

.section-head-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head-centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.03;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-head p {
  font-size: 1.04rem;
  max-width: 760px;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.24s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #072029;
  box-shadow: 0 8px 20px rgba(102,208,226,0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(102,208,226,0.16);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(7,19,26,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.header.scrolled {
  background: rgba(7,19,26,0.84);
}

.header-ultra {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(3, 18, 25, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-ultra-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.header-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-logo span {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: #9fb3c0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.25s;
}

.header-nav a:hover {
  color: #fff;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #00e0ff;
  transition: 0.25s;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-main,
.btn-whatsapp {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-main {
  background: linear-gradient(135deg, #00e0ff, #0099ff);
  color: #001018;
}

.btn-whatsapp {
  background: rgba(0,255,140,0.12);
  border: 1px solid rgba(0,255,140,0.28);
  color: #00ff90;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* TABLET */
@media (max-width: 1100px) {
  .header-nav {
    gap: 18px;
  }

  .btn-main,
  .btn-whatsapp {
    padding: 0 14px;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .header-ultra-inner {
    min-height: 74px;
    gap: 10px;
  }

  .header-logo img {
    width: 34px;
    height: 34px;
  }

  .header-logo span {
    font-size: 0.95rem;
    max-width: 110px;
  }

  .header-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    background: #041720;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
  }

  .header-nav.active {
    display: flex;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-whatsapp {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .btn-main {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .menu-toggle {
    display: flex;
  }
}

/* SMALL MOBILE */
@media (max-width: 560px) {
  .header-logo span {
    max-width: 78px;
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .btn-whatsapp {
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .btn-main {
    padding: 0 10px;
    font-size: 0.82rem;
  }
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  max-width: 880px;
  text-wrap: balance;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 760px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}

.metric-card strong {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 6px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.floating-card {
  width: 100%;
  max-width: 430px;
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.panel-top {
  margin-bottom: 24px;
}

.panel-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-main h2 {
  font-size: 1.75rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.panel-main p {
  margin-bottom: 22px;
  max-width: 100%;
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}

.panel-item span {
  color: var(--accent);
  font-weight: 800;
}

.brand-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}

.brand-strip-inner {
  min-height: 76px;
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(237,245,250,0.76);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.ultra-services {
  position: relative;
  overflow: hidden;
}

.ultra-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.ultra-card {
  grid-column: span 4;
  min-height: 320px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  transition: transform 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
}

.ultra-card:hover {
  transform: translateY(-6px);
  border-color: rgba(151,236,247,0.20);
}

.ultra-card-large {
  grid-column: span 6;
  min-height: 360px;
}

.ultra-card-wide {
  grid-column: span 6;
}

.ultra-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.ultra-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(102,208,226,0.10);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
}

.ultra-card h3 {
  font-size: 1.62rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 440px;
  text-wrap: balance;
}

.ultra-card p {
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 460px;
}

.ultra-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.ultra-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.96rem;
}

.ultra-list li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  top: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.card-bottom {
  margin-top: auto;
  padding-top: 14px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  transition: 0.2s ease;
}

.service-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.about-copy p,
.stack-card p {
  max-width: 760px;
}

.about-stack {
  display: grid;
  gap: 16px;
}

.stack-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.stack-card h3 {
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.faq-question span {
  color: var(--accent);
  font-size: 1.7rem;
  line-height: 1;
  min-width: 30px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  max-width: 900px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.contact-box {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.contact-copy p {
  max-width: 540px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(151,236,247,0.10);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.contact-only-cta {
  align-items: center;
}

.contact-submit {
  width: auto;
  min-width: 220px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 11000;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #062816;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.footer {
  padding: 42px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.back-top {
  width: auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 9998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .ultra-card,
  .ultra-card-large,
  .ultra-card-wide {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(7,19,26,0.98);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    z-index: 10000;
    opacity: 0;
  }

  .nav.open {
    right: 0;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-list a {
    font-size: 24px;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .floating-card {
    max-width: 100%;
  }

  .section {
    padding: 90px 0;
  }

  .section-head h2,
  .contact-copy h2,
  .page-hero h1 {
    font-size: 2rem;
  }

  .ultra-grid {
    grid-template-columns: 1fr;
  }

  .ultra-card,
  .ultra-card-large,
  .ultra-card-wide {
    grid-column: span 1;
    min-height: auto;
  }

  .ultra-card h3 {
    font-size: 1.35rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-submit-wrap {
    justify-content: stretch;
  }

  .contact-submit {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .logo {
    height: 62px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
/* ===== PORTFOLIO PAGE ===== */

.portfolio-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(125,226,252,0.10), transparent 24%),
    linear-gradient(180deg, #07131a 0%, #0b1520 100%);
}

.portfolio-hero {
  padding: 150px 0 90px;
}

.portfolio-hero-inner {
  max-width: 980px;
}

.portfolio-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  max-width: 950px;
  text-wrap: balance;
}

.portfolio-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 34px;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
}

.portfolio-stat-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.portfolio-stat-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 6px;
}

.portfolio-stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.portfolio-featured-grid {
  display: grid;
  gap: 26px;
}

.portfolio-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.20);
}

.portfolio-featured-media {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f8fb, #dfe7ef);
  padding: 18px;
}

.portfolio-featured-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.portfolio-featured-content h3 {
  font-size: 2rem;
  line-height: 1.02;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(102,208,226,0.10);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.portfolio-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.88rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  border-color: rgba(151,236,247,0.20);
}

.portfolio-card-image {
  background: linear-gradient(180deg, #f6f8fb, #e4ebf2);
  padding: 18px;
}

.portfolio-card-image img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border-radius: 14px;
}

.portfolio-card-body {
  padding: 22px;
}

.portfolio-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.portfolio-sector-grid,
.portfolio-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sector-card,
.pillar-card,
.portfolio-cta-box {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.sector-card h3,
.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.portfolio-cta-box {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.portfolio-cta-box p {
  margin: 0 auto 24px;
}

/* FILTERS */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.1);
}

.filter-btn.active {
  background: linear-gradient(135deg, #66d0e2, #97ecf7);
  color: #07131a;
}

/* REVEAL */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ZOOM */
.portfolio-zoom {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: zoom-in;
}

/* VIEW BUTTON */
.view-btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.92rem;
  color: #66d0e2;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.view-btn:hover {
  opacity: 0.7;
}

/* LIGHTBOX */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 15, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 12000;
}

.portfolio-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.portfolio-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.4);
  background: white;
}

.portfolio-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .portfolio-featured-card {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .portfolio-sector-grid,
  .portfolio-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .portfolio-hero {
    padding: 140px 0 70px;
  }

  .portfolio-hero h1 {
    font-size: 2.5rem;
  }

  .portfolio-grid,
  .portfolio-sector-grid,
  .portfolio-pillars {
    grid-template-columns: 1fr;
  }

  .portfolio-featured-card,
  .portfolio-card,
  .sector-card,
  .pillar-card {
    border-radius: 20px;
  }

  .portfolio-featured-media,
  .portfolio-card-image {
    padding: 14px;
  }

  .portfolio-hero-actions {
    flex-direction: column;
  }

  .portfolio-lightbox {
    padding: 18px;
  }

  .portfolio-lightbox img {
    max-width: 95vw;
    max-height: 80vh;
  }
}
html {
  scroll-behavior: smooth;
}
.portfolio-pro {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.portfolio-card {
  background: #0f1a22;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
}

.portfolio-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* backgrounds */
.p1 { background: linear-gradient(45deg, #00d4ff, #003344); }
.p2 { background: linear-gradient(45deg, #ff5f6d, #ffc371); }
.p3 { background: linear-gradient(45deg, #7f00ff, #e100ff); }
.p4 { background: linear-gradient(45deg, #00c9ff, #92fe9d); }
.p5 { background: linear-gradient(45deg, #f7971e, #ffd200); }
.p6 { background: linear-gradient(45deg, #00f260, #0575e6); }

.portfolio-content {
  padding: 20px;
}

.tag {
  font-size: 12px;
  color: #00d4ff;
}

.portfolio-content h3 {
  margin: 10px 0;
}

.portfolio-content p {
  color: #aaa;
}

/* MOBILE */
@media(max-width: 900px){
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-ultra {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.card img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

.overlay h3 {
  margin: 0;
}

.overlay p {
  font-size: 14px;
  color: #ccc;
}

.overlay a {
  margin-top: 10px;
  display: inline-block;
  background: #00d4ff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.card:hover img {
  transform: scale(1.1);
}

.card:hover .overlay {
  opacity: 1;
}

@media(max-width:900px){
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-ultra-info {
  padding: 40px 0 100px;
}

.portfolio-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.portfolio-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(153,236,247,0.24);
}

.portfolio-media {
  background: #d9d9d9;
  padding: 20px;
}

.portfolio-media img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
}

.portfolio-body {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.portfolio-body h3 {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.portfolio-body p {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .portfolio-info-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-media img {
    height: 240px;
  }
}
.footer {
  padding: 80px 0 30px;
  background: #021c26;
  color: #c9d6df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer p {
  line-height: 1.7;
  color: #9fb3c0;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #9fb3c0;
  text-decoration: none;
  transition: 0.2s;
}

.footer ul li a:hover {
  color: #00e0ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  color: #7f98a8;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}.footer-ultra {
  position: relative;
  padding: 90px 0 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(99,210,228,0.10), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(45,168,190,0.10), transparent 24%),
    linear-gradient(180deg, #041720 0%, #03131b 100%);
  color: #d7e4ec;
  overflow: hidden;
}

.footer-ultra::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.18;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.footer-brand span {
  font-size: 0.9rem;
  color: #90a9b6;
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.8;
  color: #9fb3c0;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eaf7fb;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(153,236,247,0.35);
  background: rgba(99,210,228,0.12);
}

.footer-links-col h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9fb3c0;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #99ecf7;
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.footer-contact-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #99ecf7;
  margin-bottom: 8px;
}

.footer-contact-card a,
.footer-contact-card p {
  margin: 0;
  color: #e7f3f8;
  text-decoration: none;
  line-height: 1.6;
}

.footer-contact-card a:hover {
  color: #99ecf7;
}

.footer-bottom-ultra {
  margin-top: 22px;
  padding: 22px 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-ultra p {
  margin: 0;
  color: #7f98a8;
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #eaf7fb;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.footer-bottom-links a:hover {
  background: rgba(99,210,228,0.12);
  border-color: rgba(153,236,247,0.32);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .footer-bottom-ultra {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    width: 100%;
  }

  .footer-bottom-links a {
    flex: 1 1 auto;
  }
}
.header-ultra {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(3, 18, 25, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-ultra-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  width: 42px;
  height: 42px;
}

.header-logo span {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

/* NAV */
.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  color: #9fb3c0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.header-nav a:hover {
  color: #fff;
}

/* underline animation */
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #00e0ff;
  transition: 0.3s;
}

.header-nav a:hover::after {
  width: 100%;
}

/* BUTTONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-main {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00e0ff, #0099ff);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0,255,140,0.15);
  border: 1px solid rgba(0,255,140,0.3);
  color: #00ff90;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: white;
}

/* Responsive */
@media (max-width: 900px) {
  .header-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #021c26;
    padding: 20px;
    border-radius: 16px;
    flex-direction: column;
    display: none;
  }

  .header-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
/* ESPACE ENTRE SECTIONS */
.section-space {
  padding: 100px 0;
}

/* GRID 3 COLONNES */
.ultra-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* MOBILE */
@media(max-width:900px){
  .ultra-grid-3 {
    grid-template-columns: 1fr;
  }
}
.city-section,
.city-portfolio-section,
.city-contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.city-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.city-cards-3 .city-card {
  grid-column: auto !important;
  min-height: 320px;
}

.city-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.city-portfolio-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.city-portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(153,236,247,0.24);
}

.city-portfolio-card img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  background: #d9d9d9;
  padding: 18px;
}

.city-portfolio-card div {
  padding: 22px;
}

.city-portfolio-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.city-portfolio-card h3 {
  font-size: 1.35rem;
  margin: 0;
}

.city-portfolio-action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #041b10;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37,211,102,0.28);
}

@media (max-width: 1000px) {
  .city-cards-3,
  .city-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .city-cards-3 .city-card {
    min-height: auto;
  }

  .city-portfolio-card img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .city-section,
  .city-portfolio-section,
  .city-contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .city-portfolio-card img {
    height: 220px;
  }
}
.space {
  padding: 90px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.08);
}

.city-card {
  background: #021c26;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.dark {
  background: #021c26;
}

@media(max-width:900px){
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}.city-ultra-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #021c26, #03131b);
}

.city-ultra-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 40px;
}

.city-ultra-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.city-ultra-card:hover {
  transform: translateY(-5px);
  border-color: #00e0ff;
}

.city-number {
  display: inline-block;
  margin-bottom: 15px;
  color: #00e0ff;
  font-weight: bold;
}

@media(max-width:900px){
  .city-ultra-grid {
    grid-template-columns: 1fr;
  }
}
.ads-hero {
  padding: 170px 0 110px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 55, 55, 0.18), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(99,210,228,0.10), transparent 26%),
    linear-gradient(180deg, #06131a 0%, #071922 100%);
}

.ads-hero h1 {
  max-width: 950px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.ads-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.danger-eyebrow {
  color: #ff5b5b;
}

.danger-eyebrow::before {
  background: #ff5b5b;
}

.btn-danger {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3b3b, #ff9f43);
  color: #160707;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(255, 75, 75, 0.28);
  transition: 0.25s ease;
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(255, 75, 75, 0.38);
}

.ads-problems {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,75,75,0.10), transparent 28%),
    rgba(255,255,255,0.01);
}

.ads-danger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ads-danger-card {
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 70, 70, 0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 80, 80, 0.20);
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
  transition: 0.25s ease;
}

.ads-danger-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 91, 91, 0.45);
}

.danger-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 75, 75, 0.15);
  color: #ff5b5b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.ads-danger-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.ads-danger-card p {
  color: var(--muted);
  line-height: 1.7;
}

.ads-dashboard-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(99,210,228,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.02));
}

.ads-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ads-dashboard-card {
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dashboard-top span {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-top strong {
  color: var(--accent);
  font-size: 1.8rem;
}

.dashboard-chart {
  height: 150px;
  border-radius: 20px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(99,210,228,0.12), rgba(255,255,255,0.03)),
    repeating-linear-gradient(to right, rgba(255,255,255,0.06) 0 1px, transparent 1px 35px),
    repeating-linear-gradient(to top, rgba(255,255,255,0.05) 0 1px, transparent 1px 35px);
  position: relative;
  overflow: hidden;
}

.dashboard-chart::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 35px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5b5b, #ff9f43, #99ecf7);
  transform-origin: left;
}

.chart-up::after {
  transform: rotate(-12deg);
}

.chart-down::after {
  transform: rotate(10deg);
}

.chart-up-alt::after {
  transform: rotate(-8deg);
}

.ads-dashboard-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .ads-danger-grid,
  .ads-dashboard-grid,
  .city-cards-3 {
    grid-template-columns: 1fr;
  }

  .ads-hero {
    padding: 135px 0 85px;
  }
}

@media (max-width: 560px) {
  .btn-danger {
    width: 100%;
    text-align: center;
    min-height: 62px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .ads-hero h1 {
    font-size: 2.55rem;
  }
}
/* ===== SEO PAGE ULTRA ===== */

.page-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #021a2b, #063b5b);
  color: white;
  position: relative;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  max-width: 700px;
}

.page-text {
  margin-top: 20px;
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
}

.btn-main {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #00c2ff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
}

/* GRID */
.ultra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ultra-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ultra-badge {
  background: #00c2ff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
}

/* PROOF */
.proof-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

/* MÉTHODO */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg,#021a2b,#0a4b6d);
  padding: 40px;
  border-radius: 16px;
  color: white;
}

/* MOBILE */
@media(max-width:768px){
  .ultra-grid{grid-template-columns:1fr;}
  .method-grid{grid-template-columns:1fr;}
  .page-hero h1{font-size:32px;}
}
/* ===== SEO PAGE ULTRA ===== */

.page-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #021a2b, #063b5b);
  color: white;
  position: relative;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  max-width: 700px;
}

.page-text {
  margin-top: 20px;
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
}

.btn-main {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #00c2ff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
}

/* GRID */
.ultra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ultra-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ultra-badge {
  background: #00c2ff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
}

/* PROOF */
.proof-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

/* MÉTHODO */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg,#021a2b,#0a4b6d);
  padding: 40px;
  border-radius: 16px;
  color: white;
}

/* MOBILE */
@media(max-width:768px){
  .ultra-grid{grid-template-columns:1fr;}
  .method-grid{grid-template-columns:1fr;}
  .page-hero h1{font-size:32px;}
}
.seo-page {
  background: #f7fbff;
  color: #07131f;
}

.seo-hero {
  min-height: 620px;
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(90deg, rgba(0,10,25,0.85), rgba(0,24,54,0.7)),
    url("../images/hero-seo.png");

  background-size: cover;
  background-position: center right;
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.seo-label {
  display: inline-block;
  color: #1f8bff;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.seo-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 820px;
}

.seo-hero h1 span {
  color: #2f8cff;
  display: block;
}

.seo-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
  line-height: 1.7;
}

.seo-cta {
  display: inline-flex;
  margin-top: 26px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7a1a, #ff9d2e);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(255,122,26,0.25);
}

.seo-hero-visual {
  min-height: 360px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
}

.seo-arrow {
  position: absolute;
  top: 40px;
  left: 70px;
  font-size: 12rem;
  line-height: 1;
  color: #258cff;
  transform: rotate(-8deg);
  text-shadow: 0 0 40px rgba(37,140,255,0.55);
}

.seo-city-card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.seo-city-card span {
  display: block;
  color: #ffb066;
  margin-bottom: 8px;
}

.seo-city-card strong {
  color: white;
  font-size: 1.4rem;
}

.seo-pillars {
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.seo-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.seo-pillar-card {
  background: #fff;
  border: 1px solid #e9eef5;
  box-shadow: 0 18px 50px rgba(10,35,70,0.08);
  border-radius: 18px;
  padding: 30px;
}

.seo-pillar-card span {
  background: #1267ff;
  color: white;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 8px;
}

.seo-pillar-card h3 {
  margin-top: 20px;
  font-size: 1.35rem;
}

.seo-pillar-card p {
  color: #334155;
  line-height: 1.65;
  margin-top: 10px;
}

.seo-proof {
  padding: 80px 0;
}

.seo-proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.seo-proof h2,
.seo-method h2,
.seo-final-box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.seo-proof p {
  color: #334155;
  line-height: 1.7;
}

.seo-proof strong {
  display: block;
  color: #009b7a;
  margin-top: 8px;
}

.seo-chart {
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,35,70,0.10);
}

.chart-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e9eef5;
}

.chart-top div {
  padding: 18px;
  border-right: 1px solid #e9eef5;
}

.chart-top strong {
  display: block;
  font-size: 1.55rem;
  color: #1d4ed8;
}

.chart-top span {
  font-size: 0.82rem;
  color: #64748b;
}

.chart-lines {
  height: 230px;
  position: relative;
  background:
    linear-gradient(#eef2f7 1px, transparent 1px);
  background-size: 100% 46px;
}

.chart-lines span {
  position: absolute;
  left: 30px;
  right: 30px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f8cff, #6d28d9);
  transform-origin: left center;
}

.chart-lines span:nth-child(1) {
  bottom: 65px;
  transform: rotate(-8deg);
}

.chart-lines span:nth-child(2) {
  bottom: 105px;
  transform: rotate(-13deg);
  opacity: 0.75;
}

.chart-lines span:nth-child(3) {
  bottom: 145px;
  transform: rotate(-18deg);
  opacity: 0.55;
}

.seo-method {
  padding: 70px 0;
  background: #fff;
  text-align: center;
}

.center {
  text-align: center;
}

.seo-method-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}

.seo-method-grid article {
  padding: 24px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e9eef5;
}

.seo-method-grid h3 {
  margin-bottom: 10px;
}

.seo-method-grid p {
  color: #475569;
  line-height: 1.65;
}

.seo-final-cta {
  padding: 70px 0;
  background: #f7fbff;
}

.seo-final-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #001324, #001f3d);
  color: white;
  box-shadow: 0 22px 70px rgba(0,20,50,0.20);
}

.seo-final-box p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.seo-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.seo-form input,
.seo-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: 8px;
  padding: 14px;
  outline: none;
}

.seo-form textarea {
  grid-column: span 2;
  min-height: 54px;
  resize: none;
}

.seo-form button {
  border: none;
  border-radius: 8px;
  background: #1267ff;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .seo-hero-grid,
  .seo-proof-grid,
  .seo-final-box {
    grid-template-columns: 1fr;
  }

  .seo-pillars-grid,
  .seo-method-grid {
    grid-template-columns: 1fr;
  }

  .chart-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-form {
    grid-template-columns: 1fr;
  }

  .seo-form textarea {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .seo-hero {
    padding: 100px 0 70px;
  }

  .seo-hero h1 {
    font-size: 2.5rem;
  }

  .seo-hero-visual {
    min-height: 260px;
  }

  .seo-arrow {
    font-size: 7rem;
  }
}
.seo-hero {
  background:
    linear-gradient(90deg, rgba(0,10,25,0.88), rgba(0,24,54,0.55)),
    url("../images/hero-seo.png") !important;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}
.ads-hero {
  padding: 120px 0;
  background: linear-gradient(135deg,#021a2b,#063b5b);
  color: white;
}

.ads-hero h1 {
  font-size: 48px;
  font-weight: 800;
}

.ads-hero h1 span {
  color: #ff7a1a;
}

.ads-cta {
  margin-top: 25px;
  display: inline-block;
  padding: 14px 26px;
  background: #ff7a1a;
  color: white;
  border-radius: 8px;
  font-weight: 700;
}

.ads-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  color: black;
}
.ads-profit-page {
  background: #06131a;
  color: var(--text);
}

.ads-profit-hero {
  min-height: 720px;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 78% 35%, rgba(255,122,26,0.22), transparent 28%),
    linear-gradient(90deg, rgba(0,10,25,0.94), rgba(0,24,54,0.72));
  overflow: hidden;
}

.ads-profit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.ads-label {
  display: inline-block;
  color: #63d2e4;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ads-profit-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 930px;
  margin-bottom: 24px;
}

.ads-profit-hero p {
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 720px;
}

.ads-profit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 30px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #63d2e4, #2da8be);
  color: #03131b;
  color: #07131f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(255,122,26,0.32);
}

.ads-performance-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.35);
}

.ads-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.ads-card-top span {
  color: rgba(255,255,255,0.75);
}

.ads-card-top strong {
  color: #63d2e4;
  font-size: 2.1rem;
}

.ads-chart {
  height: 260px;
  position: relative;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100% 52px, 70px 100%;
  overflow: hidden;
}

.ads-chart-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 48px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #63d2e4, #2da8be, #99ecf7);
  color: #03131b;
  transform: rotate(-25deg);
  transform-origin: left center;
  box-shadow: 0 0 30px rgba(255,191,0,0.65);
}

.ads-chart-dot {
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 50%;
  background: #63d2e4;
  box-shadow: 0 0 22px rgba(255,191,0,0.9);
}

.dot-a { left: 30px; bottom: 45px; }
.dot-b { left: 48%; bottom: 140px; }
.dot-c { right: 30px; top: 42px; }

.ads-performance-card p {
  color: rgba(255,255,255,0.72);
  margin-top: 22px;
  line-height: 1.6;
}

.ads-problem-section {
  background: #071922;
}

.ads-proof-section {
  background: #06131a;
}

.ads-proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.ads-proof-grid h2,
.ads-solution-section h2,
.ads-audit-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.ads-proof-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.ads-mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dashboard-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.dashboard-item span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.dashboard-item strong {
  color:;
  font-size: 2rem;
}

.ads-solution-section {
  background: #071922;
}

.ads-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ads-benefit-card {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.ads-benefit-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,191,0,0.14);
  color: #2da8be;
  font-weight: 900;
  margin-bottom: 20px;
}

.ads-benefit-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.ads-benefit-card p {
  color: var(--muted);
  line-height: 1.75;
}

.ads-audit-box {
  border-color: rgba(255,191,0,0.18);
}

@media (max-width: 1000px) {
  .ads-profit-grid,
  .ads-proof-grid {
    grid-template-columns: 1fr;
  }

  .ads-mini-dashboard,
  .ads-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ads-profit-hero {
    padding: 115px 0 70px;
  }

  .ads-profit-hero h1 {
    font-size: 2.55rem;
  }

  .ads-performance-card {
    padding: 20px;
  }

  .ads-chart {
    height: 210px;
  }
}
/* FIX CARTES ACCUEIL / SERVICES */
.ultra-card,
.portfolio-info-card,
.stat-box,
.stack-card,
.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  color: var(--text) !important;
}

.ultra-card h3,
.portfolio-info-card h3,
.stat-box strong,
.stack-card h3 {
  color: var(--text) !important;
}

.ultra-card p,
.portfolio-info-card p,
.stat-box span,
.stack-card p {
  color: var(--muted) !important;
}

.ultra-card .btn,
.portfolio-info-card .btn,
.ultra-card a {
  color: #03131b !important;
}
/* MENU MOBILE */
.header-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #06131a;
  flex-direction: column;
  padding: 80px 20px;
  transition: 0.3s ease;
}

.header-nav.active {
  right: 0;
}
@media (max-width: 900px) {
  .header-nav {
    position: fixed !important;
    top: 84px !important;
    right: -100% !important;
    width: 80% !important;
    height: calc(100vh - 84px) !important;
    background: #06131a !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
    padding: 30px !important;
    transition: right 0.3s ease !important;
    z-index: 9999 !important;
  }

  .header-nav.active {
    right: 0 !important;
  }

  .btn-whatsapp {
    display: none !important;
  }

  .btn-main {
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 0.9rem !important;
  }

  .menu-toggle {
    display: flex !important;
  }
}
.header-ultra {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: #06131a !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.header-ultra-inner {
  min-height: 86px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.header-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
}

.header-logo img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
}

.header-logo span {
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 1.2rem !important;
}

.header-nav {
  display: flex !important;
  flex-direction: row !important;
  gap: 32px !important;
  align-items: center !important;
  position: static !important;
  background: transparent !important;
  opacity: 1 !important;
  max-height: none !important;
  pointer-events: auto !important;
}

.header-nav a {
  color: #eaf7fb !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.menu-toggle {
  display: none !important;
}

@media (max-width: 900px) {
  .header-ultra-inner {
    min-height: 76px !important;
  }

  .header-nav {
    position: fixed !important;
    top: 76px !important;
    left: 16px !important;
    right: 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px !important;
    background: #06131a !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 18px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    padding: 0 28px !important;
    transition: .3s ease !important;
  }

  .header-nav.active {
    max-height: 330px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 28px !important;
  }

  .menu-toggle {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    background: transparent !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .menu-toggle span {
    width: 22px !important;
    height: 2px !important;
    background: #fff !important;
  }
}
body {
  outline: 10px solid red !important;
}
.web-rabat-page {
  background: #06131a;
  color: var(--text);
}

.web-rabat-hero {
  min-height: 720px;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 80% 30%, rgba(99,210,228,0.16), transparent 30%),
    linear-gradient(90deg, rgba(0,10,25,0.96), rgba(0,24,54,0.78));
}

.web-rabat-grid,
.web-rabat-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.web-rabat-label {
  display: inline-block;
  color: #99ecf7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.web-rabat-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.web-rabat-hero p {
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 28px;
}

.web-rabat-visual {
  position: relative;
  min-height: 440px;
}

.device-mockup {
  position: absolute;
  border-radius: 26px;
  background: linear-gradient(180deg, #f7fbff, #dce8ef);
  padding: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.device-mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.desktop-mockup {
  width: 88%;
  height: 310px;
  top: 40px;
  right: 0;
}

.mobile-mockup {
  width: 190px;
  height: 330px;
  left: 0;
  bottom: 0;
}

.web-rabat-card-grid,
.web-rabat-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.web-rabat-card,
.web-rabat-timeline article,
.web-rabat-local-box {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.web-rabat-card span,
.web-rabat-timeline strong {
  display: inline-flex;
  min-width: 48px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(99,210,228,0.12);
  color: #99ecf7;
  font-weight: 900;
  margin-bottom: 20px;
}

.web-rabat-card h3,
.web-rabat-timeline h3,
.web-rabat-local-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.web-rabat-card p,
.web-rabat-timeline p,
.web-rabat-proof p,
.web-rabat-local-box p {
  color: var(--muted);
  line-height: 1.75;
}

.web-rabat-proof,
.web-rabat-process {
  background: #071922;
}

@media (max-width: 1000px) {
  .web-rabat-grid,
  .web-rabat-proof-grid,
  .web-rabat-card-grid,
  .web-rabat-timeline {
    grid-template-columns: 1fr;
  }

  .web-rabat-visual {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .web-rabat-hero {
    padding: 115px 0 70px;
  }

  .web-rabat-hero h1 {
    font-size: 2.5rem;
  }

  .desktop-mockup {
    width: 100%;
    height: 250px;
  }

  .mobile-mockup {
    width: 145px;
    height: 260px;
  }
}
/* FIX HEADER PAGE RABAT DESKTOP */
.web-rabat-page {
  margin-top: 0 !important;
}

.web-rabat-page + .footer,
.header-ultra {
  margin-top: 0 !important;
}

@media (min-width: 901px) {
  body:has(.web-rabat-page) .header-ultra {
    position: sticky !important;
    top: 0 !important;
    height: 86px !important;
    min-height: 86px !important;
    display: flex !important;
    align-items: center !important;
  }

  body:has(.web-rabat-page) .header-ultra-inner {
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 20px !important;
  }

  body:has(.web-rabat-page) .web-rabat-hero {
    padding-top: 150px !important;
    min-height: 720px !important;
  }
}
/* FIX HEADER PAGE RABAT DESKTOP */
.web-rabat-page {
  margin-top: 0 !important;
}

.web-rabat-page + .footer,
.header-ultra {
  margin-top: 0 !important;
}

@media (min-width: 901px) {
  body:has(.web-rabat-page) .header-ultra {
    position: sticky !important;
    top: 0 !important;
    height: 86px !important;
    min-height: 86px !important;
    display: flex !important;
    align-items: center !important;
  }

  body:has(.web-rabat-page) .header-ultra-inner {
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 20px !important;
  }

  body:has(.web-rabat-page) .web-rabat-hero {
    padding-top: 150px !important;
    min-height: 720px !important;
  }
}
/* PAGE CREATION SITE WEB MARRAKECH */
.web-marrakech-page {
  background: #06131a;
  color: var(--text);
}

.web-marrakech-hero {
  min-height: 720px;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 178, 70, 0.18), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(99,210,228,0.14), transparent 28%),
    linear-gradient(90deg, rgba(0,10,25,0.97), rgba(55,28,8,0.56));
}

.web-marrakech-grid,
.web-marrakech-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.web-marrakech-label {
  display: inline-block;
  color: #99ecf7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.web-marrakech-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.web-marrakech-hero p {
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  margin-bottom: 28px;
}

.web-marrakech-visual {
  position: relative;
  min-height: 460px;
}

.marrakech-sun-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  right: 40px;
  top: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,178,70,0.28), rgba(99,210,228,0.18));
  filter: blur(50px);
}

.marrakech-device {
  position: absolute;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff7ef, #e4edf2);
  padding: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
}

.marrakech-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.main-device {
  width: 88%;
  height: 310px;
  top: 45px;
  right: 0;
}

.floating-device {
  width: 190px;
  height: 330px;
  left: 0;
  bottom: 0;
}

.web-marrakech-card-grid,
.web-marrakech-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.web-marrakech-card,
.web-marrakech-timeline article,
.marrakech-business-box {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.web-marrakech-card span,
.web-marrakech-timeline strong {
  display: inline-flex;
  min-width: 48px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,178,70,0.13);
  color: #ffbd64;
  font-weight: 900;
  margin-bottom: 20px;
}

.web-marrakech-card h3,
.web-marrakech-timeline h3,
.marrakech-business-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.web-marrakech-card p,
.web-marrakech-timeline p,
.web-marrakech-proof p {
  color: var(--muted);
  line-height: 1.75;
}

.marrakech-business-box ul {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.marrakech-business-box li {
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.marrakech-business-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffbd64;
}

.web-marrakech-proof,
.web-marrakech-process {
  background: #071922;
}

@media (max-width: 1000px) {
  .web-marrakech-grid,
  .web-marrakech-proof-grid,
  .web-marrakech-card-grid,
  .web-marrakech-timeline {
    grid-template-columns: 1fr;
  }

  .web-marrakech-visual {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .web-marrakech-hero {
    padding: 115px 0 70px;
  }

  .web-marrakech-hero h1 {
    font-size: 2.5rem;
  }

  .main-device {
    width: 100%;
    height: 250px;
  }

  .floating-device {
    width: 145px;
    height: 260px;
  }
}
/* FIX HEADER DESKTOP PAGES VILLES */
@media (min-width: 901px) {

  .header-ultra {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 86px !important;
    min-height: 86px !important;
    z-index: 9999;
  }

  .header-ultra-inner {
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 20px !important;
    display: flex;
    align-items: center;
  }

  .web-rabat-hero,
  .web-marrakech-hero,
  .page-hero,
  .web-hero {
    padding-top: 140px !important;
    margin-top: 0 !important;
  }

}
/* PAGE SOCIAL MEDIA MAROC */
.social-maroc-page {
  background: #06131a;
  color: var(--text);
}

.social-maroc-hero {
  min-height: 720px;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 80% 28%, rgba(255, 0, 153, 0.18), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(99,210,228,0.16), transparent 28%),
    linear-gradient(90deg, rgba(0,10,25,0.97), rgba(12,8,35,0.78));
}

.social-maroc-grid,
.social-maroc-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.social-maroc-label {
  display: inline-block;
  color: #99ecf7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.social-maroc-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.social-maroc-hero p {
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  margin-bottom: 28px;
}

.social-maroc-visual {
  position: relative;
  min-height: 470px;
}

.social-gradient-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  right: 50px;
  top: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,0,153,0.26), rgba(99,210,228,0.22));
  filter: blur(50px);
}

.social-phone {
  position: absolute;
  border-radius: 42px;
  background: #050b12;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  padding: 16px;
}

.social-phone-main {
  width: 285px;
  height: 550px;
  right: 120px;
  top: 0;
  transform: rotate(-5deg);
}

.social-phone-small {
  width: 210px;
  height: 360px;
  left: 20px;
  bottom: 0;
  transform: rotate(6deg);
}

.social-phone-screen {
  height: 100%;
  border-radius: 30px;
  padding: 20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,0,153,0.35), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(99,210,228,0.28), transparent 35%),
    #0b1520;
}

.social-phone-screen.small {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.social-app-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.social-app-top span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0099, #63d2e4);
}

.social-post-preview {
  height: 320px;
  border-radius: 26px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(255,0,153,0.78), rgba(99,210,228,0.75)),
    #07131a;
}

.social-post-preview small {
  color: #06131a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-post-preview h3 {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  margin-top: 10px;
}

.social-post-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social-post-stats span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.social-maroc-card-grid,
.social-maroc-local-grid,
.social-maroc-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.social-maroc-card,
.social-maroc-local-grid article,
.social-badge-card {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.social-maroc-card span {
  display: inline-flex;
  min-width: 48px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,0,153,0.13);
  color: #ff6acb;
  font-weight: 900;
  margin-bottom: 20px;
}

.social-maroc-card h3,
.social-maroc-local-grid h3,
.social-badge-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.social-maroc-card p,
.social-maroc-local-grid p,
.social-maroc-proof p,
.social-badge-card span {
  color: var(--muted);
  line-height: 1.75;
}

.social-maroc-proof,
.social-maroc-local {
  background: #071922;
}

@media (max-width: 1000px) {
  .social-maroc-grid,
  .social-maroc-proof-grid,
  .social-maroc-card-grid,
  .social-maroc-local-grid,
  .social-maroc-badges {
    grid-template-columns: 1fr;
  }

  .social-maroc-visual {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .social-maroc-hero {
    padding: 115px 0 70px;
  }

  .social-maroc-hero h1 {
    font-size: 2.5rem;
  }

  .social-phone-main {
    right: 20px;
    width: 245px;
    height: 500px;
  }

  .social-phone-small {
    width: 160px;
    height: 280px;
    left: 0;
  }
  
  /* ===== STRATEGIE CONSEIL FINAL FIX ===== */

.strategy-page {
  background: #06131a !important;
  color: #edf5fa !important;
}

.strategy-hero {
  min-height: 760px !important;
  padding: 170px 0 90px !important;
  background:
    radial-gradient(circle at 80% 30%, rgba(99,210,228,.14), transparent 32%),
    linear-gradient(135deg, #06131a 0%, #071922 100%) !important;
}

.strategy-grid,
.strategy-funnel-grid,
.strategy-audit-box {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: center !important;
}

.strategy-label {
  display: inline-block !important;
  color: #99ecf7 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
}

.strategy-hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem) !important;
  line-height: .95 !important;
  letter-spacing: -.06em !important;
  margin-bottom: 26px !important;
  max-width: 850px !important;
}

.strategy-hero p {
  color: #a9bfcc !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  max-width: 760px !important;
  margin-bottom: 28px !important;
}

.strategy-hero-actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.strategy-dashboard {
  padding: 30px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.32) !important;
}

.dashboard-chart {
  height: 260px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.04) !important;
  margin-bottom: 24px !important;
}

.dashboard-kpis {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

.dashboard-kpis article {
  padding: 20px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.05) !important;
}

.strategy-card-grid,
.strategy-expertise-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.strategy-card,
.strategy-expertise-grid article,
.strategy-calendar,
.funnel-step {
  padding: 30px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.22) !important;
}

.strategy-card span {
  display: inline-flex !important;
  width: 52px !important;
  height: 34px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(99,210,228,.12) !important;
  color: #99ecf7 !important;
  font-weight: 900 !important;
  margin-bottom: 20px !important;
}

.strategy-card h3,
.strategy-expertise-grid h3,
.funnel-step strong {
  display: block !important;
  font-size: 1.35rem !important;
  margin-bottom: 12px !important;
  color: #fff !important;
}

.strategy-card p,
.strategy-expertise-grid p,
.funnel-step span,
.calendar-placeholder p {
  color: #99adba !important;
  line-height: 1.75 !important;
}

.strategy-funnel-section,
.strategy-expertise,
.strategy-audit-offer {
  padding: 120px 0 !important;
}

.strategy-funnel-section,
.strategy-audit-offer {
  background: #071922 !important;
}

.strategy-funnel {
  display: grid !important;
  gap: 18px !important;
}

.funnel-arrow {
  width: 2px !important;
  height: 32px !important;
  background: #63d2e4 !important;
  margin-left: 24px !important;
}

.strategy-audit-box {
  padding: 40px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
}

@media (max-width: 1000px) {
  .strategy-grid,
  .strategy-funnel-grid,
  .strategy-audit-box,
  .strategy-card-grid,
  .strategy-expertise-grid,
  .dashboard-kpis {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .strategy-hero {
    padding: 120px 0 70px !important;
  }

  .strategy-hero h1 {
    font-size: 2.5rem !important;
  }
}
/* ===== FORCE SERVICE BUTTON STYLE ===== */

a.service-link,
.service-link,
.services-grid a,
.service-card a.btn-secondary,
.service-card a {

    background: linear-gradient(135deg, #63d2e4, #7be7f7) !important;
    color: #06131a !important;

    padding: 16px 30px !important;

    border-radius: 999px !important;

    font-weight: 800 !important;

    text-decoration: none !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    border: none !important;

    box-shadow: 0 15px 40px rgba(99,210,228,.25) !important;

    transition: all .3s ease !important;
}

a.service-link:hover,
.service-link:hover,
.services-grid a:hover,
.service-card a.btn-secondary:hover,
.service-card a:hover {

    transform: translateY(-3px) !important;

    box-shadow: 0 20px 55px rgba(99,210,228,.38) !important;
}
/* ===== FORCE SERVICE BUTTON STYLE ===== */

a.service-link,
.service-link,
.services-grid a,
.service-card a.btn-secondary,
.service-card a {

    background: linear-gradient(135deg, #63d2e4, #7be7f7) !important;
    color: #06131a !important;

    padding: 16px 30px !important;

    border-radius: 999px !important;

    font-weight: 800 !important;

    text-decoration: none !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    border: none !important;

    box-shadow: 0 15px 40px rgba(99,210,228,.25) !important;

    transition: all .3s ease !important;
}

a.service-link:hover,
.service-link:hover,
.services-grid a:hover,
.service-card a.btn-secondary:hover,
.service-card a:hover {

    transform: translateY(-3px) !important;

    box-shadow: 0 20px 55px rgba(99,210,228,.38) !important;
}
@media (min-width: 901px) {
  .service-card a,
  .service-card .service-link,
  .services-grid .service-card a,
  .services-list .service-card a {
    background: linear-gradient(135deg, #63d2e4, #7be7f7) !important;
    color: #06131a !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 16px 30px !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 15px 40px rgba(99,210,228,.25) !important;
  }
}