/* ========================================
   OTOMASYON SİSTEMLERİ - PAGE STYLES
   Modern, minimal, impact-focused design
   ======================================== */

:root {
   --auto-dark: #0f172a;
   --auto-gray: #64748b;
   --auto-light: #f8fafc;
   --auto-primary: #2563eb;
   --auto-secondary: #0ea5e9;
   --auto-gradient: linear-gradient(135deg, #2563eb, #0ea5e9);
   --auto-success: #10b981;
   --auto-danger: #ef4444;
}

/* ========================================
   01. HERO SECTION - TWO COLUMN
   ======================================== */
.auto-hero {
   min-height: 85vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
   background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
   padding: 100px 0 60px;
}

/* Hero Content - Left Aligned */
.auto-hero-content {
   text-align: left;
}

/* Hero Badge */
.hero-badge {
   display: inline-block;
   padding: 10px 20px;
   background: rgba(37, 99, 235, 0.1);
   color: var(--auto-primary);
   border-radius: 50px;
   font-size: 0.9rem;
   font-weight: 600;
   margin-bottom: 25px;
   border: 1px solid rgba(37, 99, 235, 0.2);
}

.auto-hero-title {
   font-size: 3.2rem;
   font-weight: 800;
   color: var(--auto-dark);
   margin-bottom: 25px;
   line-height: 1.2;
   letter-spacing: -1px;
}

/* Gradient Text Effect with Shimmer */
.gradient-text {
   background: linear-gradient(90deg,
         #2563eb 0%,
         #0ea5e9 25%,
         #2563eb 50%,
         #0ea5e9 75%,
         #2563eb 100%);
   background-size: 200% auto;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
   0% {
      background-position: 200% center;
   }

   100% {
      background-position: -200% center;
   }
}

.auto-hero-desc {
   font-size: 1.2rem;
   color: var(--auto-gray);
   margin-bottom: 20px;
   line-height: 1.7;
}

.auto-hero-tagline {
   font-size: 0.95rem;
   color: var(--auto-primary);
   font-weight: 600;
   margin-bottom: 35px;
}

.auto-hero-buttons {
   display: flex;
   gap: 15px;
   flex-wrap: wrap;
}

/* ========================================
   AUTOMATION VISUAL - ADVANCED ANIMATION
   Smooth, GPU-accelerated, 300+ lines
   ======================================== */

.automation-visual {
   position: relative;
   width: 100%;
   height: 500px;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* ========================================
   ORBITAL RINGS - Background Decoration
   ======================================== */
.automation-visual::before,
.automation-visual::after {
   content: '';
   position: absolute;
   border-radius: 50%;
   border: 1px dashed rgba(37, 99, 235, 0.15);
   animation: orbitSpin 60s linear infinite;
   pointer-events: none;
}

.automation-visual::before {
   width: 320px;
   height: 320px;
}

.automation-visual::after {
   width: 420px;
   height: 420px;
   animation-duration: 90s;
   animation-direction: reverse;
}

@keyframes orbitSpin {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
}

/* ========================================
   CENTER HUB - Main Processing Unit
   ======================================== */
.auto-hub {
   position: absolute;
   width: 110px;
   height: 110px;
   background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #2563eb 100%);
   background-size: 200% 200%;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10;
   box-shadow:
      0 0 0 8px rgba(37, 99, 235, 0.1),
      0 0 0 16px rgba(37, 99, 235, 0.05),
      0 10px 40px rgba(37, 99, 235, 0.3),
      inset 0 -5px 20px rgba(0, 0, 0, 0.1);
   animation:
      hubBreath 4s ease-in-out infinite,
      hubGradient 8s ease-in-out infinite;
}

.auto-hub::before {
   content: '';
   position: absolute;
   width: 130px;
   height: 130px;
   border-radius: 50%;
   border: 2px solid transparent;
   border-top-color: rgba(37, 99, 235, 0.4);
   border-right-color: rgba(14, 165, 233, 0.2);
   animation: hubRingRotate 3s linear infinite;
}

.auto-hub::after {
   content: '';
   position: absolute;
   width: 150px;
   height: 150px;
   border-radius: 50%;
   border: 1px solid transparent;
   border-bottom-color: rgba(37, 99, 235, 0.2);
   animation: hubRingRotate 5s linear infinite reverse;
}

.auto-hub i {
   font-size: 2.8rem;
   color: #fff;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
   animation: iconFloat 3s ease-in-out infinite;
   position: relative;
   z-index: 2;
}

@keyframes hubBreath {

   0%,
   100% {
      transform: scale(1);
      box-shadow:
         0 0 0 8px rgba(37, 99, 235, 0.1),
         0 0 0 16px rgba(37, 99, 235, 0.05),
         0 10px 40px rgba(37, 99, 235, 0.3),
         inset 0 -5px 20px rgba(0, 0, 0, 0.1);
   }

   50% {
      transform: scale(1.05);
      box-shadow:
         0 0 0 12px rgba(37, 99, 235, 0.15),
         0 0 0 24px rgba(37, 99, 235, 0.08),
         0 15px 60px rgba(37, 99, 235, 0.4),
         inset 0 -5px 20px rgba(0, 0, 0, 0.1);
   }
}

@keyframes hubGradient {

   0%,
   100% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }
}

@keyframes hubRingRotate {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
}

@keyframes iconFloat {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-3px);
   }
}

/* ========================================
   CONNECTED NODES - Process Steps
   ======================================== */
.auto-node {
   position: absolute;
   width: 85px;
   height: 85px;
   background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
   border: 2px solid rgba(226, 232, 240, 0.8);
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 6px;
   z-index: 5;
   box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.04),
      0 1px 3px rgba(0, 0, 0, 0.06);
   animation: nodeFloat 6s ease-in-out infinite;
}

.auto-node::before {
   content: '';
   position: absolute;
   inset: -3px;
   border-radius: 22px;
   background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent, rgba(14, 165, 233, 0.1));
   z-index: -1;
   opacity: 0;
   animation: nodeGlow 4s ease-in-out infinite;
}

.auto-node i {
   font-size: 1.6rem;
   background: var(--auto-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.auto-node span {
   font-size: 0.72rem;
   font-weight: 600;
   color: var(--auto-gray);
   letter-spacing: 0.3px;
}

@keyframes nodeFloat {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-8px);
   }
}

@keyframes nodeGlow {

   0%,
   100% {
      opacity: 0;
   }

   50% {
      opacity: 1;
   }
}

/* Node Positions with Staggered Animation */
.node-pos-1 {
   top: 20px;
   left: 50%;
   margin-left: -42.5px;
   animation-delay: 0s;
}

.node-pos-2 {
   top: 50%;
   right: 10px;
   margin-top: -42.5px;
   animation-delay: -1.5s;
}

.node-pos-3 {
   bottom: 20px;
   left: 50%;
   margin-left: -42.5px;
   animation-delay: -3s;
}

.node-pos-4 {
   top: 50%;
   left: 10px;
   margin-top: -42.5px;
   animation-delay: -4.5s;
}

/* ========================================
   CONNECTION LINES - Data Pathways
   ======================================== */
.auto-line {
   position: absolute;
   z-index: 1;
   overflow: visible;
}

.line-1,
.line-3 {
   width: 3px;
   height: 85px;
   left: 50%;
   margin-left: -1.5px;
   background: linear-gradient(180deg,
         rgba(37, 99, 235, 0.05) 0%,
         rgba(37, 99, 235, 0.25) 50%,
         rgba(37, 99, 235, 0.05) 100%);
   animation: linePulseV 2s ease-in-out infinite;
}

.line-1 {
   top: 105px;
}

.line-3 {
   bottom: 105px;
   animation-delay: -1s;
}

.line-2,
.line-4 {
   width: 85px;
   height: 3px;
   top: 50%;
   margin-top: -1.5px;
   background: linear-gradient(90deg,
         rgba(37, 99, 235, 0.05) 0%,
         rgba(37, 99, 235, 0.25) 50%,
         rgba(37, 99, 235, 0.05) 100%);
   animation: linePulseH 2s ease-in-out infinite;
}

.line-2 {
   right: 95px;
   animation-delay: -0.5s;
}

.line-4 {
   left: 95px;
   animation-delay: -1.5s;
}

@keyframes linePulseV {

   0%,
   100% {
      background: linear-gradient(180deg,
            rgba(37, 99, 235, 0.05) 0%,
            rgba(37, 99, 235, 0.25) 50%,
            rgba(37, 99, 235, 0.05) 100%);
   }

   50% {
      background: linear-gradient(180deg,
            rgba(37, 99, 235, 0.15) 0%,
            rgba(37, 99, 235, 0.4) 50%,
            rgba(37, 99, 235, 0.15) 100%);
   }
}

@keyframes linePulseH {

   0%,
   100% {
      background: linear-gradient(90deg,
            rgba(37, 99, 235, 0.05) 0%,
            rgba(37, 99, 235, 0.25) 50%,
            rgba(37, 99, 235, 0.05) 100%);
   }

   50% {
      background: linear-gradient(90deg,
            rgba(37, 99, 235, 0.15) 0%,
            rgba(37, 99, 235, 0.4) 50%,
            rgba(37, 99, 235, 0.15) 100%);
   }
}

/* ========================================
   DATA PARTICLES - Flowing Data Points
   ======================================== */
.data-dot {
   position: absolute;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   z-index: 8;
   pointer-events: none;
}

.data-dot::before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   border-radius: 50%;
   background: var(--auto-gradient);
   box-shadow:
      0 0 8px rgba(37, 99, 235, 0.6),
      0 0 16px rgba(37, 99, 235, 0.4),
      0 0 24px rgba(37, 99, 235, 0.2);
   animation: dotPulse 1s ease-in-out infinite;
}

.data-dot::after {
   content: '';
   position: absolute;
   width: 20px;
   height: 20px;
   top: -5px;
   left: -5px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
   animation: dotAura 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

   0%,
   100% {
      transform: scale(1);
      opacity: 1;
   }

   50% {
      transform: scale(1.2);
      opacity: 0.8;
   }
}

@keyframes dotAura {

   0%,
   100% {
      transform: scale(1);
      opacity: 0.5;
   }

   50% {
      transform: scale(1.5);
      opacity: 0.2;
   }
}

/* Particle Flow Animations - Smooth Continuous */
.dot-1 {
   top: 105px;
   left: 50%;
   margin-left: -5px;
   animation: flowToCenter1 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.dot-2 {
   top: 50%;
   right: 95px;
   margin-top: -5px;
   animation: flowToCenter2 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
   animation-delay: -0.75s;
}

.dot-3 {
   bottom: 105px;
   left: 50%;
   margin-left: -5px;
   animation: flowToCenter3 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
   animation-delay: -1.5s;
}

.dot-4 {
   top: 50%;
   left: 95px;
   margin-top: -5px;
   animation: flowToCenter4 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
   animation-delay: -2.25s;
}

@keyframes flowToCenter1 {
   0% {
      top: 105px;
      opacity: 0;
      transform: scale(0.5);
   }

   10% {
      opacity: 1;
      transform: scale(1);
   }

   90% {
      opacity: 1;
      transform: scale(1);
   }

   100% {
      top: 195px;
      opacity: 0;
      transform: scale(0.5);
   }
}

@keyframes flowToCenter2 {
   0% {
      right: 95px;
      opacity: 0;
      transform: scale(0.5);
   }

   10% {
      opacity: 1;
      transform: scale(1);
   }

   90% {
      opacity: 1;
      transform: scale(1);
   }

   100% {
      right: 175px;
      opacity: 0;
      transform: scale(0.5);
   }
}

@keyframes flowToCenter3 {
   0% {
      bottom: 105px;
      opacity: 0;
      transform: scale(0.5);
   }

   10% {
      opacity: 1;
      transform: scale(1);
   }

   90% {
      opacity: 1;
      transform: scale(1);
   }

   100% {
      bottom: 195px;
      opacity: 0;
      transform: scale(0.5);
   }
}

@keyframes flowToCenter4 {
   0% {
      left: 95px;
      opacity: 0;
      transform: scale(0.5);
   }

   10% {
      opacity: 1;
      transform: scale(1);
   }

   90% {
      opacity: 1;
      transform: scale(1);
   }

   100% {
      left: 175px;
      opacity: 0;
      transform: scale(0.5);
   }
}

/* Old styles removed - see new styles above */

.btn-auto-primary {
   display: inline-flex;
   align-items: center;
   padding: 16px 32px;
   background: var(--auto-gradient);
   color: #fff;
   border-radius: 50px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-auto-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
   color: #fff;
}

.btn-auto-outline {
   display: inline-flex;
   align-items: center;
   padding: 16px 32px;
   background: #fff;
   color: var(--auto-primary);
   border: 1px solid #e2e8f0;
   border-radius: 50px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
}

.btn-auto-outline:hover {
   background: var(--auto-light);
   border-color: var(--auto-primary);
   color: var(--auto-primary);
}

/* ========================================
   02. PROBLEM SECTION
   ======================================== */
.auto-problem {
   padding: 120px 0;
   background: var(--auto-light);
}

.problem-chaos {
   margin-bottom: 40px;
}

.chaos-line {
   font-size: 1.5rem;
   color: var(--auto-gray);
   padding: 12px 20px;
   margin-bottom: 8px;
   background: rgba(0, 0, 0, 0.03);
   border-left: 3px solid var(--auto-danger);
   opacity: 0.7;
   transition: all 0.3s ease;
}

.chaos-line:hover {
   opacity: 1;
   transform: translateX(10px);
}

.problem-conclusion p {
   font-size: 1.5rem;
   color: var(--auto-dark);
   margin-bottom: 10px;
}

.problem-conclusion .highlight {
   font-size: 1.75rem;
   font-weight: 700;
   color: var(--auto-primary);
}

/* Flow Simplify Visual */
.flow-simplify {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 30px;
}

.flow-complex {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   justify-content: center;
}

.flow-complex span {
   width: 50px;
   height: 50px;
   background: rgba(239, 68, 68, 0.1);
   border: 2px dashed var(--auto-danger);
   border-radius: 8px;
   animation: chaosMove 2s ease-in-out infinite;
}

.flow-complex span:nth-child(2) {
   animation-delay: 0.2s;
}

.flow-complex span:nth-child(3) {
   animation-delay: 0.4s;
}

.flow-complex span:nth-child(4) {
   animation-delay: 0.6s;
}

.flow-complex span:nth-child(5) {
   animation-delay: 0.8s;
}

@keyframes chaosMove {

   0%,
   100% {
      transform: translate(0, 0) rotate(0deg);
   }

   25% {
      transform: translate(5px, -5px) rotate(5deg);
   }

   75% {
      transform: translate(-5px, 5px) rotate(-5deg);
   }
}

.flow-arrow {
   font-size: 2rem;
   color: var(--auto-primary);
   animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(10px);
   }
}

.flow-simple {
   display: flex;
   gap: 20px;
}

.flow-simple span {
   width: 80px;
   height: 80px;
   background: var(--auto-gradient);
   border-radius: 16px;
   box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

/* ========================================
   03. IMPACT SECTION
   ======================================== */
.auto-impact {
   padding: 120px 0;
   background: #fff;
}

.impact-card {
   padding: 50px 40px;
   border-radius: 20px;
   height: 100%;
}

.impact-card h3 {
   font-size: 1.5rem;
   font-weight: 700;
   margin-bottom: 30px;
}

.impact-card ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.impact-card li {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 15px 0;
   font-size: 1.1rem;
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-card li:last-child {
   border-bottom: none;
}

.impact-before {
   background: #fef2f2;
   border: 1px solid #fecaca;
}

.impact-before h3 {
   color: var(--auto-danger);
}

.impact-before li i {
   color: var(--auto-danger);
   font-size: 1.2rem;
}

.impact-after {
   background: #f0fdf4;
   border: 1px solid #bbf7d0;
}

.impact-after h3 {
   color: var(--auto-success);
}

.impact-after li i {
   color: var(--auto-success);
   font-size: 1.2rem;
}

.impact-tagline {
   text-align: center;
   margin-top: 60px;
}

.impact-tagline p {
   font-size: 1.5rem;
   color: var(--auto-gray);
   margin-bottom: 10px;
}

.impact-tagline .highlight {
   font-size: 2rem;
   font-weight: 800;
   color: var(--auto-dark);
}

/* ========================================
   04. SCENARIOS SECTION
   ======================================== */
.auto-scenarios {
   padding: 120px 0;
   background: var(--auto-light);
}

.auto-section-title {
   font-size: 2.5rem;
   font-weight: 800;
   color: var(--auto-dark);
   margin-bottom: 20px;
}

.scenario-card {
   background: #fff;
   border-radius: 20px;
   padding: 40px;
   border: 1px solid #e2e8f0;
   height: 100%;
   transition: all 0.3s ease;
}

.scenario-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.scenario-card h4 {
   font-size: 1.25rem;
   font-weight: 700;
   color: var(--auto-dark);
   margin-bottom: 25px;
}

.scenario-flow {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px;
}

.scenario-flow span {
   padding: 8px 16px;
   background: var(--auto-light);
   border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 500;
   color: var(--auto-dark);
   border: 1px solid #e2e8f0;
}

.scenario-flow i {
   color: var(--auto-primary);
   font-size: 0.8rem;
}

.scenario-note {
   text-align: center;
   margin-top: 40px;
   font-size: 1rem;
   color: var(--auto-gray);
   font-style: italic;
}

/* ========================================
   05. PROCESS TIMELINE - ENHANCED
   ======================================== */
.auto-process {
   padding: 120px 0;
   background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
   overflow: hidden;
}

.process-badge {
   display: inline-block;
   padding: 8px 20px;
   background: rgba(37, 99, 235, 0.1);
   color: var(--auto-primary);
   border-radius: 50px;
   font-size: 0.85rem;
   font-weight: 600;
   margin-bottom: 20px;
   letter-spacing: 0.5px;
}

.process-subtitle {
   color: var(--auto-gray);
   font-size: 1.1rem;
   margin-top: 15px;
}

/* Horizontal Timeline Container */
.h-timeline {
   position: relative;
   margin: 60px 0 80px;
   padding: 20px 0;
}

/* Timeline lines hidden for cleaner look */
.h-timeline-line,
.h-timeline-progress {
   display: none;
}

/* Steps Container */
.h-timeline-steps {
   display: flex;
   justify-content: space-between;
   position: relative;
   z-index: 2;
}

/* Individual Step */
.h-step {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   position: relative;
   padding: 0 10px;
}

/* Step Number */
.h-step-number {
   font-size: 0.75rem;
   font-weight: 700;
   color: var(--auto-primary);
   margin-bottom: 10px;
   letter-spacing: 1px;
}

/* Step Icon */
.h-step-icon {
   width: 70px;
   height: 70px;
   background: #fff;
   border: 3px solid var(--auto-primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 25px;
   position: relative;
   z-index: 3;
   box-shadow:
      0 4px 20px rgba(37, 99, 235, 0.15),
      0 0 0 8px rgba(37, 99, 235, 0.05);
   transition: all 0.4s ease;
}

.h-step-icon i {
   font-size: 1.5rem;
   background: var(--auto-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   transition: all 0.3s ease;
}

/* Animations removed for cleaner look */

/* Step Content */
.h-step-content {
   max-width: 180px;
}

.h-step-content h4 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--auto-dark);
   margin-bottom: 10px;
   line-height: 1.3;
}

.h-step-content p {
   font-size: 0.85rem;
   color: var(--auto-gray);
   line-height: 1.5;
   margin: 0;
}

/* Connection Dot */
.h-step-dot {
   display: none;
}

/* Process Footer Stats */
.process-footer {
   display: flex;
   justify-content: center;
   gap: 60px;
   padding-top: 40px;
   border-top: 1px solid #e2e8f0;
   margin-top: 40px;
}

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

.stat-number {
   display: block;
   font-size: 2rem;
   font-weight: 800;
   background: var(--auto-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 5px;
}

.stat-label {
   font-size: 0.9rem;
   color: var(--auto-gray);
}

/* ========================================
   RESPONSIVE - PROCESS SECTION
   ======================================== */
@media (max-width: 992px) {
   .h-timeline-steps {
      flex-wrap: wrap;
      gap: 40px;
   }

   .h-step {
      flex: 0 0 calc(50% - 20px);
   }

   .h-timeline-line,
   .h-timeline-progress {
      display: none;
   }

   .process-footer {
      flex-wrap: wrap;
      gap: 30px;
   }
}

@media (max-width: 576px) {
   .h-step {
      flex: 0 0 100%;
   }

   .h-step-icon {
      width: 60px;
      height: 60px;
   }

   .h-step-icon i {
      font-size: 1.3rem;
   }

   .process-footer {
      gap: 20px;
   }

   .stat-number {
      font-size: 1.5rem;
   }
}

/* ========================================
   06. AUDIENCE SECTION
   ======================================== */
.auto-audience {
   padding: 120px 0;
   background: var(--auto-light);
}

.audience-card {
   padding: 50px 40px;
   border-radius: 20px;
   height: 100%;
}

.audience-card h3 {
   font-size: 1.5rem;
   font-weight: 700;
   margin-bottom: 30px;
   display: flex;
   align-items: center;
}

.audience-card ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.audience-card li {
   padding: 15px 0;
   font-size: 1.1rem;
   color: var(--auto-dark);
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
   padding-left: 25px;
   position: relative;
}

.audience-card li::before {
   content: '•';
   position: absolute;
   left: 0;
   font-weight: bold;
}

.audience-fit {
   background: #f0fdf4;
   border: 1px solid #bbf7d0;
}

.audience-fit h3 {
   color: var(--auto-success);
}

.audience-fit li::before {
   color: var(--auto-success);
}

.audience-not {
   background: #fef2f2;
   border: 1px solid #fecaca;
}

.audience-not h3 {
   color: var(--auto-danger);
}

.audience-not li::before {
   color: var(--auto-danger);
}

/* ========================================
   07. FINAL CTA
   ======================================== */
.auto-cta {
   padding: 150px 0;
   background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.auto-cta-content {
   text-align: center;
   max-width: 700px;
   margin: 0 auto;
}

.auto-cta-content h2 {
   font-size: 3rem;
   font-weight: 800;
   color: var(--auto-dark);
   margin-bottom: 25px;
   letter-spacing: -1px;
}

.auto-cta-content p {
   font-size: 1.25rem;
   color: var(--auto-gray);
   margin-bottom: 40px;
   line-height: 1.8;
}

.auto-cta-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
   .auto-hero-title {
      font-size: 2.5rem;
   }

   .auto-hero-desc {
      font-size: 1.1rem;
   }

   .chaos-line {
      font-size: 1.2rem;
   }

   .auto-section-title {
      font-size: 2rem;
   }

   .auto-cta-content h2 {
      font-size: 2rem;
   }
}

@media (max-width: 768px) {
   .auto-hero {
      min-height: auto;
      padding: 100px 0 60px;
   }

   .auto-hero-title {
      font-size: 2rem;
   }

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

   .btn-auto-primary,
   .btn-auto-outline {
      width: 100%;
      justify-content: center;
   }

   .scenario-flow {
      gap: 8px;
   }

   .scenario-flow span {
      font-size: 0.75rem;
      padding: 6px 12px;
   }

   .process-timeline::before {
      left: 20px;
   }

   .timeline-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      font-size: 1rem;
   }

   .auto-cta {
      padding: 80px 0;
   }
}