/* ============================================================
   INNSCOPE Theme Components
   All section styles for the INNSCOPE WordPress theme.
   Elementor-friendly: classes are scoped and won't conflict.
   ============================================================ */

/* ============ NAVIGATION ============ */
.innscope-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(27, 33, 102, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}

.innscope-nav.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(27, 33, 102, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo svg { width: 28px; height: 28px; }

.nav-logo span,
.nav-logo .site-title {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { list-style: none; }

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--deep-blue) !important;
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============ HERO SECTION ============ */
.innscope-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.innscope-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 217, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.innscope-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-icon {
  position: absolute;
  top: 30%;
  right: 12%;
  animation: innscope-float 6s ease-in-out infinite;
  opacity: 0.15;
}

@keyframes innscope-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

.innscope-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: innscope-fadeUp 1s ease 0.3s forwards;
}

.innscope-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: innscope-fadeUp 1s ease 0.5s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: innscope-fadeUp 1s ease 0.7s forwards;
}

@keyframes innscope-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--deep-blue);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 201, 76, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ============ PROBLEM / SOLUTION ============ */
.problem-section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.problem-card.problem::before { background: #e74c3c; }
.problem-card.solution::before { background: var(--gold); }

.problem-card .card-label {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.problem-card.problem .card-label { color: #e74c3c; }
.problem-card.solution .card-label { color: var(--gold); }

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

.problem-card p + p { margin-top: 1rem; }

/* ============ MARKET BANNER ============ */
.market-banner {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(42, 52, 152, 0.6), rgba(27, 33, 102, 0.9));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.market-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.market-item .market-number {
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cyan-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.market-item .market-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.4;
}

/* ============ SHOWCASE ============ */
.showcase {
  padding: 2rem 3rem 6rem;
  position: relative;
}

.showcase-banner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--gold);
  border-radius: 16px;
  overflow: hidden;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.showcase-label {
  font-family: var(--font-brand);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--deep-blue);
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  flex-shrink: 0;
}

.showcase-content {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  flex: 1;
  padding: 0.5rem 0;
}

.showcase-card {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  background: var(--deep-blue);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.showcase-card:hover {
  transform: scale(1.04);
  border-color: var(--cyan-accent);
}

.showcase-card-inner {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
}

.showcase-card-inner .device-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.showcase-main {
  flex-shrink: 0;
  width: 260px;
  height: 320px;
  background: var(--deep-blue);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(77, 217, 224, 0.3);
  box-shadow: 0 0 40px rgba(77, 217, 224, 0.1);
}

.showcase-main .alfa-label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--cyan-accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.backpack-icon-large { font-size: 5rem; margin-bottom: 1rem; }

/* ============ FEATURES SPLIT ============ */
.features-split {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--mid-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.backpack-visual {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.backpack-visual .bp-top {
  width: 180px; height: 50px;
  background: #c0392b;
  border-radius: 12px 12px 0 0;
  display: flex; align-items: center; justify-content: center;
}

.backpack-visual .bp-top::before {
  content: 'ALFA PAC';
  font-family: var(--font-brand);
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--gold);
}

.backpack-visual .bp-screen {
  width: 200px; height: 120px;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  border: 3px solid #922b21;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.bp-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(77, 217, 224, 0.15) 50%, transparent 60%);
  animation: innscope-screenGlare 4s ease-in-out infinite;
}

@keyframes innscope-screenGlare {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.screen-text {
  font-family: var(--font-brand);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--cyan-accent);
  text-transform: uppercase;
}

.backpack-visual .bp-body {
  width: 220px; height: 80px;
  background: linear-gradient(180deg, #922b21, #c0392b);
  border-radius: 0 0 20px 20px;
}

.backpack-visual .bp-pocket {
  width: 170px; height: 50px;
  background: var(--gold);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

.bp-pocket-device {
  width: 60px; height: 30px;
  background: #1a1a2e;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}

.features-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.features-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.feature-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.15);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
}

/* ============ FEATURES GRID ============ */
.features-grid-section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.features-grid-section .section-sub {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: var(--card-blue);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-accent), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

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

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-weight: 300;
}

/* ============ SOLAR BANNER ============ */
.solar-banner {
  padding: 6rem 3rem;
  text-align: center;
  background: var(--mid-blue);
  position: relative;
  overflow: hidden;
}

.solar-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 140%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(242, 201, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.solar-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
  position: relative;
}

.solar-banner p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
  position: relative;
}

/* ============ WHY US ============ */
.why-us {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
}

.why-us .section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.advantage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.advantage-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(242, 201, 76, 0.3);
}

.advantage-card .adv-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.advantage-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

/* ============ COMPATIBILITY ============ */
.compatibility {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.compatibility h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
}

.compatibility .section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 3.5rem;
}

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

.device-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.device-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(77, 217, 224, 0.3);
  transform: translateY(-4px);
}

.device-card .device-emoji { font-size: 3rem; margin-bottom: 1rem; display: block; }

.device-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.device-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ============ STATS ============ */
.stats-section {
  padding: 5rem 3rem;
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
  margin: 0 0 1.2rem 0;
  padding: 0;
  border: none;
}

.testimonial-author { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: var(--light-blue); margin-top: 0.2rem; }

/* ============ CTA ============ */
.cta-section {
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(242, 201, 76, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.25;
  position: relative;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  padding: 4rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder { color: var(--light-blue); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: var(--deep-blue);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* ============ FOOTER ============ */
.innscope-footer {
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 300px;
  margin-top: 1rem;
}

.footer-col h4,
.footer-widget-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-col ul { padding: 0; margin: 0; }

.footer-col ul li,
.footer-widget li { list-style: none; margin-bottom: 0.7rem; }

.footer-col a,
.footer-widget a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col a:hover,
.footer-widget a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--light-blue);
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1rem;
}

.footer-socials a:hover { color: var(--gold); }

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============ ELEMENTOR OVERRIDES ============ */
/* Ensure Elementor sections inherit theme colors */
.elementor-section { background-color: transparent; }
.elementor-page .innscope-nav { z-index: 10000; }
body.elementor-editor-active .reveal { opacity: 1; transform: none; }
body.elementor-editor-active .innscope-hero h1,
body.elementor-editor-active .hero-sub,
body.elementor-editor-active .hero-buttons { opacity: 1; animation: none; }

/* Elementor full-width canvas */
.elementor-template-canvas .innscope-nav,
.elementor-template-canvas .innscope-footer { display: none; }

/* ============ BLOG / PAGE DEFAULTS ============ */
.innscope-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.innscope-content h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.innscope-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.innscope-content a { color: var(--gold); }
.innscope-content a:hover { text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .innscope-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .innscope-hero { padding: 7rem 1.5rem 3rem; }
  .features-split { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .market-inner { grid-template-columns: repeat(2, 1fr); }

  .showcase-banner { flex-direction: column; padding: 1.5rem; }
  .showcase-label { writing-mode: horizontal-tb; transform: none; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }

  .innscope-content { padding: 6rem 1.5rem 3rem; }
}
