*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
   
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sales-hero-placeholder img {
  width: 100%;
  height: auto;    
  object-fit: contain;
  border-radius: 20px;
  display: block;
}

/* Background Graph Container */
.graph-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.graph-background canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(15, 23, 42, 0.5) 0%,
        rgba(15, 23, 42, 0.95) 100%
    );
    z-index: 2;
}

/* Content Container */
.content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.content h1 {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
   -webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
 letter-spacing: -1px;
    line-height: 1.1;
}

.content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(100, 165, 250, 0.2);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    animation: slideIn 0.6s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card:nth-child(4) { animation-delay: 0.2s; }

.stat-card .number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-card .label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 30px;
    }
}

/* ===== SLIDESHOW ===== */
.slideshow-section {
  padding: 80px 0;
}

.slideshow-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation buttons */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slide-nav:hover {
  background: rgba(0,0,0,0.9);
}

.slide-nav.prev { left: 20px; }
.slide-nav.next { right: 20px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 18px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-blue);
}


/* ---------- spacer (option B) ---------- */
.spacer-large { height: 90px; }



/* Keep ONLY your dark theme variables */
:root {
  --bg: #0f172a;
  --panel: #1e293b;
  --accent-from: #60a5fa;
  --accent-to: #10b981;
  --muted: #cbd5e1;
  --card-back: rgba(8, 12, 20, 0.75);
}

/* Parallax full-width section */
.feature-parallax {
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(96,165,250,0.06), transparent 20%),
    radial-gradient(circle at 90% 90%, rgba(16,185,129,0.04), transparent 18%),
    linear-gradient(180deg, rgba(8,10,15,0.85), rgba(8,10,15,0.85));
  background-attachment: fixed; 
  background-size: cover;
  padding: 80px 20px 140px;
  color: var(--muted);
}


/* Parallax mobile fallback */
@media (max-width: 768px) {
  .feature-parallax { background-attachment: scroll; padding-bottom: 80px; }
}

/* theme toggle wrapper */
.theme-toggle-wrap {
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 20;
}
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(226,232,240,0.06);
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--muted);
  backdrop-filter: blur(6px);
}

/* inner container to center content */
.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* headings */
.feature-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-subheading { color: var(--muted); margin-bottom: 32px; }

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 10px;
  position: relative;
  z-index: 10;
}

/* ---------- FLIP CARD (front/back) ---------- */
.flip-card {
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(.2,.9,.2,1);
  transform-style: preserve-3d;
  border-radius: 14px;
  min-height: 260px;
  position: relative;
}
.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}
/* neon glow + base card */
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: 0 6px 18px rgba(2,6,23,0.5);
}

/* front face */
.flip-card-front {
  z-index: 2;
}

/* back face (flipped) */
.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, rgba(6,8,15,0.9), rgba(6,8,15,0.85));
  color: var(--muted);
}

/* content */
.card-content {
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
}
.card-icon { 
  width: 100px; 
  height: 100px; 
  margin-bottom: 14px; 
  display: inline-block; }
.flip-card h3 { color: #e6f0ff; margin-bottom: 8px; font-size: 1.15rem; }
.card-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.45; }

/* back content */
.card-back-content { padding: 30px 20px; text-align: center; }
.card-back-content h4 { color: #e6f0ff; margin-bottom: 8px; }
.card-link { display: inline-block; margin-top: 12px; color: var(--accent-from); font-weight: 600; text-decoration: none; }

/* outer animated gradient ring using :before */
.flip-card-inner::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(90deg, rgba(96,165,250,0.95), rgba(16,185,129,0.95), rgba(96,165,250,0.95));
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(8px);
  opacity: 0.12;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: -1;
  pointer-events: none;
  background-size: 200% 200%;
  animation: gradientShift 6s linear infinite;
}

/* strong glow on hover */
.flip-card:hover .flip-card-inner::before,
.flip-card:focus .flip-card-inner::before {
  opacity: 0.95;
  transform: scale(1.03);
  filter: blur(12px);
}

/* moving gradient animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Neon glow on the card itself */
.flip-card:hover .flip-card-front,
.flip-card:focus .flip-card-front {
  box-shadow: 0 18px 40px rgba(96,165,250,0.12), inset 0 1px 0 rgba(255,255,255,0.02);
  transform: translateY(-6px);
}

/* accessible focus state */
.flip-card:focus { outline: 3px solid rgba(96,165,250,0.12); outline-offset: 6px; }

/* responsive adjustments */
@media (max-width: 900px) {
  .card-icon { width: 64px; height: 64px; }
  .flip-card-inner { min-height: 220px; }
}
/* ===================== ANALYTICS + VIDEO SECTION ===================== */

.analytics-video-section {
    width: 100%;
    padding: 100px 100px;
    background: #0f172a;
}

.analytics-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* ---------- LEFT TEXT BOX ---------- */

.analytics-text {
    flex: 1;
    min-width: 340px;
    animation: fadeUp 1s ease forwards;
}

.analytics-text h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: left; 
    background: linear-gradient(135deg, #60a5fa, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.analytics-list {
    list-style: none;
    padding-left: 0;
}

.analytics-list li {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 12px 0;
    position: relative;
    padding-left: 25px;
}

/* Gradient bullet points */
.analytics-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- RIGHT VIDEO BOX ---------- */
.analytics-video {
    flex: 1;
    min-width: 340px;
    display: flex;
    justify-content: center;
    animation: fadeUp 1.4s ease forwards;
}

.video-frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(96,165,250,0.3);
    box-shadow: 0 0 25px rgba(16,185,129,0.2);
    transition: 0.3s ease;
}

/* Hover glow */
.video-frame:hover {
    box-shadow: 0 0 35px rgba(16,185,129,0.35), 0 0 50px rgba(96,165,250,0.3);
    transform: scale(1.02);
}

/* YouTube iframe full-fit */
.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- Animations ---------- */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */

@media(max-width: 992px) {
    .analytics-container {
        flex-direction: column;
        text-align: center;
    }

    .analytics-text h2 {
        text-align: center;
    }

    .analytics-list li {
        text-align: left;
    }

    .video-frame {
        margin-top: 0px;
    }
}


/* ========= CONTACT SECTION ========= */
.contact-section {
  padding: 100px 20px;
  background: var(--bg);
  text-align: center;
}

.contact-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px;
  background: var(--panel);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  -webkit-background-clip: text;
  color: transparent;
}

.contact-container p {
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-from);
  box-shadow: 0 0 0 2px rgba(96,165,250,0.3);
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00d4ff, #00a4cc);
  color: #04121c;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,212,255,0.4);
}

