/* ===================================
   WORKIO MARKETING WEBSITE STYLES
   Built for IONOS static hosting
   =================================== */

/* ===================================
   CSS CUSTOM PROPERTIES (BRAND)
   =================================== */
:root {
  /* Colors */
  --workio-blue: #1F3A5F;
  --soft-teal: #4FD1C5;
  --slate: #2D3748;
  --light-grey: #F4F6F8;
  --white: #FFFFFF;
  --border-grey: #E2E8F0;
  --text-muted: #718096;

  /* Typography */
  --font-base: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(31, 58, 95, 0.08);
  --shadow-md: 0 4px 12px rgba(31, 58, 95, 0.1);
  --shadow-lg: 0 10px 40px rgba(31, 58, 95, 0.12);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--workio-blue);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--slate);
  max-width: 65ch;
}

.text-large {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
}

.text-small {
  font-size: 0.875rem;
}

.text-muted {
  color: var(--text-muted);
}

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

/* ===================================
   LAYOUT UTILITIES
   =================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-sm {
  padding: var(--spacing-2xl) 0;
}

.section-grey {
  background: var(--light-grey);
}

/* Skip to content (accessibility) */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--workio-blue);
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 100;
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-content:focus {
  top: 0;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-grey);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--workio-blue);
}

.logo img {
  height: 36px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--spacing-xs);
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--workio-blue);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.main-nav ul {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--slate);
  font-weight: 500;
  transition: color 0.2s ease;
  padding: var(--spacing-xs) 0;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--workio-blue);
}

/* Navigation button styling - make it smaller and less prominent */
.main-nav .btn {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Tablet navigation - reduce spacing */
@media (max-width: 992px) {
  .main-nav ul {
    gap: var(--spacing-sm);
  }

  .main-nav a {
    font-size: 0.9rem;
  }
}

/* Mobile navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-grey);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.active {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-grey);
  }

  .main-nav a {
    display: block;
    padding: var(--spacing-md);
  }

  .main-nav .btn {
    margin: var(--spacing-md);
    width: calc(100% - 2rem);
  }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--workio-blue);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #152b45;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--soft-teal);
  color: var(--workio-blue);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #3dbdb3;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--workio-blue);
  color: var(--workio-blue);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--workio-blue);
  color: var(--white);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-3xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: var(--spacing-md);
}

.hero-content .text-large {
  margin-bottom: var(--spacing-xl);
}

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

.hero-trust {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-grey);
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

  .hero-image {
    order: -1;
  }
}

/* ===================================
   BENEFIT CARDS (Pain-to-Outcome)
   =================================== */
.benefits {
  padding: var(--spacing-2xl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.benefit-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.benefit-card .icon {
  margin: 0 auto var(--spacing-md);
  width: 48px;
  height: 48px;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-card p {
  color: var(--text-muted);
  margin: 0 auto;
}

/* ===================================
   PRODUCT FEATURE SECTION
   =================================== */
.product-feature {
  padding: var(--spacing-3xl) 0;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.product-content h2 {
  margin-bottom: var(--spacing-sm);
}

.product-tagline {
  font-size: 1rem;
  color: var(--soft-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
}

.product-content ul {
  list-style: none;
  margin: var(--spacing-lg) 0;
}

.product-content ul li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
}

.product-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--soft-teal);
  font-weight: bold;
}

.product-visual {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
}

.mock-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-grey);
  max-width: 400px;
  margin: 0 auto;
}

.mock-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-grey);
}

.mock-card-title {
  font-weight: 600;
  color: var(--workio-blue);
}

.mock-badge {
  background: var(--soft-teal);
  color: var(--workio-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mock-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--workio-blue);
  margin: var(--spacing-md) 0;
}

.mock-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-xs);
}

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

/* ===================================
   WHO IT'S FOR CARDS
   =================================== */
.who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.who-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.who-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.who-card .icon {
  margin-bottom: var(--spacing-md);
  width: 56px;
  height: 56px;
}

.who-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.who-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

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

.who-card ul li {
  font-size: 0.875rem;
  color: var(--slate);
  padding: 0.25rem 0;
  position: relative;
  padding-left: var(--spacing-md);
}

.who-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--soft-teal);
}

/* ===================================
   HOW IT WORKS (STEPS)
   =================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--soft-teal);
  color: var(--workio-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
}

.step .icon {
  margin: 0 auto var(--spacing-md);
  width: 56px;
  height: 56px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.step p {
  color: var(--text-muted);
  margin: 0 auto;
}

/* ===================================
   PRICING
   =================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--soft-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--workio-blue);
  position: relative;
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--workio-blue);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--workio-blue);
  margin-bottom: var(--spacing-sm);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--workio-blue);
  margin-bottom: var(--spacing-xs);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.pricing-features {
  list-style: none;
  margin: var(--spacing-lg) 0;
  text-align: left;
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--soft-teal);
  font-weight: bold;
}

.pricing-note {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-grey);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===================================
   FAQ ACCORDION
   =================================== */
.faq {
  max-width: var(--max-width-narrow);
  margin: var(--spacing-xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-grey);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--workio-blue);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--soft-teal);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--soft-teal);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

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

.faq-answer.active {
  max-height: 500px;
}

.faq-answer-content {
  padding-bottom: var(--spacing-md);
  color: var(--text-muted);
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--workio-blue) 0%, #152b45 100%);
  color: var(--white);
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--workio-blue);
}

.cta-banner .btn-primary:hover {
  background: var(--light-grey);
}

.cta-banner .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--workio-blue);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: var(--workio-blue);
  color: var(--white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
  margin-top: var(--spacing-md);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 65ch;
}

/* ===================================
   FORMS
   =================================== */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--workio-blue);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--spacing-md);
  border: 2px solid var(--border-grey);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--soft-teal);
}

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

.form-error {
  color: #E53E3E;
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: #E53E3E;
}

/* ===================================
   PRODUCT PAGE SPECIFIC
   =================================== */
.product-hero {
  background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.flow-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--white);
  border: 2px solid var(--workio-blue);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  text-align: center;
  font-weight: 600;
  color: var(--workio-blue);
  min-width: 140px;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--soft-teal);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  font-weight: 600;
  color: var(--workio-blue);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===================================
   ABOUT PAGE SPECIFIC
   =================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.value-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--workio-blue);
}

.value-card p {
  color: var(--text-muted);
  margin: 0 auto;
}

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */
*:focus-visible {
  outline: 3px solid var(--soft-teal);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */
@media (max-width: 768px) {
  :root {
    --spacing-3xl: 3rem;
    --spacing-2xl: 2rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

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

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .btn,
  .cta-banner,
  .cookie-consent {
    display: none;
  }
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--workio-blue);
  color: var(--white);
  padding: var(--spacing-lg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.cookie-consent-text a {
  color: var(--soft-teal);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-consent .btn {
  white-space: nowrap;
}

.cookie-consent .btn-accept {
  background: var(--soft-teal);
  color: var(--workio-blue);
}

.cookie-consent .btn-decline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-consent .btn {
    flex: 1;
  }
}

/* ===================================
   TRUST BADGES
   =================================== */
.trust-badges {
  padding: var(--spacing-xl) 0;
  background: var(--light-grey);
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 992px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
}

.trust-badge-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.trust-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--workio-blue);
}

.trust-badge-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================================
   COMPARISON TABLE
   =================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: var(--spacing-xl) 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background: var(--workio-blue);
  color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--border-grey);
}

.comparison-table th {
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table th.highlight {
  background: var(--soft-teal);
  color: var(--workio-blue);
}

.comparison-table td {
  font-size: 0.9375rem;
}

.comparison-table td.feature-name {
  font-weight: 600;
  color: var(--workio-blue);
}

.comparison-table .check {
  color: #28A745;
  font-weight: bold;
}

.comparison-table .cross {
  color: #DC3545;
  font-weight: bold;
}

.comparison-table .partial {
  color: #FFA500;
  font-weight: bold;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: var(--spacing-sm);
  }
}

/* ===================================
   SOCIAL PROOF COUNTER
   =================================== */
.social-proof {
  background: var(--soft-teal);
  color: var(--workio-blue);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  margin: var(--spacing-xl) auto;
  max-width: 600px;
}

.social-proof-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.social-proof-text {
  font-size: 1.125rem;
  font-weight: 500;
}

/* ===================================
   INTEGRATIONS GRID
   =================================== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.integration-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.integration-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.integration-card.coming-soon {
  opacity: 0.6;
}

.integration-card.coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--soft-teal);
  color: var(--workio-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.integration-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  border-radius: var(--radius-md);
  font-size: 2rem;
  font-weight: 700;
  color: var(--workio-blue);
}

.integration-name {
  font-weight: 600;
  color: var(--workio-blue);
  margin-bottom: var(--spacing-xs);
}

.integration-description {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===================================
   CASE STUDY CARD
   =================================== */
.case-study-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-study-image {
  width: 100%;
  height: 200px;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: var(--spacing-xl);
}

.case-study-meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.case-study-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.case-study-excerpt {
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-grey);
}

.case-study-metric {
  text-align: center;
}

.case-study-metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--soft-teal);
}

.case-study-metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}