@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;800&family=Plus+Jakarta+Sans:wght@300;400;700;800&display=swap');

:root {
  --bg-center: #0E1117;
  --bg-edge: #0A192F;
  --electric-blue: #2979FF;
  --cyan: #00E5FF;
  --white: #FFFFFF;
  --body-text: #B0BEC5;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-alt: rgba(255, 255, 255, 0.06);
  --border-gradient: linear-gradient(90deg, #00E5FF 0%, rgba(0, 229, 255, 0.2) 50%, transparent 100%);
  --card-border-gradient: linear-gradient(180deg, rgba(0, 229, 255, 0.3) 0%, transparent 100%);
  --shadow-blue: rgba(41, 121, 255, 0.15);
  --glow-cyan: rgba(0, 229, 255, 0.5);
  --glow-blue: rgba(41, 121, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at center, var(--bg-center) 0%, var(--bg-edge) 100%);
  background-attachment: fixed;
  color: var(--body-text);
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 10;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  /* No large caps as requested */
}

h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
p::first-letter {
  text-transform: uppercase;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid;
  border-image: var(--border-gradient) 1;
  box-shadow: 0 8px 32px var(--shadow-blue);
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--white);
  font-size: 24px;
}

.logo img {
  height: 32px;
}

.menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: var(--body-text);
  transition: color 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.menu a:hover {
  color: var(--cyan);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--electric-blue) 100%);
  border: 2px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px var(--glow-cyan), 0 0 60px var(--glow-blue);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.7), 0 0 80px rgba(41, 121, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--electric-blue);
  color: var(--cyan);
}

.btn-secondary:hover {
  background: rgba(41, 121, 255, 0.1);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.4);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(41, 121, 255, 0.05) 0%, transparent 40%),
    #0a192f;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  align-items: center;
  gap: 60px;
}


.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.analytics-h1 {
  font-size: 48px !important;
}

.hero h2 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
}


.hero-target {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.tech-stack-labels {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 0 20px var(--glow-cyan));
}


/* Qualification Section (Now Section 3) */
.qualification {
  padding: 120px 0;
  background: linear-gradient(to bottom, #02060c 0%, #0a192f 50%, #0d213f 100%);
  position: relative;
  z-index: 1;
}

.section-header p {
  font-size: 18px;
  color: var(--body-text);
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.qualification h2 {
  text-align: center;
  margin-bottom: 32px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.question-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.question-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-5px);
}

.check-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.question-card h3 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--white);
}

.cta-verification {
  margin-bottom: 60px;
  text-align: center;
}

.cta-verification p {
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.video-container {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.video-placeholder {
  position: relative;
  width: 75%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.1);
  cursor: pointer;
  display: block;
}

.video-placeholder img,
.video-placeholder iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transition: transform 0.5s ease;
}

.video-placeholder:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 229, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
  transition: all 0.3s ease;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--white);
  margin-left: 5px;
}

.video-placeholder:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.8);
}

/* Section 5: Problem Section (Now Section 2) */
.diagnoza {
  background: linear-gradient(to bottom, #0a192f 50%, #02060c 100%);
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.diagnoza h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.05);
  /* Matte Dark Glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(255, 82, 82, 0.3);
  /* Subtle red glow on hover */
}

.problem-icon {
  font-size: 24px;
  color: #FF5252;
  /* Red Alert Color */
  background: rgba(255, 82, 82, 0.1);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 24px;
  font-weight: 800;
}

.problem-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--white);
}

.problem-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Solution Box */
.solution-box {
  background: rgba(255, 255, 255, 0.08);
  /* Lighter than problem cards */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-box h2 {
  color: var(--cyan);
  margin-bottom: 0px;
  font-size: 32px;
}

.solution-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--body-text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solution-content .highlight-text {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

/* Demo Section */
.demo {
  text-align: center;
}

.demo h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.demo p {
  margin-bottom: 48px;
}

.demo-visual {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass-bg-alt);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

.demo-visual img {
  width: 100%;
  border-radius: 12px;
}

/* Services Section */
.services h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 40px;
}

.services>p {
  text-align: center;
  margin-bottom: 60px;
  color: var(--cyan);
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.service-card .lead {
  color: var(--body-text);
  margin-bottom: 24px;
  font-size: 14px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  margin-bottom: 12px;
  font-size: 15px;
}

.service-card li strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

/* Philosophy Section */
.philosophy .hero-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

/* Authority/Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  margin-top: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item .number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--cyan);
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
  line-height: 1;
}

.stat-item .label {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.4;
  text-transform: none;
}

/* Contact Section */
.contact-cta {
  background: var(--glass-bg-alt);
  backdrop-filter: blur(25px);
  border: 2px solid;
  border-image: var(--card-border-gradient) 1;
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.25);
  border-radius: 24px;
  padding: 60px;
}

.contact-cta h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left h3 {
  font-size: 28px;
  color: var(--cyan);
  margin-bottom: 16px;
}

.contact-left>p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 32px;
}

.calendar-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 229, 255, 0.1);
  margin-bottom: 32px;
}

.contact-icon-small {
  font-size: 32px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.calendar-box p {
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-details a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.contact-details a:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--glow-cyan);
}

/* Contact Form */
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: 0.3s;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.form-checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -5px;
  /* Perfect 10px visual gap to match the button */
  text-align: left;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.checkbox-wrapper input {
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--cyan);
}

.checkbox-wrapper label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--body-text);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--cyan);
  text-decoration: underline;
}

.error-msg {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
  line-height: 1;
  /* Minimize height impact */
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ff4d4d;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

.form-group.error .error-msg,
.form-checkbox.error .error-msg {
  display: block;
}

.form-success-msg {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  margin-top: 20px;
  animation: fadeIn 0.5s ease-out;
}

.success-icon {
  font-size: 32px;
  color: #00ff88;
  margin-bottom: 15px;
}

.form-success-msg p {
  color: #00ff88;
  font-weight: 500;
  margin: 0;
  font-size: 16px;
}

#contact-form button[type="submit"] {
  margin-top: -5px;
  /* Adjusting 15px flex gap to total 10px */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utilities */
.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.w-100 {
  width: 100%;
}

/* Footer */
/* Footer */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* Background inherited (transparent) */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Col 1 */
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-logo {
  height: 30px;
  filter: grayscale(100%) brightness(200%);
}

.footer-logo-wrapper span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-desc {
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.6;
  text-decoration: none;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: var(--cyan);
  opacity: 1;
}

/* Col 2 & 3 Headers */
.footer-col h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}

/* Quick Links */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  text-decoration: none;
  font-size: 14px;
}

.footer-list a:hover {
  color: var(--cyan);
  padding-left: 6px;
}

/* Contact */
.footer-contact-item {
  margin-bottom: 16px;
}

.footer-contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
  opacity: 0.8;
}

.footer-contact-item a:hover {
  color: var(--cyan);
  opacity: 1;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Philosophy List Alignment - Left Aligned with Flex */
.philosophy-grid ul {
  text-align: left;
  padding-left: 0;
  /* Ensure no default padding */
}

.check-list li,
.cross-list li {
  display: flex;
  align-items: flex-start;
  /* Align top for multi-line text */
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.list-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(0, 230, 118, 0.1);
  /* Green tint background */
  color: #00E676;
  /* Green checkmark */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
  /* Align slightly with first line of text */
}

.list-text {
  display: flex;
  flex-direction: column;
}

.list-text strong {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 500;
}

.check-list,
.cross-list {
  list-style: none;
  padding: 0;
}

/* Subtext styling */
.list-sub {
  font-size: 0.9em;
  opacity: 0.7;
  display: block;
  /* Force new line */
  margin-top: 4px;
  font-weight: 400;
}

.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-content {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.video-modal-overlay.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  transition: 0.3s;
  opacity: 0.7;
}

.video-modal-close:hover {
  color: var(--cyan);
  opacity: 1;
  transform: rotate(90deg);
}

/* Original Container hidden when modal active? No, we append modal to body. */
.collaboration {
  background: #081221;
  /* Distinct Deep Navy to separate from previous section */
  padding: 120px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.collaboration-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.collaboration-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-5px);
}

.card-badge {
  display: inline-block;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collaboration-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.card-intro {
  font-size: 15px;
  color: var(--body-text);
  margin-bottom: 32px;
}

.checkmark-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.checkmark-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.result-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.result-title {
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px !important;
}

.result-box p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.result-box strong {
  color: var(--white);
}

.arrow-list {
  list-style: none;
}

.arrow-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 13px;
}

.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFB300;
}

.price-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  text-align: center;
}

/* Waitlist Button (Orange) */
.btn-waitlist {
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  color: #1a1a1a;
  border: none;
  box-shadow: 0 0 20px rgba(255, 179, 0, 0.2);
}

.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 179, 0, 0.4);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  width: 90%;
  max-width: 450px;
  padding: 60px 40px;
  position: relative;
  text-align: center;
  animation: modalSlide 0.3s ease-out;
}

@keyframes modalSlide {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.close-modal:hover {
  opacity: 1;
}

.modal h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.modal p {
  margin-bottom: 32px;
  font-size: 15px;
}

/* Section 6: Methodology (Why It Works) */
.methodology {
  background: linear-gradient(to bottom, #02060c 0%, #0a192f 30%, #0a192f 100%);
  padding: 120px 0;
  position: relative;
  border-top: none;
}

.methodology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sub-header {
  color: var(--cyan);
  font-size: 20px;
  margin-top: 16px;
  font-weight: 400;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
}

/* Methodology Section Overhaul v5 (Timeline Style) */
.methodology-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: var(--body-text);
  line-height: 1.6;
}

.methodology-vertical-stack {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}

.methodology-banner {
  width: 100%;
  padding: 45px;
  position: relative;
}

.quick-wins-card {
  padding: 45px;
  position: relative;
  border-left: 4px solid #FF9100;
}

/* Removed ::before for quick-wins to revert to border-left logic */

.methodology-full-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Reduced from 15px */
}

.full-service-header-banner {
  padding: 45px;
  position: relative;
  border-left: none;
  /* Ensure no border since using pseudo-element */
}

.full-service-header-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 275px;
  /* Increased from 235px to cover the second line */
  background: var(--cyan);
}

.method-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.method-badge.orange {
  background: rgba(255, 145, 0, 0.1);
  color: #FF9100;
  border: 1px solid rgba(255, 145, 0, 0.3);
}

.method-badge.cyan {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.methodology-banner h3,
.full-service-header-banner h3 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--white);
}

.method-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.method-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body-text);
  margin-bottom: 30px;
}

.method-result-box {
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.method-result-box.cyan-bg {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan);
}

/* Vertical Timeline Flow */
.inner-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Reduced from 30px */
  padding-left: 20px;
}

.accordion-instruction {
  font-size: 13px;
  color: rgba(0, 229, 255, 0.6);
  margin-bottom: 5px;
  font-style: italic;
  font-weight: 500;
}

.inner-step {
  padding: 30px;
  position: relative;
}

.step-point {
  position: absolute;
  left: -26px;
  top: 45px;
  width: 14px;
  height: 14px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  z-index: 2;
}

.step-line {
  position: absolute;
  left: -20px;
  top: 55px;
  bottom: -45px;
  width: 2px;
  background: rgba(0, 229, 255, 0.2);
  z-index: 1;
}

.inner-step:last-child .step-line {
  display: none;
}

/* Show line for Etap 4 only when active */
.inner-step.timeline-accordion-item.active:last-child .step-line {
  display: block;
  bottom: 0;
}

.step-header-wrap {
  display: flex;
  justify-content: flex-start;
  /* Changed from space-between */
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
  /* Adjust gap to bring badge closer */
  flex-wrap: wrap;
}

.inner-step h4 {
  font-size: 19px;
  margin: 0;
  color: var(--white);
}

.step-badge-human-ai {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cyan);
}

/* Distinct Colors for each stage */
.step-badge-human-ai.badge-c1 {
  /* 80% Human -> Maybe greenish/teal or light cyan */
  color: #00E676;
  /* Green Accent */
  border-color: rgba(0, 230, 118, 0.3);
  background: rgba(0, 230, 118, 0.1);
}

.step-badge-human-ai.badge-c2 {
  /* 50/50 -> Blue */
  color: #2979FF;
  /* Blue Accent */
  border-color: rgba(41, 121, 255, 0.3);
  background: rgba(41, 121, 255, 0.1);
}

.step-badge-human-ai.badge-c3 {
  /* 70% AI -> Violet */
  color: #D500F9;
  /* Purple Accent */
  border-color: rgba(213, 0, 249, 0.3);
  background: rgba(213, 0, 249, 0.1);
}

.step-badge-human-ai.badge-c4 {
  /* 80% AI -> Pink/Magenta or Deep Cyan */
  color: #FF4081;
  /* Pink Accent */
  border-color: rgba(255, 64, 129, 0.3);
  background: rgba(255, 64, 129, 0.1);
}

.checkmark-list.small li {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Bottom Banners */
.methodology-info-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 50px;
}

.info-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.methodology-info-banner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
}

.methodology-final-gradient {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
  border: 1px solid var(--cyan);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.methodology-final-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--cyan);
}

.methodology-final-gradient p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {

  .methodology-banner,
  .full-service-header-banner {
    padding: 30px 20px;
  }

  .step-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Section 7: Detailed Offer */
.detailed-offer .header-intro {
  max-width: 800px;
  margin: 20px auto 60px;
  line-height: 1.6;
  color: var(--body-text);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  /* Increased gap for better spacing in 2x2 */
}

.offer-col {
  background: rgba(10, 25, 47, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.offer-col:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
  background: rgba(10, 25, 47, 0.8);
}

.offer-icon {
  font-size: 32px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.offer-col h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--white);
}

.offer-subtitle {
  font-size: 15px;
  color: var(--cyan);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.offer-italic {
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.offer-desc {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.checkmark-list.small li {
  font-size: 13px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.checkmark-list.small li::before {
  top: 2px;
  font-size: 14px;
}

.checkmark-list.small strong {
  color: var(--white);
}

/* Comparison Box */
.comparison-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
  margin-top: auto;
  /* Push to bottom */
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
}

.comp-row {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.comp-row strong {
  color: var(--white);
}

.comp-result {
  color: var(--cyan);
  font-weight: 700;
  margin-top: 8px;
}

/* Price Box */
.price-box {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-top: auto;
  font-size: 13px;
}

.price-box p {
  margin-bottom: 8px;
  color: var(--white);
}

.price-box p:last-child {
  margin-bottom: 0;
}

/* Section 8: Adoption Verification System */
.adoption-system {
  background: linear-gradient(to bottom, #02060c 0%, #0a192f 100%);
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.adoption-container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.big-intro {
  font-size: 20px;
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 40px;
}

.big-intro strong {
  color: #FF5252;
  /* Red accent for "people don't use it" */
}

.adoption-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.adoption-col h3 {
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Column: Checklist */
.adoption-list {
  list-style: none;
  padding: 0;
}

.adoption-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.adoption-list .check-icon {
  font-size: 24px;
  color: #00E676;
  background: rgba(0, 230, 118, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
  /* Override generic .check-icon centered margin */
}

.list-content strong {
  display: block;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.list-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Right Column: Quote Box */
.quote-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--cyan);
  padding: 32px;
  border-radius: 0 16px 16px 0;
  margin-bottom: 32px;
}

.quote-box blockquote {
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.adoption-text p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.adoption-text strong {
  color: var(--white);
}

/* Bio Link Visibility */
.about-content p a {
  color: var(--cyan);
  text-decoration: underline;
  font-weight: 500;
  transition: 0.3s;
}

.about-content p a:hover {
  color: var(--white);
}

/* Section 9: Implementation Timeline */
.implementation-timeline {
  background: #0a192f;
  padding: 100px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

/* Connecting Line (Desktop) */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(0, 229, 255, 0) 0%,
      rgba(0, 229, 255, 0.5) 50%,
      rgba(0, 229, 255, 0) 100%);
  z-index: 1;
}

.timeline-item {
  flex: 1;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  /* Space for the badge/line */
}

.timeline-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #0a192f;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  z-index: 3;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
}

.timeline-content h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.5;
  padding-left: 0;
}

/* Section 10: Case Studies (Hidden) */
.case-studies {
  background: linear-gradient(to bottom, #000000, #0a192f);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.case-card {
  background: rgba(10, 25, 47, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.2);
}

.case-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}

.case-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 50px;
  /* Align titles */
}

.case-context {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 24px;
}

.case-block {
  margin-bottom: 20px;
}

.case-block h4 {
  font-size: 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.case-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.metr.inner-step {
  position: relative;
  padding: 30px;
  border-radius: 12px;
  background: rgba(10, 25, 47, 0.4);
  /* Darker initial bg */
  transition: all 0.3s ease;
}

/* Accordion Logic */
.inner-step.timeline-accordion-item {
  cursor: default;
}

.inner-step.timeline-accordion-item .step-header-wrap {
  cursor: pointer;
  margin-bottom: 0;
  /* Remove margin when collapsed */
  transition: margin-bottom 0.3s ease;
}

.inner-step.timeline-accordion-item.active .step-header-wrap {
  margin-bottom: 20px;
  /* Restore margin when active */
}

/* Collapsed State */
.timeline-accordion-item .checkmark-list.small {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
  margin-top: 0;
}

/* Expanded State */
.inner-step.timeline-accordion-item.active .checkmark-list.small {
  max-height: 1000px;
  /* Arbitrary large height */
  opacity: 1;
  margin-top: 15px;
}

/* Mobile Fixes */
@media (max-width: 768px) {

  /* Fix Cyan line height on mobile */
  .full-service-header-banner::before {
    height: 100%;
    /* Responsive height */
  }

  /* Force single line for header wrapper but allow text wrapping if needed */
  /* Force single line for header wrapper but allow text wrapping if needed */
  .step-header-wrap {
    display: flex !important;
    flex-direction: column !important;
    /* Stack vertically: Header top, Badge bottom */
    align-items: flex-start !important;
    /* Left align */
    gap: 8px !important;
    white-space: normal !important;
  }

  /* Adjust header text to wrap instead of disappearing */
  .inner-step h4 {
    font-size: 14px !important;
    /* Slightly larger to be readable */
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    flex: 1;
    /* Take available space */
    white-space: normal !important;
    /* Allow wrap */
    word-break: break-word;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  .step-badge-human-ai {
    font-size: 9px !important;
    padding: 3px 8px !important;
    margin: 0 !important;
    width: auto !important;
    display: inline-block !important;
    white-space: nowrap !important;
    /* Badge itself shouldn't wrap internal text */
    flex-shrink: 0 !important;
  }

  .inner-step {
    padding: 15px !important;
  }

  /* Info Banner Fix: Icon above text on mobile */
  .methodology-info-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .info-icon {
    font-size: 32px;
  }
}

.metric-box {
  text-align: center;
  padding: 12px 4px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.metric-box.green {
  border-bottom: 2px solid #00E676;
}

.metric-box.cyan {
  border-bottom: 2px solid var(--cyan);
}

.metric-box.orange {
  border-bottom: 2px solid #FF9100;
}

.metric-val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.metric-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}

/* Helper class to hide section */
.hidden {
  display: none !important;
}

/* Section 11: Philosophy */
.philosophy {
  padding: 100px 0;
  position: relative;
}

.philosophy-box {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  background: rgba(10, 25, 47, 0.9);
  border: 1px solid var(--cyan);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.philosophy-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), #0a192f);
}

.large-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.philosophy-header h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 50px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.philosophy-col h3 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cross-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cross-list li,
.check-list li {
  font-size: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 12px;
}

.philosophy-quote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-quote blockquote {
  font-size: 24px;
  font-style: italic;
  color: var(--cyan);
  margin-bottom: 24px;
  line-height: 1.4;
}

.philosophy-footer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Section 12: About Us */
.about-us {
  background: #060f1d;
  /* Very deep navy */
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  /* ~65% / 35% */
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--white);
}

.founder-intro {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display: block;
}

.about-content p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlight {
  font-style: italic;
  color: var(--cyan) !important;
  font-size: 18px !important;
  border-left: 3px solid var(--cyan);
  padding-left: 20px;
  margin: 30px 0;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
}

.stat-box.cyan {
  border-bottom: 3px solid var(--cyan);
}

.stat-box.orange {
  border-bottom: 3px solid #ff9100;
}

.stat-box.green {
  border-bottom: 3px solid #00e676;
}

.stat-val {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  display: block;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.02);
}

/* Section 13: FAQ */
.faq-section {
  background: linear-gradient(to bottom, #0a192f, #020c1b);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--white);
  margin: 0;
  padding-right: 20px;
  font-weight: 600;
}

.faq-icon {
  font-size: 24px;
  color: var(--cyan);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-answer p,
.faq-answer ul {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-answer ul {
  list-style: none;
  padding-left: 0;
}

.faq-answer li {
  margin-bottom: 8px;
}

/* Active State */
.faq-item.active {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.05);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-item.active .faq-question h3 {
  color: var(--cyan);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .collaboration-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.4s ease-in-out;
    z-index: 999;
    border-left: 1px solid rgba(0, 229, 255, 0.2);
  }

  .menu.active {
    right: 0;
  }

  .menu a {
    font-size: 24px;
    font-weight: 700;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
  }

  .mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cyan);
    transition: 0.3s;
    box-shadow: 0 0 10px var(--glow-cyan);
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-right .phone,
  .nav-right .btn-secondary {
    display: none;
  }

  .hero-grid,
  .question-grid,
  .problem-grid,
  .services-grid,
  .offer-grid,
  .adoption-grid,
  .case-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .qualification {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .question-card {
    padding: 32px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .video-placeholder {
    width: 100%;
  }

  .hero {
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-target {
    margin: 0 auto 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-grid {
    flex-direction: column;
    gap: 40px;
  }

  /* Timeline Mobile */
  .timeline-container {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-container::before {
    display: none;
    /* Hide horizontal line on mobile */
  }

  .timeline-item {
    padding-top: 0;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 229, 255, 0.3);
  }

  .timeline-badge {
    position: relative;
    top: -10px;
    left: 0;
    transform: none;
    display: inline-block;
    margin-bottom: 10px;
  }

  /* Fix for Philosophy header "Nie wdrażamy..." on small screens */
  .philosophy-header h2 {
    font-size: 22px;
    /* Reduced from default */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 10px;
    /* Ensure no edge cutoff */
  }

  /* Fix for Footer text disappearing/cutting off */
  .footer-col a,
  .footer-bottom,
  .footer-legal,
  .footer-legal a,
  .footer-desc {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    height: auto !important;
    max-width: 100%;
  }

  /* Fix Philosophy text cutoff on mobile */
  .philosophy-grid li,
  .list-text,
  .philosophy-quote blockquote,
  .philosophy-footer {
    white-space: normal !important;
    word-wrap: break-word !important;
    flex: 1;
    /* Allow text to take available space */
  }

  /* Stack check-list items (Icon top, Text bottom) on mobile */
  .check-list li {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  /* Constrain Hero Image on Mobile */
  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .hero-image img {
    max-width: 400px !important;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .footer-legal {
    /* Stack links if needed or break them */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    line-height: 1.5;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-box {
    padding: 30px;
  }

  /* About Us Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .about-image {
    order: -1;
    /* Image first on mobile? Or keep text first? Let's keep text first as typically preferred for About Us unless it's a personal brand intro... allow normal flow */
    margin-bottom: 30px;
  }

  /* Fix for founder image becoming too large on tablet/mobile */
  .about-image .image-wrapper {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    /* Ensure centering */
  }
}

@media (min-width: 993px) {
  .mobile-toggle {
    display: none;
  }
}

/* =========================================
   Cookie Banner
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-wrapper {
  background: #0a101b;
  /* Deep navy matching footer/modals */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 20px;
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-icon-box {
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-icon {
  font-size: 24px;
}

.cookie-content {
  flex: 1;
}

.cookie-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-content p {
  font-size: 14px;
  color: var(--body-text);
  margin: 0;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--cyan);
  text-decoration: none;
  transition: 0.3s;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-cookie-primary {
  background: var(--cyan);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-primary:hover {
  background: #00cce0;
  /* Slightly darker cyan */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-icon-box {
    display: none;
    /* Hide icon on mobile to save space */
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .btn-cookie-outline,
  .btn-cookie-primary {
    flex: 1;
    text-align: center;
    padding: 12px;
  }
}

/* Visual Proof Section */
.visual-proof {
  padding: 100px 0;
  background: var(--dark-bg);
}

.proof-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.proof-item {
  width: 90%;
  max-width: 900px;
  padding: 40px;
  background: rgba(10, 25, 47, 0.9);
  border: 1px solid var(--cyan);
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.proof-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), #0a192f);
}

.proof-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.proof-img-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-caption {
  margin-top: 30px;
  text-align: center;
}

.proof-caption p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Response handling */
@media (max-width: 768px) {
  .visual-proof {
    padding: 60px 0;
  }

  .proof-caption p {
    font-size: 16px;
  }
}

/* --- THE DEAL SECTION --- */
.the-deal {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.05) 0%, var(--dark-bg) 70%);
}

.offer-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.offer-header {
  margin-bottom: 40px;
}

.offer-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-anchor {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border-left: 4px solid #FF5252;
}

.standard-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}

.offer-urgency {
  margin-top: 10px;
  color: #FF5252;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}

.offer-checklist {
  list-style: none;
  padding: 0;
  text-align: left;
}

.offer-checklist li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.offer-checklist li span {
  color: var(--cyan);
  font-weight: bold;
}

/* Pricing Section */
.pricing-display {
  text-align: center;
  padding: 30px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px dashed rgba(0, 229, 255, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-price {
  font-size: 64px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 10px;
}

.price-suffix {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.maintenance-breakdown {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.maintenance-breakdown h4 {
  color: var(--orange);
  margin-bottom: 20px;
  font-size: 20px;
}

.cost-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cost-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 15px;
  border-radius: 12px;
}

.cost-item strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.cost-item p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.offer-cta {
  margin-top: 50px;
}

.btn-xl {
  padding: 25px 60px;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-xl:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
}

@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 30px 20px;
  }

  .final-price {
    font-size: 48px;
  }

  .cost-items {
    grid-template-columns: 1fr;
  }

  .btn-xl {
    padding: 20px 30px;
    font-size: 18px;
    width: 100%;
  }

  .analytics-h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
}

/* Image Lightbox Styles */
.proof-img-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.proof-img-container img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  width: 100%;
}

.proof-img-container:hover img {
  transform: scale(1.05);
}

.zoom-hint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.zoom-hint span {
  background: var(--cyan);
  color: var(--dark-bg);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.proof-img-container:hover .zoom-hint {
  opacity: 1;
}

.proof-img-container:hover .zoom-hint span {
  transform: translateY(0);
}

/* Modal Overlay */
.img-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.img-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-modal-overlay.active .img-modal-content {
  transform: scale(1);
}

.img-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.2);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.img-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.img-modal-close:hover {
  color: var(--cyan);
}

@media (max-width: 768px) {
  .img-modal-content {
    max-width: 100%;
  }

  .img-modal-close {
    top: -40px;
    right: 10px;
  }
}