/*
Theme Name: 14dagar
Theme URI: https://14dagar.se
Author: 14dagar Team
Author URI: https://14dagar.se
Description: Ett modernt WordPress-tema för 14dagar landningssida med futuristisk design och neoneffekter
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fjortondagar
Tags: business, landing-page, one-page, modern, responsive
*/

/* CSS Variables - Design System */
:root {
  /* Dark Futuristic Neon System */
  --background: hsl(210, 60%, 8%); /* Dark Blue #051A30 */
  --foreground: hsl(0, 0%, 98%); /* Near White */
  
  --neon-blue: hsl(192, 100%, 50%); /* Electric Blue #00C8FF */
  --neon-blue-foreground: hsl(210, 60%, 8%);
  
  --neon-cyan: hsl(176, 100%, 41%); /* Cyan #00D1C1 */
  --neon-cyan-foreground: hsl(210, 60%, 8%);
  
  --neon-violet: hsl(238, 82%, 62%); /* Violet #5D65EC */
  --neon-violet-foreground: hsl(0, 0%, 98%);
  
  --silver-gray: hsl(225, 8%, 68%); /* #A3A8B5 */
  --silver-gray-foreground: hsl(210, 60%, 8%);
  
  --graphite: hsl(215, 26%, 25%); /* #2C3E55 */
  --graphite-foreground: hsl(0, 0%, 98%);
  
  --dark-gradient-start: hsl(210, 60%, 8%); /* #051A30 */
  --dark-gradient-end: hsl(214, 44%, 19%); /* #112F50 */
  
  --primary: hsl(192, 100%, 50%); /* Neon Blue */
  --primary-foreground: hsl(210, 60%, 8%);
  
  --secondary: hsl(238, 82%, 62%); /* Neon Violet */
  --secondary-foreground: hsl(0, 0%, 98%);
  
  --accent: hsl(176, 100%, 41%); /* Neon Cyan */
  --accent-foreground: hsl(210, 60%, 8%);
  
  --muted: hsl(215, 26%, 25%);
  --muted-foreground: hsl(225, 8%, 68%);
  
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 98%);
  
  --border: hsl(215, 26%, 30%);
  --input: hsl(215, 26%, 25%);
  --ring: hsl(192, 100%, 50%);
  
  --radius: 0.75rem;
  
  /* Neon Glow Shadows */
  --shadow-neon-blue: 0 0 20px hsla(192, 100%, 50%, 0.5), 0 0 40px hsla(192, 100%, 50%, 0.3);
  --shadow-neon-cyan: 0 0 20px hsla(176, 100%, 41%, 0.5), 0 0 40px hsla(176, 100%, 41%, 0.3);
  --shadow-neon-violet: 0 0 20px hsla(238, 82%, 62%, 0.5), 0 0 40px hsla(238, 82%, 62%, 0.3);
  --shadow-card: 0 8px 32px hsla(210, 60%, 8%, 0.4);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-glow: all 0.4s ease;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, var(--dark-gradient-start) 0%, var(--dark-gradient-end) 100%);
  color: var(--foreground);
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--neon-cyan);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-neon-blue);
}

.btn-primary:hover {
  background: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-cyan);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--neon-violet);
}

.btn-outline:hover {
  background: hsla(238, 82%, 62%, 0.1);
  border-color: var(--neon-violet);
}

.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.btn-xl {
  padding: 2rem 4rem;
  font-size: 1.5rem;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--input);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(192, 100%, 50%, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Card Styles */
.neon-card {
  background: linear-gradient(135deg, hsla(215, 26%, 25%, 0.6) 0%, hsla(215, 26%, 25%, 0.3) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(192, 100%, 50%, 0.2);
  box-shadow: var(--shadow-card);
  transition: var(--transition-glow);
  border-radius: 1.5rem;
}

.neon-card:hover {
  border-color: hsla(192, 100%, 50%, 0.6);
  box-shadow: var(--shadow-neon-blue), var(--shadow-card);
  transform: translateY(-4px);
}

.glass-card {
  background: linear-gradient(135deg, hsla(215, 26%, 25%, 0.85) 0%, hsla(215, 26%, 25%, 0.75) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid hsla(192, 100%, 50%, 0.2);
  transition: var(--transition-smooth);
  border-radius: 1rem;
}

.creative-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
  border: 1px solid hsla(192, 100%, 50%, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 1.5rem;
  transition: var(--transition-smooth);
}

.retro-card {
  background: rgba(255,255,255,0.9);
  border: 2px solid #D1D9E0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-neon {
  background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-cyan) 50%, var(--neon-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dark Overlay Box */
.dark-overlay {
  background: linear-gradient(135deg, hsla(215, 26%, 25%, 0.9) 0%, hsla(215, 26%, 25%, 0.8) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(176, 100%, 41%, 0.3);
}

/* Text Contrast Box */
.text-contrast-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 30px hsla(220, 100%, 65%, 0.3);
  }
  50% {
    box-shadow: 0 0 50px hsla(220, 100%, 65%, 0.5);
  }
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 20px hsla(192, 100%, 50%, 0.4), 0 0 40px hsla(192, 100%, 50%, 0.2);
  }
  50% {
    box-shadow: 0 0 30px hsla(192, 100%, 50%, 0.8), 0 0 60px hsla(192, 100%, 50%, 0.4);
  }
}

@keyframes particlesFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.6;
  }
}

@keyframes floatShapes {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-neon-pulse {
  animation: neonPulse 3s ease-in-out infinite;
}

.animate-particles {
  animation: particlesFloat 8s ease-in-out infinite;
}

.animate-float-shapes {
  animation: floatShapes 20s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: neonPulse 2s ease-in-out infinite;
}

/* Pattern Background */
.pattern-bg {
  position: relative;
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(0deg, transparent 24%, hsla(192, 100%, 50%, 0.03) 25%, hsla(192, 100%, 50%, 0.03) 26%, transparent 27%, transparent 74%, hsla(192, 100%, 50%, 0.03) 75%, hsla(192, 100%, 50%, 0.03) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, hsla(176, 100%, 41%, 0.03) 25%, hsla(176, 100%, 41%, 0.03) 26%, transparent 27%, transparent 74%, hsla(176, 100%, 41%, 0.03) 75%, hsla(176, 100%, 41%, 0.03) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Scan Line Effect */
.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  animation: scanLine 8s linear infinite;
  opacity: 0.3;
  pointer-events: none;
}

/* Utility Classes */
.text-deep-accent {
  color: #1F2937;
}

.text-deep-accent-foreground {
  color: hsl(0, 0%, 98%);
}

.bg-deep-accent {
  background: #1F2937;
}

.bg-deep-accent-foreground {
  background: hsl(0, 0%, 98%);
}

/* Responsive */
@media (max-width: 1024px) {
  .btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

/* ============================================
   BENEFITS SECTION STYLES
   ============================================ */
.benefits-section {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
}

.blob-1 {
    top: 2.5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: hsla(192, 100%, 50%, 0.05);
}

.blob-2 {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: hsla(176, 100%, 41%, 0.05);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 0.75rem;
}

.section-title-box {
    padding: 2rem 2rem;
    border-radius: 1.5rem;
}

.section-title-box h2 {
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.125rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    max-width: 40rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.benefit-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.375rem;
}

.benefit-content {
    padding: 2rem;
}

.benefit-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(3deg);
}

.benefit-icon svg {
    color: white;
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 900;
    font-family: 'Raleway', sans-serif;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.benefit-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    color: rgba(31, 41, 55, 0.6);
    margin: 0;
}

.benefit-description {
    color: rgba(31, 41, 55, 0.8);
    line-height: 1.7;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin: 0;
}

.benefit-hover-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.benefit-card:hover .benefit-hover-gradient {
    opacity: 0.05;
}

.benefits-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.benefits-cta p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0 4rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .benefits-cta {
        margin-top: 3rem;
    }
}

/* ============================================
   QUICK LEAD FORM STYLES
   ============================================ */
.quick-lead-section {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, hsla(192, 100%, 50%, 0.05), var(--background), hsla(176, 100%, 41%, 0.05));
}

.quick-lead-container {
    max-width: 48rem;
}

.quick-lead-card {
    padding: 3rem 2rem;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2);
}

.quick-lead-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quick-lead-header h2 {
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.quick-lead-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.quick-lead-form {
    max-width: 36rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input-lg,
.form-select-lg {
    height: 4rem;
    font-size: 1.125rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.form-input-lg:focus,
.form-select-lg:focus {
    border-color: var(--neon-cyan);
}

.form-submit-btn {
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 200, 255, 0.5);
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    box-shadow: 0 12px 32px rgba(0, 209, 193, 0.5);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.form-error {
    display: none;
    color: var(--destructive);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-error.active {
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .quick-lead-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-lead-header h2 {
        font-size: 2rem;
    }
    
    .form-input-lg,
    .form-select-lg {
        height: 3.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   ALL REMAINING SECTION STYLES (PATHS, PROCESS, CALCULATOR, TESTIMONIALS, PRICING, FAQ, CONTACT, STICKY CTA)
   These need to be added inline for the theme to work properly
   ============================================ */

.wave-pattern {
    position: relative;
}

.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: inline;
    }
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

