*{margin:0;padding:0;box-sizing:border-box;font-family:Arial}
body{background:#0b0f15;color:#fff;line-height:1.6}
.container{max-width:1100px;margin:auto}
section{padding:80px 20px}
a{text-decoration:none;color:inherit}

/* Buttons */
.btn{display:inline-block;padding:14px 28px;border-radius:40px;border:1px solid #00afff;margin:8px;transition:.3s}
.btn.primary{background:#00afff;color:#000}
.btn:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(0,175,255,.3)}

.lang-switch {
  display: flex;
  gap: 6px;
  margin-right: 18px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #cfd8e3;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: #00afff;
  color: #000;
  border-color: #00afff;
}


/* ================= HERO (NEW CLEAN STYLE) ================= */

.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0,175,255,0.12), transparent 55%),
    linear-gradient(to bottom, rgba(8,12,18,0.88), rgba(8,12,18,0.97)),
    url("../images/hero.png") center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: 760px;
}

/* TITLE */
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: #00afff;
  transition: text-shadow .3s ease;
}

.hero-title span:hover {
  text-shadow: 0 0 25px rgba(0,175,255,0.5);
}

/* TEXT */
.hero-text {
  font-size: 18px;
  color: #cfd8e3;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* META */
.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  color: #9aa4b2;
}

/* Grid & Cards */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px}
.card{background:#121826;border-radius:16px;padding:25px;transition:.4s}
.card:hover{transform:translateY(-10px);box-shadow:0 20px 40px rgba(0,0,0,.4)}

/* Demos */
.demo-card img{width:100%;height:200px;object-fit:cover;border-radius:14px;margin-bottom:15px}

/* Pricing */
.price span{font-size:28px;color:#00afff}
.price ul{list-style:none;margin:15px 0}

/* Before After */
.before-after{position:relative;max-width:600px;margin:auto}
.before-after img{width:100%;border-radius:16px}
.before-after .after{position:absolute;top:0;left:0;clip-path:inset(0 0 0 50%)}

/* Contact */
form input,form textarea{width:100%;padding:14px;margin-bottom:12px;background:#0b0f15;border:none;border-radius:10px;color:#fff}

/* Footer */
footer{text-align:center;padding:30px;color:#777}

/* Reveal */
.reveal{opacity:0;transform:translateY(30px);transition:1s}
.reveal.show{opacity:1;transform:translateY(0)}

/* WhatsApp */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background:#25D366;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.5);
}

/* Services */
.services {
  margin-top: 30px;
}

.service-card {
  background: #121826;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  transition: .4s;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #bbb;
  font-size: 15px;
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,.4);
}

/* ===== SERVICES GENERAL ===== */

.services-capabilities {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0 50px;
  font-size: 14px;
  color: #9aa4b2;
}

.services-examples {
  gap: 30px;
}

.example-card {
  background: #121826;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
}

.example-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s ease;
}

.example-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.example-card:hover img {
  transform: scale(1.05);
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}


/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* ===== BRAND ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 44px;        /* BIGGER & CONFIDENT */
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #ffffff;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  color: #cfd8e3;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00afff;
  transition: 0.3s;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

/* ===== CTA ===== */
.cta-header {
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00afff, #0077ff);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,175,255,0.35);
}

/* Fix hero offset */
.hero {
  padding-top: 120px;
}

/* ================= WHY US SECTION ================= */

.why-us {
  background: radial-gradient(
    circle at top,
    rgba(0, 175, 255, 0.08),
    transparent 60%
  );
}

.section-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #aab4c3;
  max-width: 600px;
  margin: 0 auto 50px;
}

.why-grid {
  gap: 30px;
}

.why-card {
  background: #121826;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0,175,255,0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-card p {
  font-size: 14px;
  color: #aab4c3;
  line-height: 1.6;
}

/* ICON STYLE */
.why-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(0, 175, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 25px rgba(0, 175, 255, 0.35);
}

/* ================= PRICING ================= */

.pricing {
  background: radial-gradient(
    circle at top,
    rgba(0, 175, 255, 0.06),
    transparent 60%
  );
}

.pricing-grid {
  gap: 35px;
  margin-top: 40px;
}

.price-card {
  background: #121826;
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #9aa4b2;
  margin-bottom: 30px;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  color: #00afff;
  margin-bottom: 20px;
}

.price-value span {
  font-size: 14px;
  color: #aab4c3;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  margin: 10px 0;
  font-size: 14px;
  color: #d6deea;
}

/* POPULAR PLAN */
.price-card.popular {
  border: 2px solid #00afff;
  transform: scale(1.05);
}

.price-card.popular:hover {
  transform: scale(1.08) translateY(-10px);
}

.price-card .limit {
  color: #777;
  text-decoration: line-through;
  font-size: 13px;
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00afff, #0077ff);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* BUTTON VARIANTS */
.btn.outline {
  background: transparent;
  color: #00afff;
}

.btn.outline:hover {
  background: #00afff;
  color: #000;
}

.plan-tag {
  font-size: 13px;
  color: #9aa4b2;
  margin-bottom: 10px;
}

.plan-tag.highlight {
  color: #00afff;
  font-weight: 600;
}

.plan-tag.premium {
  color: gold;
  font-weight: 600;
}

/* ===== PRICING TOGGLE ===== */

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 30px 0 50px;
  font-size: 14px;
  color: #aab4c3;
}

.pricing-toggle span {
  cursor: pointer;
  transition: 0.3s;
}

.pricing-toggle span.active {
  color: #00afff;
  font-weight: 600;
}

/* Switch */
.toggle-switch {
  position: relative;
  width: 52px;
  height: 26px;
}

.toggle-switch input {
  display: none;
}

.toggle-switch label {
  position: absolute;
  inset: 0;
  background: #1e2638;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-switch label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 4px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + label {
  background: #00afff;
}

.toggle-switch input:checked + label::after {
  transform: translateX(26px);
}

/* ================= SERVICES ================= */

.services-section {
  background: radial-gradient(
    circle at top,
    rgba(0, 175, 255, 0.06),
    transparent 60%
  );
}

.services-grid {
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #121826;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.45s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* IMAGE */
.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* CONTENT */
.service-content {
  padding: 25px;
  text-align: center;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #aab4c3;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ================= BEFORE / AFTER ================= */

.before-after-section {
  text-align: center;
}

.before-after {
  position: relative;
  max-width: 700px;
  margin: 40px auto 15px;
  border-radius: 18px;
  overflow: hidden;
  cursor: ew-resize;
}

.before-after img {
  width: 100%;
  display: block;
}

.before-after .after {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.15s ease-out;
}

/* Labels */
.label {
  position: absolute;
  top: 15px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.before-label {
  left: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

.after-label {
  right: 15px;
  background: linear-gradient(135deg, #00afff, #0077ff);
  color: #000;
}

/* Hint text */
.ba-hint {
  font-size: 13px;
  color: #9aa4b2;
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  background: linear-gradient(
    to bottom,
    rgba(0, 175, 255, 0.05),
    transparent
  );
}

.testimonials-grid {
  gap: 35px;
  margin-top: 40px;
}

.testimonial-card {
  background: #121826;
  border-radius: 22px;
  padding: 35px 30px;
  position: relative;
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

/* Quote mark */
.testimonial-card .quote {
  position: absolute;
  top: -20px;
  left: 25px;
  font-size: 60px;
  color: rgba(0,175,255,0.3);
  font-family: serif;
}

.testimonial-text {
  font-size: 15px;
  color: #d6deea;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Client info */
.client strong {
  display: block;
  font-size: 14px;
}

.client span {
  font-size: 13px;
  color: #aab4c3;
}

/* ================= CONTACT ================= */

.contact-section {
  background: radial-gradient(
    circle at top,
    rgba(0, 175, 255, 0.08),
    transparent 60%
  );
}

.contact-intro {
  font-size: 14px;
  color: #aab4c3;
  margin-bottom: 20px;
}

.contact-reassurance {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #9aa4b2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.contact-card {
  background: #121826;
  border-radius: 22px;
  padding: 35px 30px;
}

.contact-card h3 {
  margin-bottom: 15px;
}

.contact-card p {
  color: #aab4c3;
  margin-bottom: 20px;
}

/* Form */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  background: #0b0f15;
  border: 1px solid #1e2638;
  border-radius: 10px;
  color: #fff;
}

.contact-card textarea {
  min-height: 120px;
  resize: vertical;
}

/* Buttons */
.btn.full {
  width: 100%;
  text-align: center;
}

.btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #000;
  font-weight: 600;
}

/* Highlight WhatsApp card */
.contact-card.highlight {
  border: 2px solid #25D366;
  box-shadow: 0 0 30px rgba(37,211,102,0.25);
  text-align: center;
}

.note {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #9aa4b2;
}

/* ================= FOOTER ================= */

.site-footer {
  background: #0a0e14;
  border-top: 1px solid #1e2638;
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* BRAND */
.footer-brand img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  color: #aab4c3;
  line-height: 1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #cfd8e3;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00afff;
}

/* CONTACT */
.footer-contact a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #00afff;
}

.footer-contact span {
  display: block;
  font-size: 13px;
  color: #aab4c3;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1e2638;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #7d8795;
}

/* ================= FLOATING WHATSAPP ================= */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Icon */
.whatsapp-icon {
  font-size: 26px;
  color: #000;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #121826;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation */
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulse 2.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOOTER BRAND ===== */

.footer-brand img {
  height: 60px;              /* BIGGER */
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(0,175,255,0.25));
}

.footer-brand-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
