/* Quikle Website v6 - Main Stylesheet */
/* ========================================= */
/* 2. DESIGN SYSTEM & VARIABLES */
:root {
  /* Primary Colors */
  --primary: #191970;          /* Midnight Blue — headlines, nav, footer */
  --accent: #008080;           /* Teal — buttons, highlights, icons */
  --accent-light: #E0F2F1;    /* Light Teal — card backgrounds, icon boxes */
  
  /* Background */
  --bg-body: #F8FAFC;         /* Cool white — main background */
  --bg-white: #FFFFFF;        /* Pure white — cards, sections */
  --bg-secondary: #F1F5F9;   /* Soft grey — alternate sections */
  
  /* Text */
  --text-main: #1E293B;       /* Dark slate — body copy */
  --text-muted: #64748B;      /* Medium grey — secondary text */
  
  /* Accents */
  --coral: #FF5F5F;           /* Hormozi Coral — CTAs, urgency, "villain" highlights */
  --success: #10B981;         /* Green — success states, positive metrics */
  
  /* Effects */
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.08);
  --shadow-glow: 0 20px 40px -10px rgba(0,128,128,0.15);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.05);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: blur(16px);
}

/* ========================================= */
/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.1rem); margin-bottom: 1rem; }

/* Utilities */
.text-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  background: #006666;
  color: white;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--text-main);
  border: 2px solid #E2E8F0;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-coral {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 95, 95, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-coral:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 95, 95, 0.4);
  background: #E54545;
  color: white;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
header.scrolled {
  padding: 0.8rem 0;
  box-shadow: var(--shadow-soft);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
}
.nav-links a:hover {
  color: var(--accent);
}
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.hero-image {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  max-width: 90%;
  margin: 0 auto;
}

@keyframes float {
  0% { transform: translateY(0px) translateZ(0); }
  50% { transform: translateY(-10px) translateZ(0); }
  100% { transform: translateY(0px) translateZ(0); }
}

/* Trust Bar */
.trust-bar {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid var(--bg-secondary);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* Problem Section */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.pain-card {
  background: #FFF5F5;
  border: 1px solid rgba(255, 95, 95, 0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-5px);
  border-color: var(--coral);
}
.pain-card .pain-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 95, 95, 0.1);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.pain-card h4 { color: var(--coral); margin-bottom: 0.5rem; font-weight: 700; }
.pain-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* 6-Pillar Grid */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pillar-card:hover {
  transform: translateY(-8px) translateZ(0);
  box-shadow: var(--shadow-glow);
}
.pillar-card .card-image {
  height: 220px;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--accent-light);
}
.pillar-card .card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.icon-box {
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.pillar-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.95rem; color: var(--text-muted); flex-grow: 1; }
.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s ease;
}
.card-link:hover { gap: 0.6rem; }

/* Pillar Deep Dives */
.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pillar-row.reverse { direction: rtl; }
.pillar-row.reverse > * { direction: ltr; }
.pillar-text { max-width: 520px; }
.pillar-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.benefit-list { margin: 1.5rem 0 2rem; }
.benefit-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.benefit-list li i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* 3-Step Plan */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}
.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-card .icon-box { margin: 0 auto 1.5rem; width: 70px; height: 70px; font-size: 1.8rem; border-radius: 20px; }
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--accent-light);
}

/* Testimonials Carousel */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 3rem;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonial-card {
  min-width: calc(50% - 1rem);
  flex-shrink: 0;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.industry-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-soft);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: calc(100% - 0px);
  }
  .carousel-track {
    gap: 1rem;
  }
}

/* Final CTA */
.transform-section {
  background: var(--primary);
  color: white;
  padding: 100px 0;
  text-align: center;
}
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: left;
}
.transform-col {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.transform-col.failure {
  background: rgba(255, 95, 95, 0.1);
  border: 1px solid rgba(255, 95, 95, 0.2);
}
.transform-col.success {
  background: rgba(0, 128, 128, 0.15);
  border: 1px solid rgba(0, 128, 128, 0.3);
  box-shadow: 0 0 30px rgba(0, 128, 128, 0.1);
}
.transform-col h3 { color: white; margin-bottom: 1.5rem; text-align: center; }
.transform-col ul li {
  padding: 0.6rem 0;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.transform-col.failure ul li { color: rgba(255, 255, 255, 0.6); }
.transform-col.success ul li { color: white; font-weight: 500; }

/* Contact Form */
.contact-section { background: white; }
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid #eee;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 300px; margin-top: 1rem; }
.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Nova Chatbot Pulse & Vibrate Animation */
@keyframes nova-pulse {
  0% { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 0 rgba(0,128,128,0.5); }
  70% { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 15px rgba(0,128,128,0); }
  100% { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 0 rgba(0,128,128,0); }
}

@keyframes nova-vibrate {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-1.5px, 1.5px); }
  40% { transform: translate(1.5px, -1.5px); }
  60% { transform: translate(-1.5px, -1.5px); }
  80% { transform: translate(1.5px, 1.5px); }
}

#nova-launcher {
  animation: nova-pulse 2.5s ease-in-out infinite, nova-vibrate 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

#nova-launcher:hover {
  transform: scale(1.1);
  animation: nova-vibrate 0.4s ease-in-out infinite;
}
.nova-panel {
  display: flex !important;
  flex-direction: column;
}
.nova-msg { display: flex; }
.nova-msg.nova-bot { justify-content: flex-start; }
.nova-msg.nova-user { justify-content: flex-end; }
.nova-msg.nova-user p {
  background: var(--accent) !important;
  color: white !important;
  border-radius: 12px 12px 4px 12px !important;
}

/* Contact Details Styling */
.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}
.contact-method i {
  color: var(--accent);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-method a {
  color: var(--text-main);
  font-weight: 600;
}
.contact-method a:hover {
  color: var(--accent);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .pillar-row { gap: 2.5rem; }
  .nav-links a { font-size: 0.8rem; }
  .transform-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 70px; right: -100%; height: 100vh; width: 85%;
    background: white; flex-direction: column; padding: 2rem;
    transition: 0.3s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    align-items: flex-start;
  }
  .nav-links.active { right: 0; }
  .mobile-toggle { display: block; }
  
  .grid-3 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  
  .pillar-row { grid-template-columns: 1fr; gap: 2rem; }
  .pillar-row.reverse { direction: ltr; }
  .pillar-image { order: -1; }
  
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:not(:last-child)::after { display: none; }
  
  .transform-grid { grid-template-columns: 1fr; }
  
  .hero h1 { font-size: 2.2rem; }
  .section-padding { padding: 60px 0; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-secondary, .btn-coral { width: 100%; text-align: center; }
  .card-glass { padding: 1.5rem; }
  .pillar-card .card-body { padding: 1.5rem; }
  .transform-col { padding: 1.5rem; }
}