@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --background: hsl(220, 20%, 97%);
  --foreground: hsl(216, 50%, 10%);
  --card: #fff;
  --primary: hsl(212, 58%, 44%);
  --primary-fg: #fff;
  --secondary: hsl(212, 50%, 52%);
  --muted: hsl(240, 5%, 95%);
  --muted-fg: hsl(216, 15%, 45%);
  --accent: hsl(210, 60%, 60%);
  --border: hsl(220, 13%, 91%);
  --cf-navy: hsl(218, 72%, 10%);
  --cf-soft: hsl(300, 4%, 95%);
  --cf-accent: hsl(210, 60%, 60%);
  --cf-glass-bg: hsla(212, 58%, 44%, 0.12);
  --cf-glass-border: hsla(0, 0%, 100%, 0.18);
  --cf-glass-bg-dark: hsla(0, 0%, 100%, 0.06);
  --cf-shadow-glow: 0 0 30px hsla(212, 58%, 44%, 0.4);
  --cf-shadow-card: 0 8px 32px hsla(218, 72%, 10%, 0.08);
  --radius: 0.75rem;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT HELPERS ── */
.content-max { max-width: 1280px; margin: 0 auto; }
.section-padding { padding: 5rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 6rem 2rem; } }

/* ── GLASS CARDS ── */
.glass-card {
  background: var(--cf-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cf-glass-border);
  border-radius: 16px;
}
.glass-card-dark {
  background: var(--cf-glass-bg-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cf-glass-border);
  border-radius: 16px;
}

/* ── GRADIENTS ── */
.gradient-hero { background: linear-gradient(135deg, hsl(218,72%,10%), hsl(216,55%,25%), hsl(212,58%,44%)); }
.gradient-navy { background: linear-gradient(180deg, hsl(218,72%,10%), hsl(216,55%,18%)); }
.gradient-cta  { background: linear-gradient(135deg, hsl(212,58%,44%), hsl(212,50%,52%)); }

/* ── HOVER GLOW ── */
.hover-glow { transition: all 0.3s ease; }
.hover-glow:hover { box-shadow: var(--cf-shadow-glow); transform: translateY(-6px); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsl(218,72%,10%);
  border-bottom: 1px solid hsla(0,0%,100%,0.10);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-logo img { height: 108px; object-fit: contain; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0,0%,100%,0.70);
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: #fff; }
.navbar-links a.active { border-bottom: 2px solid var(--cf-accent); padding-bottom: 2px; }

/* BOTÃO NAVBAR CTA */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;

  background: linear-gradient(135deg, #4480c4, #2f6fb3);
  color: #fff;
  text-decoration: none;

  transition: all 0.3s ease;
}
/* HOVER 🔥 */
.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(68, 128, 196, 0.4);
  background: linear-gradient(135deg, #2f6fb3, #1e5fa3);
}

/* ANIMAÇÃO DA SETA */
.navbar-cta span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.navbar-cta:hover span {
  transform: translateX(4px);
}
.navbar-toggle {
  display: none;
}

.navbar-mobile {
  display: none;
  flex-direction: column;
  background: hsl(218,72%,10%);
  padding: 0.5rem 1.5rem 1.5rem;
  border-top: 1px solid hsla(0,0%,100%,0.10);
  gap: 1rem;
}
.navbar-mobile a {
  color: hsla(0,0%,100%,0.80);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-mobile a:hover { color: #fff; }
.navbar-mobile .navbar-cta {
  justify-content: center;
  margin-top: 0.5rem;
}
.navbar-mobile.open { display: flex; }

@media (max-width: 767px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fog-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(212,58%,44%,0.3), transparent);
  filter: blur(40px);
  pointer-events: none;
}
.fog-1 { width: 300px; height: 300px; top: 10%; left: 5%; animation: floatFog 8s ease-in-out infinite; }
.fog-2 { width: 400px; height: 400px; top: 40%; right: 0%; animation: floatFog2 10s ease-in-out infinite; }
.fog-3 { width: 250px; height: 250px; bottom: 10%; left: 40%; animation: floatFog3 12s ease-in-out infinite; }

@keyframes floatFog {
  0%,100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50%      { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
}
@keyframes floatFog2 {
  0%,100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50%      { transform: translateY(20px) translateX(-15px); opacity: 0.5; }
}
@keyframes floatFog3 {
  0%,100% { transform: translateY(10px) translateX(-10px); opacity: 0.25; }
  50%      { transform: translateY(-20px) translateX(25px); opacity: 0.55; }
}

.hero-circles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid hsla(212,58%,44%,0.10);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 1rem 2rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; padding: 5rem 2rem 2rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(212,58%,44%,0.10);
  color: hsl(212,58%,44%);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsla(212,58%,44%,0.20);
  margin-bottom: 1.5rem;
}
.hero-badge img { width: 16px; height: 16px; object-fit: contain; animation: floatSmall 2s ease-in-out infinite; }
@keyframes floatSmall {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: hsl(212,58%,44%);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero h1 span { color: #4581c2; }
.hero p {
  color: hsl(216,15%,45%);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  background: #4480c4;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 30px hsla(212,58%,44%,0.4); }
.btn-outline {
  border: 1px solid hsla(218,72%,10%,0.30);
  color: hsl(218,72%,10%);
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.btn-outline:hover { background: hsla(218,72%,10%,0.10); }
.btn-outline svg { width: 16px; height: 16px; animation: arrowBounce 1.5s ease-in-out infinite; }
@keyframes arrowBounce { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

.hero-card {
  display: none;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-card { display: flex; } }
.hero-card-inner {
  padding: 2rem;
  width: 18rem;
  text-align: center;
  border-radius: 1rem;
  background: hsla(212,58%,44%,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(212,58%,44%,0.15);
  box-shadow: 0 8px 40px -8px hsla(47,108,178,0.15);
}
.hero-cloud-icon {
  width: 64px; height: 64px;
  object-fit: contain;
  margin: 0 auto 1rem;
  animation: floatCloud 3s ease-in-out infinite;
}
@keyframes floatCloud {
  0%,100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-6px); opacity: 1; }
}
.hero-card-inner p:first-of-type { color: hsl(218,72%,10%); font-weight: 600; margin-bottom: 0.5rem; }
.hero-card-inner p:last-of-type { color: hsla(218,72%,10%,0.50); font-size: 0.875rem; font-weight: 300; }
.hero-dots { margin-top: 1.5rem; display: flex; justify-content: center; gap: 0.75rem; }
.hero-dots span { width: 12px; height: 12px; border-radius: 50%; background: hsla(212,58%,44%,0.25); }

/* ══════════════════════════════════════
   PLATFORMS SCROLL
══════════════════════════════════════ */
.platforms-section {
  background: var(--cf-soft);
  padding: 5rem 0;
  overflow: hidden;
}
.platforms-label {
  text-align: center;
  color: hsl(216,15%,45%);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
.logos-track-wrapper { position: relative; width: 100%; overflow: hidden; }
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 10;
  pointer-events: none;
}
.logos-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--cf-soft), transparent); }
.logos-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--cf-soft), transparent); }

.logos-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  height: 9rem;
  padding: 0 1rem;
  flex-shrink: 0;
}
.logo-item img { object-fit: contain; max-height: 6rem; transition: opacity 0.3s; opacity: 0.7; }
.logo-item:hover img { opacity: 1; }
.logo-item span { font-size: 0.75rem; color: var(--muted-fg); font-weight: 500; }

/* ══════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════ */
.services-section { background: var(--background); }
.section-eyebrow {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--foreground);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--cf-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--cf-glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}
.service-card:hover { box-shadow: var(--cf-shadow-glow); transform: translateY(-6px); }
.service-icon { font-size: 1.875rem; margin-bottom: 1rem; }
.service-card h3 { font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.service-card p { color: var(--muted-fg); font-size: 0.875rem; margin-bottom: 1rem; flex: 1; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.875rem; }
.service-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   WHY CLOUD FOGG
══════════════════════════════════════ */
.why-section { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--cf-glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--cf-glass-border);
  border-radius: 16px;
  border-top: 2px solid var(--cf-accent);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.why-card p { color: hsla(0,0%,100%,0.60); font-weight: 300; }

/* ══════════════════════════════════════
   ABOUT SNIPPET
══════════════════════════════════════ */
.about-snippet { color: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-eyebrow { color: var(--cf-accent); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.about-snippet h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1.5rem; }
.about-snippet p { color: hsla(0,0%,100%,0.70); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.value-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.value-tag {
  background: var(--cf-glass-bg-dark);
  border: 1px solid var(--cf-glass-border);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsla(0,0%,100%,0.80);
}
.about-learn { color: var(--cf-accent); font-weight: 600; font-size: 0.875rem; }
.about-learn:hover { text-decoration: underline; }

.about-feature-card { padding: 2rem; }
.feature-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.feature-row:last-child { margin-bottom: 0; }
.feature-icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: hsla(210,60%,60%,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-row strong { display: block; font-weight: 600; margin-bottom: 0.125rem; }
.feature-row span { font-size: 0.875rem; color: hsla(0,0%,100%,0.50); }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner { background: var(--background); text-align: center; }
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.cta-banner p { color: var(--muted-fg); max-width: 40rem; margin: 0 auto 2rem; font-weight: 300; font-size: 1.125rem; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-fg); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; box-shadow: 0 0 0 3px hsla(212,58%,44%,0.20); }
.contact-form textarea { resize: none; }
.btn-submit {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  border: none;
  align-self: flex-start;
  transition: all 0.3s;
}
.btn-submit:hover { box-shadow: var(--cf-shadow-glow); }

.contact-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-info-row { display: flex; align-items: center; gap: 0.75rem; color: var(--muted-fg); margin-bottom: 1rem; }
.contact-info-row svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.contact-note {
  background: var(--cf-glass-bg);
  border: 1px solid var(--cf-glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  font-weight: 300;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand img { height: 80px; object-fit: contain; }
.footer-brand p { margin-top: 1rem; font-size: 0.875rem; color: hsla(0,0%,100%,0.60); font-weight: 300; line-height: 1.7; }
.footer-col h4 { font-weight: 600; font-size: 0.875rem; margin-bottom: 1rem; color: hsla(0,0%,100%,0.80); }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.75rem; color: hsla(0,0%,100%,0.50); transition: color 0.2s; }
.footer-col a:hover { color: hsla(0,0%,100%,0.80); }
.footer-col .text-item { font-size: 0.75rem; color: hsla(0,0%,100%,0.50); margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid hsla(0,0%,100%,0.10); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: hsla(0,0%,100%,0.40); }

/* ══════════════════════════════════════
   ABOUT PAGE HERO
══════════════════════════════════════ */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(218,72%,10%), hsl(216,55%,25%), hsl(212,58%,44%));
}
.about-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.30;
  pointer-events: none;
}
.about-hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 2rem;
}
.about-hero-eyebrow { color: hsla(0,0%,100%,0.50); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1.5rem; }
.about-hero-sub { color: hsla(0,0%,100%,0.70); font-size: 1.125rem; font-weight: 300; line-height: 1.7; max-width: 36rem; }

/* ABOUT SECTIONS */
.prose-section { background: var(--background); padding: 5rem 2rem 2rem; }
.prose-section .content-max { max-width: 1280px; margin: 0 auto; }
.prose-text { color: var(--muted-fg); font-weight: 300; line-height: 1.7; font-size: 1.125rem; margin-bottom: 1.5rem; }
.prose-lead { color: var(--foreground); font-weight: 600; font-size: 1.25rem; margin-bottom: 2rem; }
.prose-cols { display: grid; grid-template-columns: 1fr; gap: 0.5rem 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .prose-cols { grid-template-columns: 1fr 1fr; } }
.prose-li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--muted-fg); font-weight: 300; margin-bottom: 0.5rem; }
.prose-li .dot { color: var(--primary); margin-top: 4px; vertical-align: middle; }
.prose-strong { color: var(--foreground); font-weight: 600; font-size: 1.125rem; }

.essence-section { background: var(--cf-soft); padding: 2rem 2rem 5rem; }
.essence-card {
  border-radius: 1rem;
  background: linear-gradient(to bottom right, hsla(212,58%,44%,0.40), hsla(210,60%,60%,0.20), transparent);
  padding: 1px;
}
.essence-card-inner {
  border-radius: calc(1rem - 1px);
  background: hsla(220,20%,97%,0.60);
  backdrop-filter: blur(20px);
  padding: 2.5rem 3rem;
}
.essence-card-inner h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1.5rem; }

.vm-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm-card { padding: 2rem; }
.vm-card .icon { font-size: 1.875rem; margin-bottom: 1rem; }
.vm-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.vm-card p { color: hsla(0,0%,100%,0.70); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }
.vm-card ul { margin-bottom: 1.5rem; }
.vm-card li { display: flex; align-items: flex-start; gap: 0.5rem; color: hsla(0,0%,100%,0.70); font-weight: 300; margin-bottom: 0.5rem; }
.vm-card li .dot-a { color: var(--accent); }
.vm-card strong { color: #fff; font-weight: 600; }

.diff-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
.diff-card {
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, hsla(212,58%,44%,0.20), hsla(210,60%,60%,0.10), transparent);
  padding: 1px;
  height: 100%;
}
.diff-card-inner {
  border-radius: calc(0.75rem - 1px);
  background: hsla(220,20%,97%,0.80);
  backdrop-filter: blur(4px);
  padding: 1.25rem;
  height: 100%;
}
.diff-card-inner .icon { font-size: 1.25rem; margin-bottom: 0.5rem; }
.diff-card-inner h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; }
.diff-card-inner p { color: var(--muted-fg); font-size: 0.75rem; font-weight: 300; line-height: 1.6; }
.diff-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1rem; margin-top: 0.75rem; }
.diff-bullet { display: flex; align-items: flex-start; gap: 0.375rem; color: var(--muted-fg); font-size: 0.75rem; font-weight: 300; }
.diff-bullet .dot { color: var(--primary); font-size: 0.5rem; margin-top: 5px; }

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   PAGE HERO (SERVICES / CONTACT)
══════════════════════════════════════ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.page-hero-content { padding: 3rem 2rem; max-width: 1280px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.page-hero p { color: hsla(0,0%,100%,0.70); font-size: 1.125rem; font-weight: 300; max-width: 36rem; }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  box-shadow: var(--cf-shadow-glow);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.35s ease;
  z-index: 9999;
  pointer-events: none;

  /* NEW */
  min-width: 260px;
  max-width: 360px;
}

/* Show animation */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ SUCCESS */
.toast.success {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-left: 4px solid #14532d;
}

/* ❌ ERROR */
.toast.error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-left: 4px solid #7f1d1d;
}

/* ⚠️ OPTIONAL: subtle entrance animation */
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast.show {
  animation: toastSlideIn 0.3s ease;
}