/* ============================================================
   KOMBI PRIJEVOZ ZLATKO — STYLE.CSS
   Sadržaj:
   1. Reset i varijable
   2. Osnovni elementi / tipografija
   3. Layout helpers (container, section)
   4. Header / navigacija
   5. Hero
   6. O nama / generičke section-grid sekcije
   7. Kartice usluga
   8. Prednosti (benefits)
   9. Područje djelovanja (area-list)
   10. Koraci (steps) + CTA inline
   11. Galerija
   12. Kontakt / forma
   13. Footer
   14. Plutajući gumb (mobile call button)
   15. Animacije (scroll reveal)
   16. Media queries
   ============================================================ */

/* ---------- 1. RESET I VARIJABLE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-navy: #0d1117;
  --color-navy-dark: #05070b;
  --color-navy-light: #1b2140;
  --color-accent: #7c5cff;
  --color-accent-2: #4f7cff;
  --color-accent-dark: #5f3fe0;
  --color-white: #ffffff;
  --color-bg-alt: #f4f4fb;
  --color-text: #1b1f2a;
  --color-text-light: #5b607a;
  --color-border: #e2e3ee;
  --color-accent-tint: rgba(124, 92, 255, 0.12);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(13, 17, 23, 0.1);
  --shadow-md: 0 10px 30px rgba(13, 17, 23, 0.14);
  --shadow-lg: 0 20px 50px rgba(13, 17, 23, 0.2);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
  text-align: center;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.25;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--color-bg-alt); }

.section-tag {
  display: inline-block;
  color: var(--color-accent-dark);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-heading { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.section-lead { color: var(--color-text-light); font-size: 1.05rem; }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section-grid-reverse .section-image { order: -1; }

.section-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 20px; }
.section-text p { margin-bottom: 16px; color: var(--color-text-light); }
.section-text p strong { color: var(--color-navy); }

.section-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(0) scale(0.96); }
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-white); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--color-white); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- 4. HEADER / NAVIGACIJA ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(6px);
  padding-top: env(safe-area-inset-top, 0px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}
.logo strong { color: var(--color-accent); }
.logo-icon { color: var(--color-accent); font-size: 1.4rem; }
.logo-icon-img { border-radius: 50%; flex-shrink: 0; }

.main-nav { flex: 0 1 auto; display: flex; justify-content: center; }
.main-nav ul { display: flex; flex-wrap: nowrap; gap: clamp(10px, 1.6vw, 22px); }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}
.main-nav a:hover { color: var(--color-accent); }

.header-cta { display: flex; flex-shrink: 0; flex-wrap: nowrap; align-items: center; gap: 12px; }
.header-cta .btn-primary { padding: 10px 18px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity var(--transition);
}
.hamburger:hover { opacity: 0.75; }
.hamburger:active { transform: scale(0.9); }
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,11,0.78) 0%, rgba(5,7,11,0.85) 55%, rgba(5,7,11,0.94) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-white);
  padding: 120px 24px 80px;
}
.eyebrow {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(1.9rem, 7vw, 3.4rem);
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 34px;
  max-width: 600px;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 40px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
}
.hero-badges i { color: var(--color-accent); }

/* ---------- 7. KARTICE USLUGA ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-accent-tint);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--color-text-light); font-size: 0.95rem; }

/* ---------- 8. PREDNOSTI ---------- */
.benefits-banner {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}
.benefits-banner img {
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
  filter: brightness(0.82);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit {
  text-align: center;
  padding: 20px;
}
.benefit i {
  font-size: 2rem;
  color: var(--color-accent-dark);
  margin-bottom: 16px;
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 10px; }
.benefit p { color: var(--color-text-light); font-size: 0.92rem; }

/* ---------- 9. PODRUČJE DJELOVANJA ---------- */
.area-list { margin: 20px 0; }
.area-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 1px dashed var(--color-border);
}
.area-list i { color: var(--color-accent-dark); }

/* ---------- 10. KORACI + CTA ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.step {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
/* Svaki par koraka (1-2 i 3-4) dijeli istu fotografiju, razdvojenu točno na polovici */
.step-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: 200% 100%;
}
.step-split-left .step-bg {
  background-image: url("images/foto-utovar-i-prijevoz.png");
  background-position: left center;
}
.step-split-right .step-bg {
  background-image: url("images/foto-utovar-i-prijevoz.png");
  background-position: right center;
}
.step-split-left-12 .step-bg {
  background-image: url("images/foto-poziv-i-upit.png");
  background-position: left center;
}
.step-split-right-12 .step-bg {
  background-image: url("images/foto-poziv-i-upit.png");
  background-position: right center;
}
.step-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,11,0.55) 0%, rgba(5,7,11,0.72) 100%);
  z-index: 1;
}
.step-content {
  position: relative;
  z-index: 2;
  padding: 18px;
  text-align: center;
  color: var(--color-white);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; color: var(--color-white); }
.step p { color: rgba(255,255,255,0.85); font-size: 0.86rem; }

.cta-inline {
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--color-white);
}
.cta-inline p { font-size: 1.1rem; font-weight: 500; max-width: 480px; }

/* ---------- 11. GALERIJA ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,7,11,0.35);
  z-index: 1;
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(5,7,11,0.9), transparent);
  color: var(--color-white);
  padding: 30px 16px 14px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- 12. KONTAKT / FORMA ---------- */
.contact-section { background: var(--color-navy); color: var(--color-white); }
.contact-section .section-tag { color: var(--color-accent); }
.contact-section h2 { color: var(--color-white); }
.contact-section .section-text p { color: rgba(255,255,255,0.8); }
.contact-section .section-text p strong { color: var(--color-white); }

.phone-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 24px 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,0.85);
}
.contact-info-list i { color: var(--color-accent); width: 18px; }

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 8px; }
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--color-navy); margin-top: 10px; }
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  resize: vertical;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.contact-form button { margin-top: 16px; }
.form-status { font-size: 0.85rem; text-align: center; margin-top: 12px; min-height: 1.2em; color: var(--color-text-light); }
.form-status--success { color: #1c8a4b; font-weight: 600; }
.form-status--error { color: #c0392b; font-weight: 600; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-top: 14px;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}
.checkbox-label a { color: var(--color-navy); font-weight: 600; text-decoration: underline; transition: color var(--transition); }
.checkbox-label a:hover { color: var(--color-accent-dark); }

/* honeypot polje — sakriveno od stvarnih korisnika, ostaje u DOM-u za bot-ove */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- 13. FOOTER ---------- */
.site-footer { background: var(--color-navy-dark); color: rgba(255,255,255,0.75); padding: 72px 0 0; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 { color: var(--color-white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--color-accent); }
.footer-col p { font-size: 0.9rem; line-height: 1.6; }

.footer-col--brand { text-align: left; }
.footer-col--brand .footer-logo { justify-content: flex-start; margin-bottom: 16px; }

.footer-col--nav { text-align: center; }
.footer-col--nav nav { display: flex; flex-direction: column; gap: 10px; align-items: center; }

.footer-col--contact { text-align: right; }
.footer-col--contact ul { display: flex; flex-direction: column; align-items: flex-end; }
.footer-col--contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-col--contact li i { flex-shrink: 0; margin-top: 4px; }
.footer-col--contact li a,
.footer-col--contact li span { text-align: left; }
.footer-col--contact .social-icons { justify-content: flex-end; margin-top: 16px; }

.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform 0.2s ease, color var(--transition);
}
.social-icons a:hover { background: var(--color-accent); color: var(--color-white); transform: translateY(-3px); }
.social-icons a:active { transform: scale(0.92); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--color-accent); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- 14. PLUTAJUĆI GUMB (MOBILE) ---------- */
.floating-call-btn {
  display: none;
  position: fixed;
  left: calc(16px + env(safe-area-inset-left, 0px));
  right: calc(16px + env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  background: var(--color-accent);
  color: var(--color-navy-dark);
  font-weight: 700;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(13, 17, 23, 0.25);
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow var(--transition), background var(--transition);
}
.floating-call-btn:hover { background: var(--color-accent-dark); color: var(--color-white); }
.floating-call-btn:active { transform: scale(0.96); }

/* ---------- 15. ANIMACIJE ---------- */
.fade-in,
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in { transform: none; }
.fade-in.is-visible,
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 16. MEDIA QUERIES ---------- */
@media (max-width: 992px) {
  .section-grid { grid-template-columns: 1fr; }
  .section-grid-reverse .section-image { order: 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1120px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .floating-call-btn { display: flex; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-navy-dark);
    padding: 16px 24px 28px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .cards-grid,
  .steps-grid,
  .gallery-grid,
  .benefits-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 24px 18px; box-shadow: 0 8px 24px rgba(13, 17, 23, 0.16); }

  .footer-top { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-col--brand,
  .footer-col--nav,
  .footer-col--contact { text-align: center; }
  .footer-col--brand .footer-logo { justify-content: center; }
  .footer-col--nav nav { align-items: center; }
  .footer-col--contact ul { align-items: center; }
  .footer-col--contact li { justify-content: center; }
  .footer-col--contact .social-icons { justify-content: center; }
}

@media (max-width: 560px) {
  .phone-large { font-size: 1.5rem; }
  .hero-content { padding: 100px 20px 100px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-lead { font-size: 0.98rem; }
  .eyebrow { font-size: 0.78rem; }
  .hero-badges { gap: 16px; }
  .contact-form-wrap { padding: 20px 14px; }
}

/* ============================================================
   17. STRANICA "POLITIKA PRIVATNOSTI" (Privatnost.html)
   ============================================================ */
.page-header {
  background: var(--color-navy);
  padding: 160px 0 60px;
  text-align: center;
  color: var(--color-white);
}
.page-header-content h1 { color: var(--color-white); font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 14px 0 10px; }
.page-header-content .eyebrow { margin-bottom: 0; }
.page-header-content p { color: rgba(255,255,255,0.7); }

.privacy-main { background: var(--color-white); }
.privacy-container { max-width: 880px; padding-top: 64px; padding-bottom: 96px; }

.privacy-intro { font-size: 1.05rem; color: var(--color-text-light); margin-bottom: 40px; }

.privacy-toc {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 56px;
}
.privacy-toc-title { font-family: var(--font-heading); font-weight: 700; color: var(--color-navy); margin-bottom: 14px; }
.privacy-toc ol { list-style: none; padding-left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.privacy-toc a { color: var(--color-text-light); }
.privacy-toc a:hover { color: var(--color-accent-dark); }

.privacy-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.privacy-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.privacy-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  background: var(--color-accent-tint);
  border-radius: 8px;
  padding: 4px 10px;
}
.privacy-section p { color: var(--color-text-light); margin-bottom: 14px; }
.privacy-section p strong { color: var(--color-navy); }

.privacy-list { margin-bottom: 14px; }
.privacy-list li {
  padding: 10px 0;
  color: var(--color-text-light);
  border-bottom: 1px dashed var(--color-border);
}
.privacy-list li strong { color: var(--color-navy); }

.privacy-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
}
.privacy-card-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.privacy-card-row:last-child { border-bottom: none; }
.privacy-card-row span { color: var(--color-text-light); }
.privacy-card-row strong { color: var(--color-navy); text-align: right; }

.privacy-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.privacy-box { background: var(--color-bg-alt); border-radius: var(--radius); padding: 24px; }
.privacy-box-title { font-family: var(--font-heading); font-weight: 700; color: var(--color-navy); margin-bottom: 10px; }
.privacy-basis { font-size: 0.85rem; color: var(--color-navy); margin-top: 12px; }

.privacy-rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.privacy-right { display: flex; justify-content: center; text-align: left; gap: 14px; }
.privacy-right-icon {
  color: var(--color-accent-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.privacy-right strong { display: block; color: var(--color-navy); margin-bottom: 4px; }
.privacy-right p { margin-bottom: 0; font-size: 0.92rem; }

@media (max-width: 700px) {
  .privacy-toc ol { grid-template-columns: 1fr; }
  .privacy-grid-2,
  .privacy-rights-grid { grid-template-columns: 1fr; }
  .privacy-card-row { flex-direction: column; gap: 2px; }
  .privacy-card-row strong { text-align: left; }
  .page-header { padding: 130px 0 50px; }
}
