/* ==========================================================================
   VV CREATIVE SOLUTIONS — Design Tokens
   ========================================================================== */
:root {
  --white: #ffffff;
  --bg-light: #f4f7fb;
  --bg-soft: #eef2f8;
  --navy: #0a1c3f;
  --royal-blue: #1c46c9;
  --electric-blue: #2f7dff;
  --electric-blue-soft: #eaf1ff;
  --text-main: #16213e;
  --text-muted: #5c6479;
  --line: #e2e7f0;
  --whatsapp: #22c55e;
  --whatsapp-dark: #17a34a;

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(16, 33, 74, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 33, 74, 0.09);
  --shadow-lg: 0 22px 50px rgba(16, 33, 74, 0.14);

  --container-w: 1180px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; color: var(--text-muted); }

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

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--electric-blue);
  outline-offset: 2px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 10px;
}

section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.32);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 14px 30px rgba(34, 197, 94, 0.4); }

.btn-primary {
  background: linear-gradient(135deg, var(--royal-blue), var(--electric-blue));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 70, 201, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(28, 70, 201, 0.36); }

.btn-outline {
  background: var(--white);
  color: var(--royal-blue);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--royal-blue); background: var(--electric-blue-soft); }

.btn-ghost {
  background: var(--bg-soft);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--electric-blue-soft); }

.btn-light {
  background: var(--white);
  color: var(--royal-blue);
}
.btn-light:hover { background: var(--electric-blue-soft); }

.btn-small { padding: 10px 20px; font-size: 0.88rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.15;
}
.brand-name span {
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  position: relative;
  padding: 4px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--electric-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--bg-soft);
  border: none;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(720px 420px at 88% -10%, var(--electric-blue-soft), transparent 60%),
    var(--bg-light);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--royal-blue);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--electric-blue);
}
.hero-person-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.hero-person-title {
  font-size: 0.94rem;
  color: var(--royal-blue);
  font-weight: 600;
}

.hero-intro {
  font-size: 1.03rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 34px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero signature visual: orbiting values ring */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-wrap {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(28, 70, 201, 0.28);
}
.orbit-ring-outer {
  inset: 0;
  animation: spin 46s linear infinite;
}
.orbit-ring-inner {
  inset: 15%;
  border-style: solid;
  border-color: rgba(47, 125, 255, 0.18);
  animation: spin-rev 34s linear infinite;
}
.orbit-logo-plate {
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 14%;
}
.orbit-logo {
  width: 100%;
}
.orbit-node {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  background: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.node-quality { top: 2%; left: 50%; transform: translateX(-50%); }
.node-innovation { bottom: 14%; left: 4%; }
.node-integrity { bottom: 14%; right: 4%; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  .orbit-ring-outer, .orbit-ring-inner { animation: none; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 90px 0; background: var(--white); }
.about-inner { max-width: 780px; }
.about-text { font-size: 1.03rem; }

/* ==========================================================================
   Solutions / Core Values
   ========================================================================== */
.solutions { padding: 90px 0; background: var(--bg-light); }

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 125, 255, 0.3);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--royal-blue), var(--electric-blue));
  margin-bottom: 20px;
}
.value-icon svg { width: 26px; height: 26px; fill: var(--white); }

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.value-card p { margin: 0; }

/* ==========================================================================
   Connect
   ========================================================================== */
.connect { padding: 90px 0; background: var(--white); }

.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.connect-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.connect-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  background: var(--electric-blue-soft);
}
.connect-item-wide { grid-column: 1 / -1; }

.connect-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.connect-icon svg { width: 22px; height: 22px; fill: var(--royal-blue); }

.connect-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.connect-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.connect-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

/* ==========================================================================
   Scan & Connect (secondary QR)
   ========================================================================== */
.scan {
  padding: 90px 0;
  background: var(--bg-light);
  text-align: center;
}
.scan-sub {
  max-width: 46ch;
  margin: 0 auto 44px;
  font-size: 1rem;
}

.qr-cards {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.qr-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  width: 260px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.qr-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.qr-frame img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.qr-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 1.02rem;
}
.qr-caption {
  margin: 0;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy), var(--royal-blue) 60%, var(--electric-blue));
  text-align: center;
}
.final-cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  margin-bottom: 34px;
}
.cta-group-center { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 26px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 44px; height: 44px; object-fit: cover; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.02em;
}
.footer-tagline {
  margin: 2px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--electric-blue);
  font-weight: 600;
}

.footer-person-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.footer-person-title { margin: 2px 0 0; font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.footer-details p { margin: 0 0 8px; font-size: 0.92rem; }
.footer-details span { color: rgba(255,255,255,0.55); margin-right: 6px; }
.footer-details a:hover { color: var(--electric-blue); }

.footer-copyright {
  margin: 22px 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .orbit-wrap { width: min(300px, 80vw); }
  .value-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; gap: 22px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 6px 24px;
  }
  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .header-actions .btn-small { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 44px 0 60px; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; width: 100%; }

  .connect-grid { grid-template-columns: 1fr; }
  .qr-cards { gap: 18px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .brand-name { font-size: 0.8rem; }
}
