/* =============================================
   Noju NordVPN Poland Landing Page - Styles
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: 210 20% 98%;
  --foreground: 215 25% 15%;
  --card: 0 0% 100%;
  --card-foreground: 215 25% 15%;
  --primary: 215 90% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 195 95% 55%;
  --secondary-foreground: 215 25% 15%;
  --muted: 210 20% 95%;
  --muted-foreground: 215 15% 50%;
  --accent: 195 95% 55%;
  --accent-foreground: 215 25% 15%;
  --border: 210 20% 90%;
  --ring: 215 90% 45%;
  --radius: 0.75rem;
  --gradient-hero: linear-gradient(180deg, hsl(210 40% 96%) 0%, hsl(210 30% 99%) 50%, hsl(0 0% 100%) 100%);
  --gradient-hero-accent: linear-gradient(135deg, hsl(215 90% 45%), hsl(195 95% 55%));
  --shadow-glow: 0 0 40px hsl(195 95% 55% / 0.3);
  --shadow-card: 0 10px 30px -10px hsl(215 90% 45% / 0.15);
  --shadow-soft: 0 4px 20px hsl(215 30% 50% / 0.08);
  --shadow-float: 0 8px 30px hsl(215 40% 40% / 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =============================================
   Navbar
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Mobile nav sits below navbar + banner */
.navbar-mobile-wrapper {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 55;
  background: hsl(var(--background));
  display: none;
}

.navbar-mobile-wrapper.open {
  display: block;
  border-bottom: 1px solid hsl(var(--border));
}

.navbar-logo img {
  height: 32px;
  width: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.navbar-links a {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: hsl(var(--foreground));
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: background 0.2s;
}

.lang-switcher-btn:hover {
  background: hsl(var(--muted));
}

.lang-switcher-btn .flag {
  font-size: 1rem;
}

.lang-switcher-btn .code {
  display: none;
}

.lang-switcher-btn .chevron {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.lang-switcher-btn.open .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  min-width: 140px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  z-index: 100;
}

.lang-dropdown.open {
  display: block;
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: background 0.15s;
}

.lang-dropdown-item:hover,
.lang-dropdown-item.active {
  background: hsl(var(--accent) / 0.15);
}

/* Subscribe Button (gradient) */
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(0 0% 100%) !important;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: box-shadow 0.3s, opacity 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-subscribe:hover {
  box-shadow: var(--shadow-glow);
}

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.hamburger-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: hsl(var(--foreground));
}

.mobile-nav .btn-subscribe {
  width: 100%;
  text-align: center;
}

/* =============================================
   Compliance Banner
   ============================================= */
.compliance-banner {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 45;
  background: hsl(var(--muted));
  border-bottom: 1px solid hsl(var(--border));
  transition: transform 0.3s;
}

.compliance-banner.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.compliance-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.compliance-banner p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.compliance-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.compliance-close:hover {
  background: hsl(var(--background) / 0.5);
}

.compliance-close svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--muted-foreground));
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.hero-blob-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: hsl(var(--primary) / 0.05);
  animation: pulse 4s ease-in-out infinite;
}

.hero-blob-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--accent) / 0.05);
  animation: pulse 4s ease-in-out infinite 1s;
}

.hero-blob-3 {
  top: 50%;
  left: 25%;
  width: 12rem;
  height: 12rem;
  background: hsl(var(--primary) / 0.03);
  filter: blur(32px);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-float);
}

.hero-logos img:first-child {
  height: 3rem;
  width: auto;
}

.hero-logos .times {
  font-size: 1.5rem;
  color: hsl(var(--muted-foreground));
  font-weight: 300;
}

.hero-logos img:last-child {
  height: 5rem;
  width: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  margin-bottom: 2rem;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-soft);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--primary));
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: hsl(var(--foreground));
}

.hero h1 .gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-float);
  text-decoration: none;
}

.btn-hero-primary:hover {
  opacity: 0.9;
}

.btn-hero-primary svg {
  width: 20px;
  height: 20px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: var(--shadow-soft);
}

.btn-hero-secondary:hover {
  background: hsl(var(--card));
}

.hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.3);
  box-shadow: var(--shadow-soft);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.hero-trust-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* =============================================
   Section Common
   ============================================= */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header .highlight {
  color: hsl(var(--primary));
}

.section-header p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
}

/* Background variants */
.bg-to-muted {
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--muted) / 0.3));
}

.bg-from-muted {
  background: linear-gradient(to bottom, hsl(var(--muted) / 0.3), hsl(var(--background)));
}

.bg-default {
  background: hsl(var(--background));
}

/* =============================================
   How It Works
   ============================================= */
.how-it-works-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.step-card {
  padding: 2rem;
  text-align: center;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  box-shadow: var(--shadow-float);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary-foreground));
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: hsl(var(--muted-foreground));
}

/* =============================================
   Why Noju
   ============================================= */
.why-noju-grid {
  display: grid;
  gap: 1.5rem;
}

.reason-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-float);
  transition: transform 0.3s;
}

.reason-card:hover {
  transform: translateY(-4px);
}

.reason-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.reason-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.reason-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.reason-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* =============================================
   Features
   ============================================= */
.features-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.features-logo img {
  height: 6rem;
  width: auto;
}

.features-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card {
  padding: 1.5rem;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  box-shadow: var(--shadow-float);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.2));
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: hsl(var(--muted-foreground));
}

/* =============================================
   Pricing
   ============================================= */
.pricing-card {
  max-width: 28rem;
  margin: 0 auto;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--primary) / 0.5);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.pricing-header {
  text-align: center;
  padding: 1.5rem 1.5rem 0.5rem;
}

.pricing-header img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 0.5rem;
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-amount .period {
  color: hsl(var(--muted-foreground));
}

.pricing-billing-note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.pricing-features {
  padding: 1rem 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.pricing-features li span {
  font-size: 0.875rem;
}

.pricing-footer {
  padding: 0 1.5rem 1.5rem;
}

.pricing-footer .btn-subscribe {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2rem;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  padding: 0 1.5rem;
  box-shadow: var(--shadow-float);
  transition: transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  gap: 1rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: hsl(var(--muted-foreground));
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.footer-company-info {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-company-info p {
  margin-bottom: 0.25rem;
}

.footer-company-info .company-name {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.footer-company-info a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.footer-company-info a:hover {
  color: hsl(var(--primary));
}

.footer-column h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a,
.footer-column button {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: inherit;
}

.footer-column a:hover,
.footer-column button:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-bottom p {
  margin-bottom: 1rem;
}

/* =============================================
   Cookie Consent
   ============================================= */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  animation: fadeInUp 0.4s ease;
}

.cookie-consent.hidden {
  display: none;
}

.cookie-consent-inner {
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px hsl(var(--foreground) / 0.15);
}

.cookie-consent h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-consent p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.cookie-consent a {
  color: hsl(var(--primary));
}

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

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-cookie-necessary {
  flex: 1;
  padding: 0.5rem 1rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-necessary:hover {
  background: hsl(var(--muted));
}

.btn-cookie-accept {
  flex: 1;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-cookie-accept:hover {
  opacity: 0.9;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   Responsive
   ============================================= */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .cookie-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .lang-switcher-btn .code {
    display: inline;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-noju-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .cookie-consent {
    left: auto;
    right: 1.5rem;
    max-width: 28rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .why-noju-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* =============================================
   Sub-Page Styles (Privacy, Terms, About, etc.)
   ============================================= */

/* Page Nav */
.page-nav {
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-nav-logo img {
  height: 2rem;
  width: auto;
}

.page-nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  transition: color 0.2s;
}

.page-nav-back:hover {
  color: hsl(var(--foreground));
}

.page-nav-back svg {
  width: 16px;
  height: 16px;
}

/* Page Main Content */
.page-main {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.page-main h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.page-main .page-date {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

/* Prose-like content */
.page-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-content section {
  margin-bottom: 0.5rem;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.page-content h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.page-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.page-content strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.page-content a {
  color: hsl(var(--primary));
  transition: opacity 0.2s;
}

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

/* Contact Info Block (used in footer of legal pages) */
.contact-block {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
}

.contact-block .company-name {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.contact-block p {
  margin-bottom: 0.25rem;
}

/* Callout box (refund important note) */
.callout-box {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.callout-box p {
  margin-bottom: 0;
}

/* =============================================
   About Page
   ============================================= */
.about-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-section p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.about-badge img {
  height: 2rem;
  width: auto;
}

.about-badge span {
  color: hsl(var(--muted-foreground));
}

.about-cards {
  display: grid;
  gap: 1.5rem;
}

.about-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.about-card svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.about-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0;
}

.company-info-grid {
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.company-info-grid h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.company-info-grid p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0;
}

.company-info-grid a {
  color: hsl(var(--primary));
}

.company-info-grid a:hover {
  text-decoration: underline;
}

.about-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.about-cta h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-cta p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.about-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.about-cta .btn-primary:hover {
  opacity: 0.9;
}

/* =============================================
   Contact Page
   ============================================= */
.contact-layout {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-header p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

/* Form */
.contact-form-card {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.625rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: hsl(0 84% 60%);
}

.form-error {
  font-size: 0.75rem;
  color: hsl(0 84% 60%);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit svg {
  width: 16px;
  height: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit .spinner {
  animation: spin 1s linear infinite;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-info-card h2 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info-item .label {
  font-weight: 500;
}

.contact-info-item p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.contact-info-item a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: hsl(var(--primary));
}

.contact-faq-card {
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--primary) / 0.2);
  padding: 1.5rem;
}

.contact-faq-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-faq-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.625rem 1rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  text-align: center;
}

.btn-outline:hover {
  background: hsl(var(--muted));
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-float);
  z-index: 100;
  animation: fadeInUp 0.3s ease;
  max-width: 20rem;
}

.toast h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Responsive sub-pages */
@media (min-width: 768px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}
