/* Modern Startup Aesthetic CSS */

:root {
  /* Colors */
  --bg-color: #050505;
  /* Deep pure black */
  --bg-elevated: #0f172a;
  /* Dark slate */
  --bg-card: rgba(15, 23, 42, 0.4);

  --primary: #3b82f6;
  /* Bright Blue */
  --primary-hover: #2563eb;
  --secondary: #1e293b;

  --text-main: #ffffff;
  --text-muted: #94a3b8;

  --grain-opacity: 0.04;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.3);

  /* Layout */
  --max-width: 1100px;
  --nav-height: 80px;

  /* Shadows & Glows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 30px -5px rgba(59, 130, 246, 0.2);
  --glow-primary: 0 0 20px rgba(59, 130, 246, 0.4);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Custom Cursor Elements */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  opacity: 0.3;
}

.cursor-dot.active {
  width: 12px;
  height: 12px;
}

.cursor-ring.active {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  background: rgba(59, 130, 246, 0.1);
}

@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring { display: none; }
}

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

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Typography Headings */
h1,
h2,
h3,
h4,
.brand-text {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h1 span {
  color: var(--primary);
  /* Optional gradient text */
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

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

p.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

p.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.section-padding {
  padding: 8rem 0;
}

.alt-bg {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin: -4vw 0;
  padding-top: calc(8rem + 4vw);
  padding-bottom: calc(8rem + 4vw);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  /* Pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: var(--border-light);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

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

.glow-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(5, 5, 5, 0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  100% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Feature Grid (Why Us) --- */
.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* --- Horizontal Plans --- */
.plans-horizontal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.plan-horizontal {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  align-items: center;
  gap: 3rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.plan-horizontal:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.plan-featured {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.featured-label {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan-main h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

.plan-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.plan-price span {
  display: block;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-top: 0.25rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  font-weight: 500;
}

.plan-features span {
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .plan-horizontal {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .plan-features {
    align-items: center;
  }
}

/* --- Tech Bar --- */
.tech-bar {
  padding: 3rem 0;
  background: #000;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.tech-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.tech-flex span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.tech-flex span:hover {
  color: var(--primary);
}

/* --- Contact Form --- */
.contact-form-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
}

.minimal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 0.75rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

/* --- Strips / Badges --- */
.strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-elevated) 100%);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.strip-item h3 {
  color: var(--text-main);
  font-size: 1.25rem;
}

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

/* --- Services & Cards --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-inline: auto;
}

.section-header p {
  color: var(--text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.card-featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(59, 130, 246, 0.05) 100%);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- About Section --- */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.impact-card {
  padding: 3rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.impact-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.impact-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.impact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Extra Services 360 --- */
.extra-service-card {
  padding: 3rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.extra-service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.extra-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.extra-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.extra-service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat h4 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat span {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-box {
  position: relative;
}

.rounded-img {
  border-radius: 1.5rem;
  border: 1px solid var(--border-light);
  width: 100%;
}

.shadow-lg {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.visual-box::before {
  content: '';
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, var(--primary), transparent 50%);
  filter: blur(40px);
  opacity: 0.2;
  z-index: -1;
  border-radius: 2rem;
}

/* --- Mobile Showcase (Phone Mockup) --- */
.glass-phone {
  width: 280px;
  height: 560px;
  background: #111;
  border: 12px solid #222;
  border-radius: 3rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.phone-screen img {
  width: 100%;
  height: auto;
}

.glass-phone::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #222;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

/* --- Portfolio --- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(15, 23, 42, 0.5) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* --- Portfolio --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.portfolio-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  perspective: 1000px;
}

.portfolio-item:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  border-color: var(--primary);
  box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.25);
}

.portfolio-image {
  position: relative;
  height: 220px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--glass-border);
}

.portfolio-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .portfolio-logo {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-btn {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-btn {
  transform: translateY(0);
}

.portfolio-info {
  padding: 1.5rem;
  text-align: left;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0px;
}

/* --- Process --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: var(--glow-primary);
}

.process-step h3 {
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-muted);
}

/* --- Stats Counters --- */
.stats-banner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, #050505 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
  text-align: center;
}

.stat-item h4 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.stat-item p {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Testimonials --- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.testimonial-author strong {
  display: block;
  font-family: 'Outfit', sans-serif;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 1.25rem;
  transition: border-color 0.3s ease;
}

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

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

/* --- Scroll to Top --- */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 96px;
  /* Next to WhatsApp */
  width: 56px;
  height: 56px;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 3rem 0;
  background: var(--bg-color);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* --- Floating WhatsApp --- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* --- Floating Socials --- */
.floating-socials {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-instagram, .floating-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  animation: pulse-instagram 2.5s infinite;
}

@keyframes pulse-instagram {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(214, 36, 159, 0.4); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
}

.floating-instagram:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.5);
}

.floating-instagram svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp {
  background-color: #25d366;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-fade {
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-elevated);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-cta {
    display: none;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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