/* ============================================
   GODAVARI POLYMERS / EVERQPID – Main Styles
   Pure CSS3 | CSS Variables | Flexbox & Grid
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #ff3366;
  --secondary: #6c63ff;
  --bg-dark: #0f172a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.12);
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-hover: linear-gradient(135deg, #ff4d7a, #7b73ff);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(255, 51, 102, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --container: 1200px;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* --- Background Orbs --- */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--secondary);
  top: 40%;
  right: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: 10%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 51, 102, 0.3);
  box-shadow: var(--shadow), var(--shadow-glow);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--gradient);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
}

.btn--primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.5);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand img {
  height: 40px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link.active {
  color: var(--text);
}

.nav__link.active::after {
  width: 100%;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gradient);
  color: var(--text);
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* --- Download CTA Banner --- */
.download-cta {
  padding-top: 0;
  padding-bottom: 5rem;
}

.download-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.12), rgba(108, 99, 255, 0.12));
}

.download-cta__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.download-cta__text p {
  color: var(--text-muted);
  max-width: 480px;
}

.download-cta__actions {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  background: var(--gradient);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
}

.back-to-top[hidden] {
  display: none;
}

/* --- Contact page utilities --- */
.contact-page-card {
  margin-top: 1.5rem;
}

.contact-page-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-form-title {
  margin-bottom: 1.25rem;
}

.contact-section--compact {
  padding-top: 0;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .mockup-float {
    animation: none;
  }

  .orb {
    animation: none;
  }
}


.nav__cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Section Shared --- */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 51, 102, 0.08) 0%, transparent 40%);
  animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: 4rem;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 1.2em;
}

.typing-cursor {
  -webkit-text-fill-color: var(--primary);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero__desc {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border-glass);
  background: transparent;
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: rgba(255, 51, 102, 0.1);
  transform: translateY(-2px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.hero__title--static {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: auto;
}

.hero--product .hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

/* --- Product Spotlight (Home) --- */
.product-spotlight__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
}

.product-spotlight__desc {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.product-spotlight__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.product-spotlight__features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}

.product-spotlight__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.product-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-spotlight__visual {
  display: flex;
  justify-content: center;
}

.product-spotlight__visual img {
  max-width: 240px;
  filter: drop-shadow(0 16px 48px rgba(255, 51, 102, 0.25));
}

/* --- CTA Banner (Home) --- */
.cta-banner {
  padding-top: 0;
}

.cta-banner__inner {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(108, 99, 255, 0.1));
}

.cta-banner__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner__inner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page-hero .section__tag {
  margin-bottom: 1rem;
}


.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition);
}

.store-badge:hover {
  transform: scale(1.05);
  border-color: rgba(255, 51, 102, 0.4);
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge small {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.store-badge strong {
  font-size: 0.9rem;
}

/* Floating mockup */
.hero__mockup {
  display: flex;
  justify-content: center;
}

.mockup-float {
  animation: mockupFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(255, 51, 102, 0.3));
}

.mockup-float img {
  max-width: 280px;
}

@keyframes mockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid var(--border-glass);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* --- About Company --- */
.about-company__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-company__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-company__grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.about-company__grid p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: var(--shadow-glow);
}

.feature-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Carousel --- */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.carousel__slide img {
  max-height: 480px;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}

.carousel__btn:hover {
  background: var(--gradient);
  transform: translateY(-50%) scale(1.1);
}

.carousel__btn--prev { left: -24px; }
.carousel__btn--next { right: -24px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-glass);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel__dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* --- Why Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: var(--shadow-glow);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  font-size: 1.25rem;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Stats --- */
.stats {
  padding: 4rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.stat-item__number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card__stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  font-size: 0.95rem;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-glass);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card footer span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact__card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.contact__list li {
  margin-bottom: 1.25rem;
}

.contact__list strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact__list span,
.contact__list a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact__list a:hover {
  color: var(--text);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.form-feedback.success { color: #4ade80; }
.form-feedback.error { color: #f87171; }
.form-feedback.info { color: var(--text-muted); }
.form-feedback a { color: var(--primary); text-decoration: underline; }
.form-feedback code { font-size: 0.85em; color: var(--secondary); }

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.footer__social a:hover {
  transform: scale(1.1);
  background: var(--gradient);
  color: var(--text);
}

.footer__links h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-glass);
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Legal / Sub Pages --- */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.legal-content {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

.legal-content .glass-card {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    align-items: center;
  }

  .about-company__grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-h) + 2rem) 2rem 2rem;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border-glass);
    gap: 1.25rem;
    transition: right var(--transition);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .about-company__grid,
  .features-grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    align-items: center;
    justify-content: center;
  }

  .product-spotlight__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .product-spotlight__features {
    text-align: left;
    max-width: 280px;
    margin-inline: auto;
  }

  .product-spotlight__actions {
    justify-content: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .store-badges {
    flex-direction: column;
    width: 100%;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .mockup-float img {
    max-width: 220px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    margin-inline: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .carousel__slide img {
    max-height: 360px;
  }

  .download-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .download-cta__actions {
    width: 100%;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .glass-card {
    padding: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   Full functionality – forms, toast, modal, FAQ, etc.
   ═══════════════════════════════════════════════════════════ */

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-glass);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Form enhancements */
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group--error input,
.form-group--error textarea,
.form-group--error select {
  border-color: #f87171;
}

.field-error {
  display: block;
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-note a {
  color: var(--primary);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.contact__list li {
  position: relative;
}

.copy-btn {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  vertical-align: middle;
  transition: color var(--transition), border-color var(--transition);
}

.copy-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* Map */
.map-section {
  padding-top: 0;
}

.map-wrap {
  padding: 0;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item__question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 200px;
}

.faq-item__answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item__answer a {
  color: var(--primary);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: min(400px, calc(100vw - 2rem));
}

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast--in {
  opacity: 1;
  transform: translateX(0);
}

.toast--out {
  opacity: 0;
  transform: translateX(100%);
}

.toast--success { border-left: 4px solid #4ade80; }
.toast--error { border-left: 4px solid #f87171; }
.toast--info { border-left: 4px solid var(--secondary); }

.toast__message {
  font-size: 0.9rem;
  flex: 1;
}

.toast__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  position: relative;
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal.is-open .modal__dialog {
  transform: scale(1);
}

.modal__dialog h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.modal__dialog p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1rem 0;
  background: rgba(15, 23, 42, 0.97);
  border-top: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__inner a {
  color: var(--primary);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Footer newsletter */
.footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.footer__newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer__newsletter-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
}

.footer__newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

/* 404 */
.error-page__main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
}

.error-page__content {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 480px;
}

.error-page__content h1 {
  font-size: 5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page__content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .footer__newsletter {
    flex-direction: column;
    text-align: center;
  }

  .footer__newsletter-form {
    width: 100%;
    max-width: none;
    flex-direction: column;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Floating contact FAB */
.fab-contact {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--text);
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-contact:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.5);
}

@media (max-width: 768px) {
  .fab-contact {
    bottom: 5rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }

  .fab-whatsapp {
    bottom: 8.75rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }
}

/* Language toggle */
.lang-toggle {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  background: var(--bg-glass);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.lang-toggle:hover {
  color: var(--text);
  border-color: var(--primary);
  background: rgba(255, 51, 102, 0.1);
}

/* Breadcrumbs */
.breadcrumb {
  padding: calc(var(--header-h) + 1rem) 0 0.5rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  font-size: 0.85rem;
}

.breadcrumb__list a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb__list a:hover {
  color: var(--primary);
}

.breadcrumb__list li[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.breadcrumb__sep {
  color: var(--text-muted);
  opacity: 0.5;
  list-style: none;
}

/* WhatsApp FAB */
.fab-whatsapp {
  position: fixed;
  bottom: 9.25rem;
  right: 1.5rem;
  z-index: 998;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

body[data-page="contact"] .fab-whatsapp {
  bottom: 5.5rem;
}
