/* ============================================================
   SITECARE — style.css
   Premium Web Development Agency Website
   Color: #FF7A00 (primary), #FFA94D (secondary), #FFB84D (accent)
   Font: Outfit
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #FF7A00;
  --secondary: #FFA94D;
  --accent: #FFB84D;
  --bg: #FFFFFF;
  --bg-light: #FFF7F1;
  --text-dark: #1F1F1F;
  --text-mid: #444444;
  --text-light: #666666;
  --border: #ECECEC;
  --gradient: linear-gradient(135deg, #FF7A00 0%, #FFA94D 100%);
  --gradient-soft: linear-gradient(135deg, #FFF7F1 0%, #FFE8CC 100%);
  --shadow-sm: 0 2px 12px rgba(255,122,0,0.08);
  --shadow-md: 0 8px 30px rgba(255,122,0,0.12);
  --shadow-lg: 0 20px 60px rgba(255,122,0,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== CUSTOM CURSOR ===== */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
#cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.5;
}
@media (max-width: 768px) {
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.1s, visibility 0.1s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.loader-logo span { color: var(--primary); }
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 99px;
  animation: loaderFill 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderFill { from { width: 0 } to { width: 100% } }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 6rem 0; }
.bg-light { background: var(--bg-light); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255,122,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,122,0,0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* Ripple Effect */
.ripple { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,122,0,0.08);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  height: var(--nav-h);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 0;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; }
.nav-links a.active { color: var(--primary); }
.nav-cta { flex-shrink: 0; font-size: 0.88rem; padding: 10px 20px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 99px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 2rem 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--bg-light); color: var(--primary); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -200px; animation-duration: 10s; }
.blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-duration: 13s; animation-delay: -3s; }
.blob-3 { width: 300px; height: 300px; background: var(--accent); top: 50%; left: 40%; animation-duration: 9s; animation-delay: -6s; }
@keyframes blobFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,30px) scale(1.1); } }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(255,122,0,0.08);
  border: 1px solid rgba(255,122,0,0.2);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
#typing-text::after { content: '|'; animation: blink 0.7s infinite; color: var(--primary); }
@keyframes blink { 50% { opacity: 0; } }
.hero-desc { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 2rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(255,122,0,0.04);
  border: 1px solid rgba(255,122,0,0.12);
  padding: 6px 12px;
  border-radius: 99px;
}
.stat-icon { font-size: 1rem; }

/* Laptop Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.laptop-mockup {
  width: 100%;
  max-width: 480px;
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(255,122,0,0.2));
  animation: floatLaptop 5s ease-in-out infinite;
}
@keyframes floatLaptop { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.laptop-screen {
  background: #1F1F1F;
  border-radius: 12px 12px 0 0;
  padding: 10px;
  border: 3px solid #333;
}
.mock-browser {
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}
.mock-bar {
  background: #e0e0e0;
  padding: 8px 12px;
  display: flex;
  gap: 6px;
}
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mock-bar span:nth-child(1) { background: #FF5F57; }
.mock-bar span:nth-child(2) { background: #FEBC2E; }
.mock-bar span:nth-child(3) { background: #28C840; }
.mock-content { padding: 16px; }
.mock-header { height: 28px; background: var(--gradient); border-radius: 4px; margin-bottom: 12px; }
.mock-body {}
.mock-line { height: 10px; background: #ddd; border-radius: 99px; margin-bottom: 8px; }
.mock-line.long { width: 90%; }
.mock-line.medium { width: 65%; }
.mock-line.short { width: 45%; }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 12px; }
.mock-card { height: 50px; background: linear-gradient(135deg, #FFE8CC, #FFD4A0); border-radius: 4px; animation: mockPulse 2s ease-in-out infinite alternate; }
.mock-card:nth-child(2) { animation-delay: 0.3s; }
.mock-card:nth-child(3) { animation-delay: 0.6s; }
@keyframes mockPulse { from { opacity: 0.6; } to { opacity: 1; } }
.laptop-base { height: 14px; background: #2a2a2a; border-radius: 0 0 3px 3px; }
.laptop-foot { height: 10px; background: #222; border-radius: 0 0 8px 8px; width: 70%; margin: 0 auto; }

/* Floating Cards */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.floating-card span { font-size: 1.1rem; }
.card-1 { top: 15%; right: -10%; animation: cardFloat 4s ease-in-out infinite; }
.card-2 { bottom: 25%; right: -15%; animation: cardFloat 5s ease-in-out infinite 1s; }
.card-3 { bottom: 10%; left: -5%; animation: cardFloat 4.5s ease-in-out infinite 0.5s; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.5; transform: scaleY(0.5); transform-origin: top; } }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-shape-bg {
  position: absolute;
  width: 320px; height: 320px;
  background: var(--gradient-soft);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 40% 50% 50%; }
}
.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(3,90px);
  grid-template-rows: repeat(3,90px);
  gap: 10px;
  position: relative;
  z-index: 1;
}
.aig-item {
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.aig-item:hover { transform: scale(1.08); box-shadow: var(--shadow-md); }
.aig-item.center-icon { background: var(--gradient); color: white; font-size: 0.85rem; font-weight: 700; text-align: center; line-height: 1.2; }
.aig-item.center-icon strong { font-size: 1.1rem; }
.about-text .section-eyebrow { margin-bottom: 0.75rem; }
.about-desc { color: var(--text-light); line-height: 1.75; margin-bottom: 2rem; font-size: 1.02rem; }
.about-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.about-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
}
.about-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.about-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.about-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.about-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.addl-services-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-dark); }
.service-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }

/* Additional services (smaller) */
.addl-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}
.addl-card:hover { background: var(--bg-light); border-color: var(--secondary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.addl-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,122,0,0.2); }
.why-card-icon {
  width: 52px; height: 52px;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* ===== PROCESS ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  transform: translateX(-50%);
}
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-step.revealed { opacity: 1; transform: none; }
.timeline-step:nth-child(odd) .step-content { grid-column: 1; text-align: right; padding-right: 2rem; }
.timeline-step:nth-child(odd) .step-empty { grid-column: 3; }
.timeline-step:nth-child(even) .step-content { grid-column: 3; text-align: left; padding-left: 2rem; }
.timeline-step:nth-child(even) .step-empty { grid-column: 1; }
.step-node {
  grid-column: 2;
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(255,122,0,0.3);
  z-index: 1;
  position: relative;
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.step-content p { font-size: 0.85rem; color: var(--text-light); }

/* ===== TECHNOLOGIES ===== */
.tech-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.tech-track {
  display: flex;
  gap: 1.5rem;
  animation: techScroll 25s linear infinite;
  width: max-content;
}
@keyframes techScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  min-width: 110px;
  transition: var(--transition);
  flex-shrink: 0;
}
.tech-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.tech-icon { font-size: 2rem; }
.tech-name { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg);
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(255,122,0,0.3); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: none;
  width: 100%;
  text-align: left;
}
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.8rem;
}
.faq-item.open .faq-chevron { background: var(--gradient); color: white; transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ===== CONTACT ===== */
.contact-info-only {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: white;
  transition: var(--transition);
}
.contact-action:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-action.whatsapp:hover { border-color: #25D366; }
.contact-action.call:hover { border-color: var(--primary); }
.contact-action.email:hover { border-color: var(--secondary); }
.ca-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ca-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-action.whatsapp .ca-icon svg { color: #25D366; }
.ca-text { display: flex; flex-direction: column; }
.ca-label { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.ca-val { font-size: 0.8rem; color: var(--text-light); }

.contact-map { border-radius: var(--radius-md); overflow: hidden; }
.map-placeholder {
  background: var(--gradient-soft);
  height: 120px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
}
.map-placeholder span { font-size: 2rem; }
.map-placeholder p { font-size: 0.85rem; font-weight: 500; color: var(--text-mid); }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: #ccc; }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { font-size: 1.4rem; font-weight: 800; color: white; letter-spacing: -1px; display: inline-block; margin-bottom: 1rem; }
.footer-logo span { color: var(--primary); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #aaa; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.5rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; color: #aaa; }
.social-link:hover { background: var(--primary); }
.social-link:hover svg { color: white; }
.footer-links-col h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 1.25rem; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-col a { font-size: 0.85rem; color: #aaa; transition: var(--transition); }
.footer-links-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: #666; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: #666; transition: var(--transition); }
.footer-legal a:hover { color: var(--primary); }

/* ===== FLOATING BUTTONS ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.fab-whatsapp svg { width: 28px; height: 28px; color: white; }
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

#back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}
#back-to-top:not([hidden]) { opacity: 1; transform: translateY(0); }
#back-to-top[hidden] { display: flex !important; opacity: 0; pointer-events: none; }
#back-to-top svg { width: 20px; height: 20px; color: white; }
#back-to-top:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-content { gap: 2.5rem; }
  .about-grid { gap: 3rem; }
  .timeline::before { left: 24px; }
  .timeline-step { grid-template-columns: 48px 1fr; }
  .timeline-step:nth-child(odd) .step-content,
  .timeline-step:nth-child(even) .step-content { grid-column: 2; text-align: left; padding-left: 1.5rem; padding-right: 0; }
  .timeline-step:nth-child(odd) .step-empty,
  .timeline-step:nth-child(even) .step-empty { display: none; }
  .step-node { grid-column: 1; margin: 0; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-illustration { display: none; }
}

@media (max-width: 640px) {
  .section-pad { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .floating-card { display: none; }
  .hero-stats { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .hero-heading { font-size: 1.9rem; }
  .about-icon-grid { grid-template-columns: repeat(3,75px); grid-template-rows: repeat(3,75px); }
  .aig-item { font-size: 1.4rem; }
}

@media (max-width: 380px) {
  .services-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* ===== FOCUS STYLES (Accessibility) ===== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
