:root {
  color-scheme: dark;
  --bg: #020912;
  --surface: rgba(12, 24, 48, 0.78);
  --surface-strong: rgba(10, 20, 38, 0.95);
  --surface-soft: rgba(15, 32, 68, 0.72);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --primary: #2dd4bf;
  --secondary: #6366f1;
  --accent: #38bdf8;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  --radius: 24px;
}



html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, span, a, button, li {
  overflow-wrap: break-word;
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), transparent 24%),
    radial-gradient(circle at left center, rgba(99, 102, 241, 0.14), transparent 22%),
    linear-gradient(180deg, #020912 0%, #050d1b 45%, #050c18 100%);
  color: var(--text);
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  background: rgba(2, 9, 18, 0.82);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover .brand-logo {
  transform: scale(1.1) rotate(-8deg);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.3s ease, 
              background-color 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.1) rotate(6deg);
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 30;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.7rem;
}

/* Animate spans on toggle */
.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031b24;
  box-shadow: 0 18px 45px rgba(45, 212, 191, 0.18);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 92px);
  padding: 4rem 0 2rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy p {
  color: var(--muted);
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-copy .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: var(--primary);
}

.hero-tag span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.32), transparent 28%),
    radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.28), transparent 25%);
  z-index: 1;
}

.illu-card {
  position: relative;
  width: min(520px, 100%);
  height: 430px;
  background: linear-gradient(180deg, rgba(10, 22, 42, 0.95), rgba(5, 11, 24, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
  backdrop-filter: blur(16px);
}

.illu-screen {
  position: absolute;
  inset: 22px 20px auto 20px;
  height: 270px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.98), rgba(6, 10, 19, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.illu-screen::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 18px;
  right: 18px;
  height: 130px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.24), transparent 55%),
    linear-gradient(90deg, rgba(99, 102, 241, 0.22), transparent 40%);
}

.illu-status {
  position: absolute;
  top: 36px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

.status-line {
  height: 4px;
  width: 110px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.illu-panel {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}

.panel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 1rem;
}

.panel-card h4 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.panel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.device-phone {
  position: absolute;
  right: -75px;
  bottom: -10px;
  width: 148px;
  height: 280px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 16, 34, 1), rgba(5, 9, 20, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 40px 80px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.device-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-screen {
  position: absolute;
  inset: 32px 16px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(2, 9, 18, 0.98), rgba(7, 20, 39, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 16px;
}

.phone-tile {
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-tile.large {
  grid-column: span 2;
  height: 72px;
}

.glow-orb {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.2);
  filter: blur(18px);
  z-index: 0;
}

.glow-orb:nth-child(1) {
  top: 18%;
  left: -20%;
}

.glow-orb:nth-child(2) {
  bottom: 10%;
  right: -15%;
  background: rgba(99, 102, 241, 0.18);
}

.section {
  padding: 5rem 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  margin: 0;
}

.section-title p {
  color: var(--muted);
  max-width: 520px;
}

.service-grid,
.feature-grid,
.timeline-list,
.testimonial-track,
.faq-list {
  display: grid;
  gap: 1.5rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card,
.step-item,
.testimonial,
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.feature-card:hover,
.step-item:hover,
.testimonial:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.service-card h3,
.feature-card h3,
.testimonial h3,
.step-item h3,
.faq-item h3 {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
}

.service-card p,
.feature-card p,
.testimonial p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-card .icon,
.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(99, 102, 241, 0.18));
  color: var(--primary);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: calc(50% - 1px);
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.step-item {
  position: relative;
}

.step-item:nth-child(odd) {
  padding-right: 2rem;
  text-align: right;
}

.step-item:nth-child(even) {
  padding-left: 2rem;
  text-align: left;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 1.6rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid rgba(255, 255, 255, 0.12);
}

.step-item:nth-child(odd)::after {
  right: -9px;
}

.step-item:nth-child(even)::after {
  left: -9px;
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.16);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials {
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  display: grid;
  transition: transform 0.5s ease;
}

.testimonial {
  min-height: 220px;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  margin: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.testimonial blockquote::before {
  content: '“';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
}

.testimonial cite {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slide-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease;
}

.slide-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.faq-list {
  grid-template-columns: 1fr;
  display: grid;
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-card,
.map-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.contact-card h3,
.map-card h3 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.8rem;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 250, 252, 0.72);
}

select option {
  color: #0f172a;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(45, 212, 191, 0.75);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.16);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.map-card iframe,
.map-placeholder {
  width: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 24px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(99, 102, 241, 0.12));
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin-top: 0;
}

.footer-links,
.footer-info {
  display: grid;
  gap: 0.9rem;
}

.footer-links a,
.footer-info a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--text);
}

.social-row {
  display: flex;
  gap: 0.8rem;
}

.social-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.small-print {
  color: var(--muted);
  margin-top: 2rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .contact-grid,
  .footer-grid,
  .timeline-list,
  .service-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .step-item:nth-child(odd),
  .step-item:nth-child(even) {
    text-align: left;
    padding: 0;
  }

  .timeline-list::before {
    left: 1rem;
  }

  .step-item::after {
    left: -9px;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(2, 9, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.8rem 0;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
  }

  .site-header.menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header-inner,
  .hero,
  .section-title,
  .contact-grid,
  .footer-grid {
    gap: 1rem;
  }



  .hero {
    min-height: auto;
  }

  .hero-copy .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .device-phone {
    right: 0;
    bottom: -16px;
    width: 122px;
    height: 230px;
  }

  .illu-panel {
    grid-template-columns: 1fr;
  }

  .service-card,
  .feature-card,
  .testimonial,
  .faq-item,
  .step-item {
    padding: 1.4rem;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 
              0 0 0 0 rgba(37, 211, 102, 0.5);
  z-index: 10005 !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.3s ease,
              bottom 0.4s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 
                0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 
                0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 
                0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Phone Floating Button */
.phone-float {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgba(43, 49, 58, 0.85); /* Premium iOS grey translucent background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 10005 !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              bottom 0.4s ease;
  animation: phone-pulse 2s infinite;
}

.phone-float:hover {
  transform: scale(1.1) rotate(5deg);
  background: rgba(62, 70, 82, 0.95);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.phone-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes phone-pulse {
  0% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 
                0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  70% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 
                0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 
                0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Service Card Image Styles */
.service-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-image img,
.service-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img,
.service-card:hover .service-image svg {
  transform: scale(1.1);
}

.service-card h3 {
  padding: 1.5rem 1.75rem 0.5rem;
  margin: 0 !important;
}

.service-card p {
  padding: 0 1.75rem 1.75rem;
  margin: 0 !important;
}

/* Top Animated Slider Banner Styles */
.top-slider-section {
  width: 100%;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.top-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.top-slider-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.top-slide {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  overflow: hidden;
}

.top-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 9, 18, 0.95) 20%, rgba(2, 9, 18, 0.6) 60%, rgba(2, 9, 18, 0.3) 100%);
  z-index: 2;
}

.top-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5) contrast(1.05);
  transform: scale(1.03);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.top-slide.active img {
  transform: scale(1.12) translateX(-2%);
}

.top-slide-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.top-slide.active .top-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.top-slide-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.top-slide-content p {
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slide-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: rgba(45, 212, 191, 0.12);
  color: var(--primary);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.top-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.top-slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.top-slider-dots .dot.active {
  background: var(--primary);
  border-color: rgba(45, 212, 191, 0.3);
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .top-slider {
    height: 380px;
  }
  
  .top-slide {
    padding: 0 5%;
  }
  
  .top-slide::after {
    background: linear-gradient(180deg, rgba(2, 9, 18, 0.9) 0%, rgba(2, 9, 18, 0.7) 100%);
  }
}

/* Feature Cards SVG visual styling */
.feature-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.feature-svg {
  width: 100%;
  height: 100%;
  max-width: 150px;
}

.feature-card h3 {
  padding: 1.25rem 1.5rem 0.5rem;
  margin: 0 !important;
}

.feature-card p {
  padding: 0 1.5rem 1.5rem;
  margin: 0 !important;
}

/* Animations inside feature cards SVGs on hover */
.feature-card:hover .anim-rocket {
  animation: rocket-float 0.8s ease-in-out infinite alternate;
}

@keyframes rocket-float {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-6px) translateX(2px); }
}

.feature-card:hover .anim-device {
  animation: device-wiggle 0.6s ease-in-out infinite alternate;
}

@keyframes device-wiggle {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(5deg) scale(1.05); }
}

.feature-card:hover .anim-arrow {
  animation: arrow-grow 0.8s ease-in-out infinite alternate;
}

@keyframes arrow-grow {
  0% { stroke-width: 3.5; transform: scale(1); }
  100% { stroke-width: 4.5; transform: scale(1.03) translate(-2px, 2px); }
}

.feature-card:hover .anim-shield {
  animation: shield-pulse 1s ease-in-out infinite alternate;
}

@keyframes shield-pulse {
  0% { filter: drop-shadow(0 0 2px rgba(99, 102, 241, 0.2)); }
  100% { filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6)); }
}

.feature-card:hover .anim-gear {
  animation: gear-spin 3s linear infinite;
}

@keyframes gear-spin {
  0% { transform: translate(60px, 50px) rotate(0deg); }
  100% { transform: translate(60px, 50px) rotate(360deg); }
}

.feature-card:hover .anim-gear-reverse {
  animation: gear-spin-rev 2s linear infinite;
}

@keyframes gear-spin-rev {
  0% { transform: translate(95px, 68px) rotate(0deg); }
  100% { transform: translate(95px, 68px) rotate(-360deg); }
}

.feature-card:hover .anim-support {
  animation: chat-bounce 0.6s ease-in-out infinite alternate;
}

@keyframes chat-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.service-card:hover .anim-pos {
  animation: pos-bounce 0.8s ease-in-out infinite alternate;
}

@keyframes pos-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* ==========================================================================
   Antigravity Premium Modernization Styles
   ========================================================================== */

/* 1. Animated & Glow CTA Buttons */
.btn-primary.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.4), 
              0 10px 30px rgba(99, 102, 241, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.btn-primary.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px rgba(45, 212, 191, 0.65), 
              0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-primary.btn-glow:hover::after {
  transform: scale(1.2);
  opacity: 1;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-left: 0.35rem;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-hover-effect {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-hover-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(99, 102, 241, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-hover-effect:hover {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(45, 212, 191, 0.08);
  transform: translateY(-2px);
}

.btn-hover-effect:hover::before {
  opacity: 1;
}

/* 2. Partner Logos (Infinite Marquee - Cross-Browser & In-App Browser Compatible) */
.partner-logos-section {
  padding: 2.5rem 0;
  background: rgba(2, 9, 18, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.partner-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  opacity: 0.65;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.partner-marquee,
.brands-slider {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partner-marquee-track,
.brands-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  animation: marquee 25s linear infinite;
  -webkit-animation: marquee 25s linear infinite;
  gap: 3rem;
}

.partner-logo {
  display: inline-block;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: 0.45;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 3rem; /* Fallback spacing for WebViews without flex gap support */
}

.partner-logo:last-child {
  margin-right: 0;
}

.partner-logo:hover {
  opacity: 0.95;
  color: var(--primary);
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .partner-logos-section {
    padding: 2rem 0;
  }
  .partner-title {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .partner-marquee-track,
  .brands-track {
    gap: 2rem;
    animation-duration: 20s;
    -webkit-animation-duration: 20s;
  }
  .partner-logo {
    font-size: 0.95rem;
    margin-right: 2rem;
  }
}

/* 3. Apple-Style Interactive Products Section */
.interactive-products-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.products-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-btn:hover {
  background: var(--surface-soft);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}

.category-btn.active {
  background: var(--surface-strong);
  color: var(--text);
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
              0 0 15px rgba(45, 212, 191, 0.15);
}

.category-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 0 4px 4px 0;
}

.category-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.3s ease;
}

.category-btn.active .category-btn-icon {
  color: var(--primary);
}

/* Right Content Area */
.products-content-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Sub-items Selector (Pills) */
.sub-items-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-item-btn {
  padding: 0.65rem 1.35rem;
  border-radius: 99px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sub-item-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.sub-item-btn.active {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(99, 102, 241, 0.18));
  border-color: rgba(45, 212, 191, 0.35);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Product Detail Card */
.product-detail-card {
  background: var(--surface-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-detail-card.animate-fade {
  animation: cardFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--primary);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.detail-desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.detail-features-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.detail-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  gap: 0.75rem;
}

.detail-features-list li {
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.detail-visual-placeholder {
  position: relative;
  width: 100%;
  height: 300px;
  background: radial-gradient(circle at center, rgba(45, 212, 191, 0.14) 0%, rgba(99, 102, 241, 0.06) 50%, rgba(2, 9, 18, 0.5) 100%);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6),
              0 15px 35px rgba(0, 0, 0, 0.4);
}

.detail-visual-placeholder img,
.detail-visual-placeholder .device-svg-mockup {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.svg-mockup-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-svg-mockup {
  width: 100%;
  height: 100%;
  max-width: 320px;
  max-height: 240px;
}

.detail-visual-placeholder:hover img,
.detail-visual-placeholder:hover .device-svg-mockup {
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .interactive-products-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  
  /* Horizontal Category Tabs on Mobile */
  .products-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .products-sidebar::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
  }

  .category-btn {
    flex-shrink: 0;
    padding: 0.85rem 1.1rem;
    font-size: 0.92rem;
    border-radius: 14px;
    gap: 0.65rem;
  }

  .category-btn.active::before {
    left: 15%;
    top: auto;
    bottom: 0;
    width: 70%;
    height: 3px;
    border-radius: 3px 3px 0 0;
  }

  /* Sub-items Nav Pills Horizontal Scroll on Mobile */
  .sub-items-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 6px;
    border-radius: 99px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sub-items-nav::-webkit-scrollbar {
    display: none;
  }

  .sub-item-btn {
    flex-shrink: 0;
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Detail Card Responsiveness */
  .product-detail-card {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
    border-radius: 20px;
  }

  .detail-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .detail-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .detail-features-list {
    margin-bottom: 1.5rem;
    gap: 0.6rem;
  }

  .detail-features-list li {
    font-size: 0.88rem;
  }

  .detail-visual-placeholder {
    height: 210px;
    padding: 1rem;
    border-radius: 16px;
    order: -1;
  }

  .device-svg-mockup {
    max-width: 280px;
    max-height: 190px;
  }
}

/* 4. Interactive Accordion SSS */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--surface-soft);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 1.25rem 1.75rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--muted);
  transition: background-color 0.3s ease;
}

.faq-icon::before {
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
}

.faq-item.open {
  border-color: rgba(45, 212, 191, 0.3);
}

.faq-item.open .faq-trigger {
  color: var(--primary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background-color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 1.75rem 1.5rem;
}

.faq-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* 5. Mobile Navbar Optimizations */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 720px) {
  .nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
}

/* 6. Cookie Consent Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: min(850px, calc(100% - 2rem));
  background: rgba(10, 20, 38, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  z-index: 10000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 24px;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}

.cookie-icon {
  flex-shrink: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  background: rgba(45, 212, 191, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.cookie-text {
  flex-grow: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 0.65rem 1.25rem;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031b24;
  border: none;
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.2);
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(45, 212, 191, 0.3);
}

.btn-cookie-decline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
  body.cookie-banner-active .whatsapp-float {
    bottom: 165px;
  }
  body.cookie-banner-active .phone-float {
    bottom: 235px;
  }
}

