/* ============================================
   A Sprint to Agile — Website Styles
   ============================================ */

:root {
  --color-deep: #0f2847;
  --color-navy: #1a3a5c;
  --color-mid: #214d7a;
  --color-accent: #c9a227;
  --color-accent-light: #e4c04a;
  --color-white: #ffffff;
  --color-off-white: #f5f7fa;
  --color-muted: #8ba3c7;
  --color-text: #1a2d47;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 40, 71, 0.12);
  --shadow-lg: 0 12px 48px rgba(15, 40, 71, 0.18);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-off-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ========== Header & Nav ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  background: rgba(15, 40, 71, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding var(--transition), background var(--transition);
}

.site-header.scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--color-accent-light);
}

.nav-cta {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-accent);
  color: var(--color-deep) !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--color-accent-light);
  color: var(--color-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-deep);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ========== Hero ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--color-deep) 0%, var(--color-navy) 45%, var(--color-mid) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(33, 77, 122, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-logo {
  width: min(320px, 85vw);
  margin: 0 auto var(--space-xl);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.3));
  animation: fadeInUp 0.8s ease forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-accent-light);
  margin: 0 0 var(--space-md);
  line-height: 1.4;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 var(--space-md);
  animation: fadeInUp 0.8s ease 0.25s both;
}

.hero-on-sale {
  font-size: 0.95rem;
  color: var(--color-accent-light);
  margin: 0 0 var(--space-xl);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-on-sale strong {
  font-weight: 700;
}

.hero-content .btn {
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 1px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== Inner page hero ========== */

.hero-inner {
  min-height: 0;
  padding: calc(80px + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

.hero-inner .hero-scroll {
  display: none;
}

.hero-inner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 var(--space-sm);
  line-height: 1.2;
}

.hero-inner .hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0;
}

.hero-inner .hero-desc,
.hero-inner .hero-content .btn {
  display: none;
}

/* ========== Video section ========== */

#video.section {
  position: relative;
  background: var(--color-deep) url(gameplay2.jpg) center / cover no-repeat;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

#video.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 40, 71, 0.72) 0%, rgba(26, 58, 92, 0.78) 100%);
  pointer-events: none;
}

#video .container {
  position: relative;
  z-index: 1;
}

#video .section-title,
#video .section-subtitle,
#video .video-note {
  color: rgba(255, 255, 255, 0.95);
}

#video .section-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

#video .video-note {
  color: rgba(255, 255, 255, 0.7);
}

#video .video-note code {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-deep);
}

.video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 40, 71, 0.3) 0%, rgba(26, 58, 92, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

.video-wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

.video-note code {
  background: rgba(15, 40, 71, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ========== FAQ ========== */

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(15, 40, 71, 0.08);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item[open] .faq-question {
  color: var(--color-mid);
}

.faq-question {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-deep);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-muted);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  margin: 0;
  padding-top: var(--space-xs);
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-answer a {
  color: var(--color-mid);
  font-weight: 500;
}

.faq-answer a:hover {
  color: var(--color-accent);
}

/* ========== Community ========== */

.community-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
  max-width: 640px;
  margin: 0 auto var(--space-md);
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--color-navy), var(--color-mid));
  border-radius: var(--radius-lg);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.community-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
}

.community-content {
  flex: 1;
  min-width: 200px;
}

.community-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
}

.community-text {
  margin: 0 0 var(--space-lg);
  opacity: 0.95;
  font-size: 0.98rem;
}

.community-card .btn {
  background: var(--color-accent);
  color: var(--color-deep);
}

.community-card .btn:hover {
  background: var(--color-accent-light);
}

.community-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

.community-note code {
  background: rgba(15, 40, 71, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ========== Download materials ========== */

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.download-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 40, 71, 0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.download-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-md);
  color: var(--color-mid);
}

.download-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-deep);
  margin: 0 0 var(--space-sm);
}

.download-desc {
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.btn-download {
  margin-top: auto;
  align-self: flex-start;
}

.download-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: var(--space-xl) 0 0;
}

.download-note code {
  background: rgba(15, 40, 71, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ========== Buttons ========== */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-deep);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.05rem;
}

/* ========== Sections ========== */

.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background: var(--color-white);
  box-shadow: 0 -1px 0 rgba(15, 40, 71, 0.06);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-deep);
  text-align: center;
  margin: 0 0 var(--space-lg);
  line-height: 1.3;
}

.section-title em {
  font-style: italic;
  color: var(--color-mid);
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ========== Value grid ========== */

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.value-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 40, 71, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-mid), var(--color-navy));
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-deep);
  margin: 0 0 var(--space-sm);
}

.value-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ========== Roles ========== */

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.role-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), background var(--transition);
}

.role-item:hover {
  transform: translateY(-2px);
  background: rgba(33, 77, 122, 0.06);
}

.role-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--color-mid);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.role-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-deep);
  margin: 0 0 var(--space-xs);
}

.role-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* ========== Use cases ========== */

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.use-case-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.use-case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 40, 71, 0.92) 0%, rgba(26, 58, 92, 0.6) 50%, transparent 100%);
}

.use-case-card:hover {
  transform: scale(1.02);
}

.use-case-teambuilding {
  background: linear-gradient(135deg, var(--color-navy), var(--color-mid));
}

.use-case-training {
  background: linear-gradient(135deg, var(--color-mid), #2d5a8a);
}

.use-case-recovery {
  background: linear-gradient(135deg, var(--color-deep), var(--color-navy));
}

.use-case-content {
  position: relative;
  z-index: 1;
}

.use-case-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
}

.use-case-card p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.98rem;
}

/* ========== Gameplay (see the game in action) ========== */

.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.gameplay-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gameplay-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gameplay-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ========== Testimonials ========== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  margin: 0;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 40, 71, 0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-deep);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
  font-style: normal;
}

/* ========== Card gallery ========== */

.cards-category {
  margin-bottom: var(--space-2xl);
}

.cards-category:last-child {
  margin-bottom: 0;
}

.cards-category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-mid);
  margin: 0 0 var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.card-gallery-backs {
  justify-content: center;
}

.card-slot {
  width: 160px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--color-white);
}

.card-slot:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.card-slot img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.5 / 3.5;
  object-fit: cover;
}

@media (max-width: 640px) {
  .card-slot {
    width: 130px;
  }
}

/* ========== CTA ========== */

.cta {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--color-deep) 0%, var(--color-navy) 50%, var(--color-mid) 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-logo {
  width: min(220px, 60vw);
  margin: 0 auto var(--space-xl);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 var(--space-md);
  line-height: 1.3;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.cta-text em {
  color: var(--color-accent-light);
  font-style: italic;
}

.cta-on-sale {
  color: var(--color-accent-light);
  font-size: 1rem;
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.cta-on-sale strong {
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box-visual {
  flex: 0 1 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-box-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-row .contact-form {
  flex: 1 1 340px;
  margin: 0;
}

/* ========== Contact form ========== */

.contact-form {
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

.contact-form .form-row {
  margin-bottom: var(--space-md);
}

.contact-form .form-row-message {
  margin-bottom: var(--space-lg);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-deep);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent-light);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form .form-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-lg);
  line-height: 1.5;
}

.contact-form .form-note strong {
  color: var(--color-accent-light);
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta .btn-primary {
  background: var(--color-accent);
  color: var(--color-deep);
}

.cta .btn-primary:hover {
  background: var(--color-accent-light);
}

/* ========== Footer ========== */

.site-footer {
  background: var(--color-deep);
  padding: var(--space-xl) var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== Cookie banner ========== */
/* added on 8th of February 2026 */
/* Cookie Consent Banner Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#cookie-consent-banner.show {
  display: block;
}

.consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.consent-message {
  flex: 1;
  min-width: 300px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.consent-message a {
  color: #1a73e8;
  text-decoration: none;
}

.consent-message a:hover {
  text-decoration: underline;
}

.consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.consent-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.consent-btn-primary {
  background-color: #1a73e8;
  color: white;
}

.consent-btn-primary:hover {
  background-color: #1557b0;
}

.consent-btn-secondary {
  background-color: transparent;
  color: #1a73e8;
  border: 1px solid #dadce0;
}

.consent-btn-secondary:hover {
  background-color: #f8f9fa;
}

/* Preferences Modal */
#cookie-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-preferences-modal.show {
  display: flex;
}

.preferences-content {
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.preferences-header {
  margin-bottom: 20px;
}

.preferences-header h2 {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #333;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.category-title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.category-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #1a73e8;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.preferences-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .consent-container {
      flex-direction: column;
      align-items: stretch;
  }

  .consent-buttons {
      justify-content: stretch;
  }

  .consent-btn {
      flex: 1;
  }
}