/* ===================================================================
   KMN Prestige — Consolidated Stylesheet
   Migrated from Angular component CSS files to single app.css
   Source: frontend/src/styles.css + 11 component CSS files
   =================================================================== */

/* ===== 1. CSS VARIABLES ===== */
:root {
  /* Landing / Public */
  --primary-color: #0F172A;
  --accent-color: #C5A059;
  --bg-color: #F8FAFC;
  --text-color: #334155;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.95);
  --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  --transition: all 0.3s ease;

  /* Admin / App */
  --bg-body: #F8FAFC;
  --bg-panel: #FFFFFF;
  --primary-dark: #0F172A;
  --primary-light: #1E293B;
  --accent: #D4AF37;
  --border: #E2E8F0;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);

  /* Site-notice aliases */
  --color-navy: #0F172A;
  --color-gold: #C5A059;

  /* Typography — swap via font-switcher.js in dev */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== 2. RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== 3. UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-top: 10px;
}

/* ===== 4. ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInError {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 5. NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: var(--glass);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-color);
}

.logo i {
  color: var(--accent-color);
  margin-right: 5px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-cta {
  padding: 8px 20px !important;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(15, 23, 42, 0.15);
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-color);
  cursor: pointer;
  padding: 4px 2px;
  transition: var(--transition);
  opacity: 0.5;
  text-decoration: none;
}

.lang-btn:hover {
  opacity: 1;
  color: var(--accent-color);
}

.lang-btn.active {
  opacity: 1;
  color: var(--accent-color);
}

.lang-divider {
  color: rgba(15, 23, 42, 0.2);
  font-size: 0.8rem;
  user-select: none;
}

/* ===== 6. HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)),
    url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: 80px;
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero p {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 40px;
  max-width: 500px;
}

.btn-hero-outline {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid white;
  color: white;
  margin-left: 15px;
}

.btn-hero-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* ===== 7. SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--accent-color);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: #64748B;
  font-size: 0.95rem;
}

/* ===== 8. ABOUT ===== */
.about-bg {
  background-color: var(--white);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.2;
}

.about-title {
  text-align: left;
  margin-bottom: 30px;
}

.about-desc {
  margin-bottom: 20px;
  color: #64748B;
}

.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.check-list i {
  color: var(--accent-color);
  margin-right: 15px;
}

.about-btn {
  margin-top: 30px;
}

/* ===== 9. PRICING ===== */
.pricing-bg {
  background-color: var(--bg-color);
}

/* Main Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 32px 40px 28px;
}

.pricing-card-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.pricing-subtitle {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tiers */
.tiers-list {
  padding: 12px 0;
  flex: 1;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  border-bottom: 1px solid #F1F5F9;
  gap: 12px;
}

.tier-row:last-child {
  border-bottom: none;
}

.tier-range {
  color: var(--text-color);
  font-size: 0.95rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-align: right;
}

.tier-price strong {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-family: var(--font-body);
}

.tier-price small {
  font-size: 0.8rem;
  color: #64748B;
  white-space: nowrap;
}

.tier-custom .tier-range {
  color: #64748B;
  font-style: italic;
}

.tier-price-custom {
  color: var(--accent-color) !important;
  font-weight: 700;
  font-size: 0.95rem;
}

.tier-price-custom strong {
  font-size: 0.95rem;
  color: var(--accent-color);
}

.pricing-cta {
  margin: 24px 40px 32px;
  text-align: center;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.addon-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent-color);
}

.addon-card h4 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.addon-list {
  margin-bottom: 16px;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  gap: 12px;
}

.addon-row:last-child {
  border-bottom: none;
}

.addon-label {
  font-size: 0.9rem;
  color: var(--text-color);
}

.addon-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.addon-price strong {
  font-size: 1rem;
  color: var(--primary-color);
  font-family: var(--font-body);
}

.addon-price small {
  font-size: 0.75rem;
  color: #64748B;
}

.addon-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.5;
}

.addon-note i {
  color: var(--accent-color);
  margin-right: 6px;
}

/* ===== 10. REVIEWS ===== */
.reviews-bg {
  background-color: #f8fafc;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.14);
}

.review-quote-icon {
  color: #C5A059;
  font-size: 1.5rem;
}

.review-text {
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.review-name {
  font-weight: 600;
  color: #0F172A;
  font-size: 0.95rem;
}

.review-company {
  color: #C5A059;
  font-size: 0.85rem;
}

/* ===== 11. FAQ ===== */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #0F172A;
  gap: 1rem;
  font-family: inherit;
}

.faq-question:hover {
  color: #C5A059;
}

.faq-question i {
  flex-shrink: 0;
  color: #C5A059;
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  padding: 0 0 1.25rem 0;
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.faq-item--open .faq-question {
  color: #C5A059;
}

/* ===== 12. CTA ===== */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: #94A3B8;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-phones {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn-phone {
  background: var(--white);
  color: var(--primary-color);
}

.cta-btn-email {
  border: 2px solid white;
  color: white;
}

.cta-btn-email:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== 13. CONTACT FORM ===== */
.contact-section {
  background-color: var(--bg-color);
}

/* Two-column grid */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* Info panel */
.contact-info-panel {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-panel h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 4px;
}

.response-time {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-color);
  font-size: 0.95rem;
}

.info-item--hours {
  align-items: flex-start;
}

.info-item i {
  font-size: 1.15rem;
  color: var(--accent-color);
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  margin-top: 2px;
}

.info-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.info-hours-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-hours-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.info-hours {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-hours li {
  font-size: 0.9rem;
  color: #64748B;
}

/* Form panel */
.contact-form-panel {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  padding: 40px 36px;
}

/* Form fields */
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-color);
  background-color: #F8FAFC;
  transition: var(--transition);
}

.form-control::placeholder { color: #94A3B8; }

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.file-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border: 2px dashed #CBD5E1;
  border-radius: 8px;
  background-color: #F8FAFC;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  color: #64748B;
  font-weight: normal;
}

.file-upload-zone:hover, .file-upload-zone.has-file {
  border-color: var(--accent-color);
  background-color: #FFFDF8;
  color: var(--primary-color);
}

.file-upload-zone i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.checkboxes-group {
  margin-top: 30px;
  margin-bottom: 30px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 15px;
  user-select: none;
  font-weight: normal;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  top: 2px;
  height: 22px;
  width: 22px;
  background-color: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--accent-color);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-text {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.submit-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: #EF4444;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  animation: fadeInError 0.2s ease-in;
}

.submit-error i {
  color: #C5A059;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #EF4444;
  font-size: 0.8rem;
  font-weight: 500;
}

.field-error i {
  color: #EF4444;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* RODO info clause below submit button */
.info-clause {
  margin-top: 1.5rem;
  padding: 1rem;
  border-top: 1px solid var(--color-border, #e5e7eb);
  font-size: 0.75rem;
  color: var(--color-text-muted, #6b7280);
}

.info-clause h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary, #374151);
}

.info-clause-admin,
.info-clause-purpose,
.info-clause-link {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.info-clause-link a {
  color: var(--color-primary, #2563eb);
  text-decoration: underline;
}

/* ===== 14. FOOTER ===== */
footer {
  background: #020617;
  color: #94A3B8;
  padding: 60px 0 20px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: block;
}

footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a:hover {
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dynamic company info block below tagline */
.footer-company-info {
  margin-top: 0.5rem;
}

.footer-company-details {
  font-size: 0.7rem;
  opacity: 0.65;
  line-height: 1.4;
}

/* Cookie settings button in footer */
.footer-notice-btn {
  background: none;
  border: none;
  color: #64748B;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.footer-notice-btn:hover {
  color: var(--accent-color);
}

/* ===== 15. COOKIE CONSENT BANNER ===== */
.site-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-navy, #0f172a);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  animation: slide-up 0.3s ease-out;
}

.site-notice.hidden {
  display: none;
}

.site-notice__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.site-notice__text {
  flex: 1 1 300px;
}

.site-notice__text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--color-gold, #c5a059);
}

.site-notice__text p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.4rem;
}

.site-notice__privacy-link {
  font-size: 0.8rem;
  color: var(--color-gold, #c5a059);
  text-decoration: underline;
}

.site-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.btn-cookie {
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-cookie:hover {
  opacity: 0.85;
}

.btn-cookie--accept {
  background-color: var(--color-gold, #c5a059);
  color: var(--color-navy, #0f172a);
}

.btn-cookie--reject {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie--reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  color: #fff;
}

.btn-cookie--manage {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 0.8rem;
  text-decoration: underline;
}

/* Settings panel */
.site-notice-settings {
  width: 100%;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-notice-settings__item {
  margin-bottom: 1rem;
}

.toggle-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.toggle-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.toggle-text strong {
  font-size: 0.9rem;
  color: #fff;
}

.toggle-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  max-width: 55ch;
}

.toggle-switch {
  flex-shrink: 0;
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.25s;
  padding: 0;
}

.toggle-switch--on {
  background-color: var(--color-gold, #c5a059);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.25s;
  display: block;
}

.toggle-switch--on .toggle-thumb {
  transform: translateX(22px);
}

.site-notice-settings__footer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
}

/* ===== 16. FLOATING PHONE CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.4);
  transition: var(--transition);
}

.floating-cta-btn:hover {
  transform: scale(1.1);
}

/* ===== 17. PRIVACY POLICY PAGE ===== */
.privacy-policy-page {
  padding: 120px 0 80px;
}

.privacy-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.privacy-intro {
  color: #64748B;
  margin-bottom: 2rem;
  max-width: 800px;
  line-height: 1.7;
}

.privacy-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.privacy-section a {
  color: var(--accent-color);
  text-decoration: underline;
}

.privacy-section ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-section ul li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* ===== 18. RESPONSIVE ===== */

/* --- 992px (Tablet → Large desktop shift) --- */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}

/* --- 768px (Primary mobile breakpoint) --- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    gap: 20px;
    text-align: center;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .lang-switcher {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding: 12px 0 0 0;
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }

  /* Hero */
  .hero h1 {
    font-size: 2.2rem;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info-panel {
    padding: 28px 20px;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 640px (Small mobile) --- */
@media (max-width: 640px) {
  /* Pricing */
  .tier-row,
  .addon-row {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pricing-cta {
    margin-left: 24px;
    margin-right: 24px;
  }

  .pricing-card-header {
    padding: 24px;
  }

  /* Cookie banner */
  .site-notice__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-notice__actions {
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
    text-align: center;
  }

  .toggle-label {
    flex-direction: column;
  }

  .toggle-switch {
    align-self: flex-start;
  }
}
