/* ===== VMCC INFORMÁTICA - DESIGN SYSTEM 2026 ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #0a1a2f;
  --primary-light: #1e3a5f;
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --dark: #060d1a;
  --white: #ffffff;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --radius: 16px;
  --radius-lg: 24px;
}

[data-theme="dark"] {
  --bg: #060d1a;
  --bg2: #0d1b2e;
  --surface: #0f2440;
  --surface2: #162d4a;
  --text: #e2e8f0;
  --text-light: #94a3b8;
  --border: #1e3a5f;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
  --bg: #f0f4ff;
  --bg2: #ffffff;
  --surface: #ffffff;
  --surface2: #f8fafc;
  --text: #0f172a;
  --text-light: #64748b;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3)
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6)
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes typewriter {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

@keyframes gradMove {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideDown 0.8s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 13, 26, 0.85);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition)
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none
}

.logo-img {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  object-fit: contain;
  animation: pulse 4s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4)
}

.logo-video {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(124, 58, 237, 0.4);
  border: 2px solid rgba(0, 212, 255, 0.3)
}

.logo-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.5px
}

.logo-text span {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center
}

nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition);
  letter-spacing: 0.3px
}

nav ul li a:hover {
  color: var(--accent)
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease
}

nav ul li a:hover::after {
  width: 100%
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #0099bb) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 30px;
  font-weight: 700 !important;
  font-size: 0.85rem !important
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
  color: var(--dark) !important
}

.nav-cta::after {
  display: none !important
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem
}

.theme-toggle {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: var(--accent);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.theme-toggle:hover {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(20deg)
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  cursor: pointer
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 5% 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #060d1a 0%, #0a1a2f 40%, #0d2545 70%, #060d1a 100%);
  background-size: 300% 300%;
  animation: gradMove 12s ease infinite
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero_bg.png') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.4
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: slideLeft 1s ease
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  animation: fadeUp 0.8s ease
}

.hero h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a8d8ff 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 1s ease 0.1s both
}

.hero-typewriter {
  display: inline-block;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent)
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 1s ease 0.2s both;
  max-width: 560px
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.3s both
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem
}

.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, #00e5ff, #00b3d9)
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px)
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: var(--accent)
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.4s both
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: default
}

.stat-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: rgba(0, 212, 255, 0.06)
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5)
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: float 8s ease-in-out infinite
}

.hero-ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 255, 0.08);
  animation: rotate 30s linear infinite
}

.hero-logo-big {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
  opacity: 0.85
}

/* ===== SECTION BASE ===== */
section {
  padding: 5rem 5%;
  position: relative
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem
}

.section-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.section-title h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2
}

[data-theme="dark"] .section-title h3 {
  color: #e2e8f0
}

.section-title p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7
}

.accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin: 1.2rem auto 0
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg2)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.3)
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition)
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transform: scale(1.1) rotate(5deg)
}

.service-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem
}

[data-theme="dark"] .service-card h4 {
  color: #e2e8f0
}

.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.2rem
}

.service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition)
}

.service-link:hover {
  gap: 0.8rem
}

/* ===== PRICING ===== */
.pricing {
  padding: 5rem 5%;
  background: var(--bg2)
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent)
}

.price-card.popular {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.05), transparent)
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4)
}

.price-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-align: center
}

.price-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif
}

.price-val span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light)
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1
}

.price-features li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem
}

.price-features li i {
  color: var(--accent);
  margin-top: 4px
}

.price-btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text)
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.btn-fill {
  background: var(--accent);
  color: var(--dark);
  border: 2px solid var(--accent)
}

.btn-fill:hover {
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px)
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center
}

.about-img-wrap {
  position: relative
}

.about-img-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3)
}

.about-img-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease
}

.about-img-frame:hover img {
  transform: scale(1.04)
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: var(--dark);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3)
}

.about-badge .years {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1
}

.about-text .section-tag {
  text-align: left
}

.about-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2
}

[data-theme="dark"] .about-text h3 {
  color: #e2e8f0
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.75
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border)
}

.value-icon {
  font-size: 1.4rem;
  min-width: 32px
}

.value-item h5 {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.2rem
}

[data-theme="dark"] .value-item h5 {
  color: #e2e8f0
}

.value-item p {
  font-size: 0.82rem;
  color: var(--text-light)
}

.about-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text-light);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition)
}

.contact-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px)
}

.contact-chip i {
  color: var(--accent)
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--bg2)
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border)
}

.portfolio-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.08)
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 13, 26, 0.95) 0%, rgba(6, 13, 26, 0.5) 50%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1
}

.portfolio-info {
  padding: 1.2rem
}

.portfolio-tag {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem
}

.portfolio-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem
}

[data-theme="dark"] .portfolio-info h4 {
  color: #e2e8f0
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--text-light)
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg)
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  border-color: rgba(0, 212, 255, 0.3)
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem
}

.faq-question h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text)
}

[data-theme="dark"] .faq-question h4 {
  color: #e2e8f0
}

.faq-question i {
  color: var(--accent);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  min-width: 16px
}

.faq-item.open .faq-question i {
  transform: rotate(180deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem
}

/* ===== BLOG ===== */
.blog-section {
  background: var(--bg2)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition)
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.25)
}

.blog-thumb {
  height: 200px;
  overflow: hidden;
  position: relative
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.07)
}

.blog-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 212, 255, 0.9);
  color: var(--dark);
  padding: 0.28rem 0.9rem;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(8px)
}

.blog-body {
  padding: 1.4rem
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.8rem
}

.blog-meta i {
  color: var(--accent);
  margin-right: 0.3rem
}

.blog-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.4
}

[data-theme="dark"] .blog-body h4 {
  color: #e2e8f0
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem
}

.read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition)
}

.read-more:hover {
  gap: 0.8rem
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--bg)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start
}

.contact-info-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem
}

[data-theme="dark"] .contact-info-box h3 {
  color: #e2e8f0
}

.contact-info-box p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition)
}

.ci-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(5px)
}

.ci-item .ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0
}

.ci-item span {
  font-weight: 500;
  font-size: 0.95rem
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.form-group {
  margin-bottom: 1.2rem
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem
}

[data-theme="dark"] .form-group label {
  color: #cbd5e1
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15)
}

.form-group textarea {
  min-height: 110px;
  resize: vertical
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4)
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #0e2a50 50%, #0f1f3d 100%);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.08), transparent 50%), radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.08), transparent 50%)
}

.cta-band h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  position: relative
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4)
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  font-family: 'Outfit', sans-serif
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  border-color: var(--accent)
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #04080f, #070f1c);
  padding: 4rem 5% 1.5rem;
  position: relative;
  overflow: hidden
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand img {
  width: 55px;
  border-radius: 12px;
  margin-bottom: 1rem;
  opacity: 0.9
}

.footer-brand p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.social-row {
  display: flex;
  gap: 0.7rem
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem
}

.social-btn:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: transparent;
  transform: translateY(-3px)
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem
}

.footer-col ul li a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 6px
}

.footer-col ul li span {
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem
}

.footer-col ul li i {
  color: var(--accent);
  font-size: 0.85rem;
  min-width: 16px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-bottom p {
  color: #475569;
  font-size: 0.85rem
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 900;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  animation: pulse 3s ease-in-out infinite
}

.whatsapp-float:hover {
  background: #1db954;
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5)
}

.whatsapp-float::after {
  content: 'WhatsApp';
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: 'Inter', sans-serif
}

.whatsapp-float:hover::after {
  opacity: 1
}

/* ===== CHATBOT ===== */
.chatbot-btn {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
  transition: var(--transition);
  animation: glow 3s ease-in-out infinite
}

.chatbot-btn:hover {
  transform: scale(1.1)
}

.chatbot-window {
  position: fixed;
  bottom: 170px;
  right: 28px;
  width: 340px;
  max-height: 480px;
  background: #0d1b2e;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 901;
  overflow: hidden;
  animation: fadeUp 0.3s ease
}

.chatbot-window.open {
  display: flex
}

.chat-header {
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, var(--accent2), #5b21b6);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.7rem
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem
}

.chat-header h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif
}

.chat-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem
}

.chat-online {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s
}

.chat-close:hover {
  opacity: 1
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.2) transparent
}

.chat-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: fadeUp 0.3s ease
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.07);
  color: #e2e8f0;
  border-bottom-left-radius: 4px
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: var(--dark);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  font-weight: 500
}

.chat-quick {
  padding: 0.5rem 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.chat-quick-btn {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent);
  padding: 0.32rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap
}

.chat-quick-btn:hover {
  background: rgba(0, 212, 255, 0.2)
}

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: #e2e8f0;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  outline: none
}

.chat-input::placeholder {
  color: #475569
}

.chat-input:focus {
  border-color: rgba(0, 212, 255, 0.3)
}

.chat-send {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0
}

.chat-send:hover {
  transform: scale(1.1)
}

/* ===== RECOMMENDER MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem
}

.modal-overlay.open {
  display: flex
}

.modal-box {
  background: #0d1b2e;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.4s ease;
  position: relative;
  max-height: 90vh;
  overflow-y: auto
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #64748b;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition)
}

.modal-close:hover {
  color: var(--accent)
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 0.5rem
}

.modal-sub {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 2rem
}

.quiz-step {
  display: none
}

.quiz-step.active {
  display: block;
  animation: fadeUp 0.3s ease
}

.quiz-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1.2rem
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem
}

.quiz-opt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  color: #cbd5e1;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem
}

.quiz-opt:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.06);
  color: white
}

.quiz-opt .opt-icon {
  font-size: 1.3rem;
  min-width: 28px
}

.quiz-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem
}

.quiz-dot {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  flex: 1;
  transition: background 0.3s
}

.quiz-dot.active {
  background: var(--accent)
}

.quiz-result {
  text-align: center;
  animation: fadeUp 0.4s ease
}

.result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block
}

.result-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem
}

.result-desc {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.result-cta {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: var(--dark);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif
}

.result-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4)
}

.quiz-restart {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #64748b;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.88rem;
  margin-top: 0.8rem;
  transition: var(--transition);
  display: block;
  margin-left: auto;
  margin-right: auto
}

.quiz-restart:hover {
  color: var(--accent);
  border-color: var(--accent)
}

/* ===== BUDGET MODAL ===== */
.budget-modal .modal-box {
  max-width: 480px
}

/* ===== AOS custom ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease
}

[data-aos="fade-up"] {
  transform: translateY(30px)
}

[data-aos="fade-right"] {
  transform: translateX(-40px)
}

[data-aos="fade-left"] {
  transform: translateX(40px)
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
  .hero-visual {
    display: none
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .about-img-wrap {
    max-width: 480px;
    margin: 0 auto
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  header {
    padding: 0.8rem 4%
  }

  nav {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: rgba(6, 13, 26, 0.97);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem;
    display: none;
    backdrop-filter: blur(20px)
  }

  nav.open {
    display: block
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch
  }

  nav ul li a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 10px
  }

  nav ul li a:hover {
    background: rgba(0, 212, 255, 0.08)
  }

  nav ul li a::after {
    display: none
  }

  .nav-cta {
    text-align: center
  }

  .menu-toggle {
    display: block
  }

  .hero {
    padding: 5rem 4% 3rem;
    min-height: auto
  }

  .hero h2 {
    font-size: 2rem;
    word-break: break-word;
    overflow-wrap: break-word
  }

  .hero-typewriter {
    display: block;
    word-break: break-word
  }

  .hero-stats {
    gap: 0.8rem
  }

  .stat-item {
    padding: 0.8rem 1rem
  }

  .about-values {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .chatbot-window {
    width: calc(100vw - 2rem);
    right: 1rem
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  section {
    padding: 3.5rem 4%
  }
}