:root {
  --primary: #1a73b5;
  --primary-dark: #155d93;
  --secondary: #3ca1da;
  --accent: #f7a71b;
  --accent-dark: #e09400;
  --green: #10b981;
  --dark: #0c1f2e;
  --dark-lighter: #132d42;
  --light-bg: #f0f7fc;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: rgba(12, 31, 46, 0.10);
  --shadow-lg: rgba(12, 31, 46, 0.15);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --transition-reveal: opacity 0.5s var(--ease), transform 0.5s var(--ease);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ============== HERO ============== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark-lighter) 50%, #1a3a55);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,167,27,0.10), transparent 70%);
  top: -250px; right: -200px;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,181,0.20), transparent 70%);
  bottom: -200px; left: -150px;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ============== COMPANY CARD ============== */
.company-wrap {
  display: flex;
  justify-content: center;
}
.company-card {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 56px 56px 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ffc764);
}

.company-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.company-logo-frame {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.company-logo-frame img {
  max-height: 140px;
  width: auto;
  display: block;
}

.company-name {
  text-align: center;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 36px;
}

@media (max-width: 640px) {
  .company-logo-frame { padding: 20px 26px; }
  .company-logo-frame img { max-height: 100px; }
}

.company-info {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.company-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}
.company-info-row svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
}
.company-info-row a {
  color: #fff;
  font-weight: 500;
  word-break: break-word;
}
.company-info-row a:hover { color: var(--accent); text-decoration: underline; }
.company-info-row--full { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .company-card { padding: 40px 26px 36px; }
  .company-logo-wrap img { max-height: 100px; }
  .company-info { grid-template-columns: 1fr; gap: 12px; padding-top: 22px; }
  .company-name { margin-bottom: 28px; }
}

/* ============== ABOUT / INFO SECTION ============== */
.section { padding: 100px 0; }
@media (max-width: 1024px) { .section { padding: 70px 0; } }
@media (max-width: 768px)  { .section { padding: 60px 0; } }

.about { background: var(--light-bg); }

.info-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px var(--shadow);
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.info-block + .info-block {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.info-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-block h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 26px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.info-block p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.96rem;
}
.info-block p:last-child { margin-bottom: 0; }
.info-block ul {
  margin: 8px 0 0 24px;
  list-style: disc;
}
.info-block ul li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 6px;
  font-size: 0.96rem;
  padding-left: 4px;
}

@media (max-width: 768px) {
  .info-card { padding: 36px 26px; }
  .info-block + .info-block { margin-top: 32px; padding-top: 32px; }
}

/* ============== SITE FOOTER ============== */
.site-footer {
  background: var(--dark);
  padding: 30px 0;
  text-align: center;
}
.site-footer a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.site-footer a:hover { color: #fff; }

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-reveal);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 460px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px var(--shadow-lg), 0 4px 20px var(--shadow);
  padding: 24px 26px;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  border: 1px solid var(--border);
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-banner h4 svg { width: 22px; height: 22px; color: var(--accent); }
.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}
.cookie-banner p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner-actions { display: flex; }
.cookie-btn-accept {
  flex: 1;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transition: var(--transition);
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,115,181,0.40);
}
@media (max-width: 540px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}

/* ============== LEGAL PAGE (minimal) ============== */
.legal-page { background: #fff; }
.legal-minimal { padding: 60px 0 80px; }
.legal-minimal .legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-back {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 40px;
}
.legal-back:hover { color: var(--primary); }
.legal-back--bottom { margin-top: 60px; margin-bottom: 0; }
.legal-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.legal-intro {
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 1rem;
}
.legal-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 48px 0 16px;
  color: var(--primary);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
}
.legal-content p,
.legal-content li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.legal-content ul { margin: 0 0 14px 22px; list-style: disc; }
.legal-content ul li { margin-bottom: 6px; padding-left: 4px; }
.legal-content a { color: var(--primary); font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.legal-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.legal-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.legal-update {
  margin-top: 36px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.legal-table-wrap {
  overflow-x: auto;
  margin: 14px 0 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-table thead { background: var(--light-bg); }
.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.legal-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 768px) {
  .legal-minimal { padding: 40px 0 60px; }
  .legal-minimal .legal-content { padding: 0 16px; }
}
