﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --violet: #5723A6;
  --orange: #FF8A00;
  --white: #ffffff;
  --ink: #0f0a1f;
  --smoke: #f5f4fb;
  --card: #ffffff;
  --muted: #6b647b;
  --shadow: 0 18px 45px rgba(31, 10, 74, 0.16);
  --radius: 18px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(120% 90% at 80% 10%, rgba(87, 35, 166, 0.08), transparent 45%), var(--white);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}



header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(87, 35, 166, 0.08);
}

body.dark header {
  background: rgba(18, 14, 38, 0.9);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--violet);
}

.brand img {
  width: 180px;
  height: 180px;
}

@media (max-width: 640px) {
  .brand img {
    width: 140px;
    height: 140px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--violet);
  background: rgba(87, 35, 166, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(87, 35, 166, 0.35);
  background: var(--white);
  color: var(--violet);
  cursor: pointer;
  width: 48px;
  height: 48px;
  box-shadow: 0 10px 22px rgba(87, 35, 166, 0.16);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--violet);
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(2) {
  margin: 6px 0;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-divider {
  display: none;
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.14);
}

body.dark .nav-toggle span {
  background: #f1eefc;
}

body.dark .nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: #16122b;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

body.dark .nav-divider {
  background: rgba(255, 255, 255, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ffb352);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(255, 138, 0, 0.35);
}

.btn-ghost {
  background: rgba(87, 35, 166, 0.08);
  color: var(--violet);
}

.btn-ghost:hover {
  background: rgba(87, 35, 166, 0.12);
}

.hero .badge,
.hero .btn-ghost,
.hero .pill {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.26);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(87, 35, 166, 0.1);
  color: var(--violet);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background-image:
    linear-gradient(130deg, rgba(0, 0, 0, 1), rgba(30, 10, 70, 0.8)),
    url('../../bacground.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--violet);
  color: var(--white);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 80% 10%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 32px;
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  color: var(--white);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-card h3 {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 22px;
}

@media (max-width: 780px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-head .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 140px;
  }

  #pack-candidature .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(87, 35, 166, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(17, 12, 34, 0.18);
  border-color: rgba(255, 138, 0, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(87, 35, 166, 0.08);
  color: var(--violet);
  font-weight: 700;
  margin-bottom: 12px;
}

.highlight {
  background: linear-gradient(120deg, rgba(87, 35, 166, 0.08), rgba(255, 138, 0, 0.08));
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(87, 35, 166, 0.08);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(87, 35, 166, 0.08);
  color: var(--violet);
  font-weight: 600;
  font-size: 13px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.filter-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(87, 35, 166, 0.2);
  background: var(--card);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(87, 35, 166, 0.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: block;
}

.portfolio-thumb {
  border-radius: var(--radius) var(--radius) 0 0;
  height: 180px;
  background: linear-gradient(145deg, rgba(87, 35, 166, 0.15), rgba(255, 138, 0, 0.15));
  display: grid;
  place-items: center;
  color: var(--violet);
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-body {
  padding: 16px;
}

.portfolio-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(87, 35, 166, 0.08);
  display: grid;
  gap: 8px;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
}

.product-card h3 {
  margin: 0;
}

.product-visual {
  height: 180px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(87, 35, 166, 0.08), rgba(255, 138, 0, 0.12));
  color: var(--violet);
  font-weight: 700;
  padding: 12px;
}

.btn-dark {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.testimonial {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  align-items: center;
}

.testimonial img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(87, 35, 166, 0.2);
}

.stars {
  color: #f7b500;
  letter-spacing: 2px;
  font-size: 14px;
}

.cta-banner {
  background: linear-gradient(120deg, var(--violet), #34166d);
  color: var(--white);
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 18px;
  box-shadow: 0 26px 68px rgba(31, 10, 74, 0.35);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner h3,
.cta-banner p {
  color: var(--white);
}

.cta-banner .btn-primary,
.cta-banner .btn-ghost {
  background: var(--white);
  color: var(--violet);
  box-shadow: none;
}

.cta-banner .btn-ghost {
  opacity: 1;
}

.cta-banner .btn-primary:hover,
.cta-banner .btn-ghost:hover {
  transform: translateY(-1px);
  background: #f5f5ff;
}

.pricing {
  border: 1px solid rgba(87, 35, 166, 0.12);
}

.pricing h3 {
  margin-bottom: 8px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--violet);
  margin: 6px 0 10px;
}

.price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
}

.list li::before {
  content: '\2022';
  color: var(--orange);
  font-weight: 800;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: var(--muted);
}

.checklist li::before {
  content: '\2022';
  color: var(--orange);
  font-weight: 800;
}


.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

form {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(87, 35, 166, 0.15);
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(87, 35, 166, 0.18);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f5f4fb;
  color: var(--violet);
  font-weight: 600;
  margin-top: 8px;
  border: 1px solid rgba(87, 35, 166, 0.12);
}

.form-status.success {
  background: #e9fff1;
  color: #0b7a3d;
  border-color: rgba(11, 122, 61, 0.25);
}

.form-status.error {
  background: #ffecec;
  color: #b30000;
  border-color: rgba(179, 0, 0, 0.2);
}

.form-status.info {
  background: #eef0ff;
  color: #363485;
  border-color: rgba(54, 52, 133, 0.2);
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(87, 35, 166, 0.1);
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(87, 35, 166, 0.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

footer {
  background: #0d0820;
  color: var(--white);
  padding: 42px 0 28px;
  margin-top: 30px;
}

footer a {
  color: rgba(255, 255, 255, 0.88);
}

footer .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(87, 35, 166, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  margin-bottom: 22px;
}

.footer-cta h3 {
  margin: 6px 0 6px;
  color: #ffffff;
}

.footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta .badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.footer-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.footer-cta .btn-primary {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

footer h4 {
  color: #ffffff;
}

footer .footer-grid p {
  color: rgba(255, 255, 255, 0.78);
}

footer .footer-grid .brand img {
  width: 150px;
  height: auto;
}

.social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.social img {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-bottom {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  background: linear-gradient(120deg, rgba(87, 35, 166, 0.12), rgba(255, 138, 0, 0.12));
  padding: 60px 0 38px;
}

.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 42px);
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #0d0820;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(255, 138, 0, 0.35);
  z-index: 1200;
}

.floating-whatsapp img {
  width: 52px;
  height: 52px;
  display: block;
}

.dark-toggle {
  background: rgba(87, 35, 166, 0.12);
  color: var(--violet);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(87, 35, 166, 0.2);
}

/* Dark mode */
body.dark {
  background: #0f0c1c;
  color: #f2f1fa;
  color-scheme: dark;
}

body.dark p,
body.dark .muted {
  color: #bcb7d9;
}

body.dark .card,
body.dark input,
body.dark textarea,
body.dark select,
body.dark details {
  background: #16122b;
  border-color: rgba(255, 255, 255, 0.06);
  color: #f1eefc;
}

body.dark .portfolio-thumb {
  background: linear-gradient(145deg, rgba(87, 35, 166, 0.25), rgba(255, 138, 0, 0.25));
}

body.dark .nav-links a:hover,
body.dark .nav-links a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

body.dark .brand {
  color: var(--white);
}

body.dark .cta-banner {
  background: linear-gradient(120deg, #1b1438, #0f0a28);
}

body.dark .cta-banner .btn-primary {
  background: var(--orange);
  color: #0d0820;
}

body.dark header {
  color: #f1eefc;
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(87, 35, 166, 0.08);
  color: var(--violet);
  font-weight: 600;
  font-size: 13px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.metric {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px;
  color: var(--white);
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 22px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.table th,
.table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(87, 35, 166, 0.1);
}

.table th {
  color: var(--violet);
}

@media (max-width: 820px) {
  header {
    padding: 4px 0;
  }

  .nav {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 4px 0;
  }

  .nav-toggle {
    display: inline-flex;
    order: 1;
  }

  .nav-divider {
    display: block;
    order: 2;
  }

  .nav-actions {
    order: 4;
    width: auto;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(87, 35, 166, 0.12);
    box-shadow: 0 16px 32px rgba(17, 12, 34, 0.12);
    order: 5;
    z-index: 1001;
  }

  body.dark .nav-links {
    background: #16122b;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .brand img {
    width: 150px;
    height: 150px;
  }

  .brand {
    order: 3;
    flex: 1;
    justify-content: center;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 6px;
  }

  .nav-actions {
    width: auto;
  }
}

@media (max-width: 640px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .pill-list {
    width: 100%;
  }

  .hero {
    padding: 62px 0 48px;
  }

  .section {
    padding: 56px 0;
  }

  footer .grid-3 {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 540px) {
  .cta-banner,
  .footer-cta {
    padding: 18px;
    text-align: center;
  }

  .cta-banner .hero-actions,
  .footer-cta .hero-actions {
    justify-content: center !important;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp img {
    width: 50px;
    height: 50px;
  }
}



