*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1A1B3A;
  --primary-light: #2D2E5F;
  --accent: #FF6B35;
  --accent-light: #FF8A65;
  --accent-dark: #E55722;
  --secondary: #4ECDC4;
  --secondary-dark: #26A69A;
  --light-bg: #FAFBFC;
  --white: #FFFFFF;
  --dark: #0F0F23;
  --text: #2A2D3A;
  --text-muted: #6C7293;
  --border: #E8EBF0;
  --section-alt: #F8F9FB;
  --gradient-primary: linear-gradient(135deg, #1A1B3A 0%, #2D2E5F 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
  --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #26A69A 100%);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26, 27, 58, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 27, 58, 0.12);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =====================
   HEADER
===================== */

.site-header {
  background: var(--gradient-primary);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: translateY(-2px);
}

.header-logo img {
  width: 64px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.brand-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* =====================
   PAGE HERO
===================== */

.page-hero {
  background: var(--gradient-primary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* =====================
   PAGE CONTENT
===================== */

.page-main {
  padding: 100px 0;
}

.page-content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* =====================
   ABOUT BLOCKS
===================== */

.about-block {
  padding: 100px 0;
  position: relative;
}

.about-block:nth-child(even) {
  background: var(--light-bg);
}

.about-block:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B35' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.about-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-block-inner.reverse {
  direction: rtl;
}

.about-block-inner.reverse > * {
  direction: ltr;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-secondary);
  border: 3px solid rgba(78, 205, 196, 0.3);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 1 !important;
  z-index: 1;
}

.image-placeholder svg,
.image-placeholder span {
  position: relative;
  z-index: 2;
}

.block-text .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent-dark);
  border: 2px solid rgba(255, 107, 53, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.block-text .section-tag::before {
  content: '●';
  color: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.block-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.block-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.block-text ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block-text ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}

.block-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

/* Team block */

.team-block {
  padding: 100px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.team-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.team-block-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.team-block-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent);
  border: 2px solid rgba(255, 107, 53, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.team-block-header .section-tag::before {
  content: '●';
  color: var(--accent);
  animation: pulse 2s infinite;
}

.team-block-header h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.team-block-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.team-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient-accent);
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.team-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.team-info {
  padding: 28px 20px;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.team-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* =====================
   EMPTY POLICY BLOCK
===================== */

.policy-empty {
  min-height: 320px;
  background: var(--gradient-secondary);
  border: 3px solid rgba(78, 205, 196, 0.3);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.policy-empty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* =====================
   FOOTER
===================== */

.site-footer {
  background: var(--dark);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}

.footer-brand-name span {
  color: var(--accent);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  font-weight: 300;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* =====================
   POLICY CONTENT
===================== */

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-updated {
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--text-muted);
}

.policy-updated strong {
  color: var(--primary);
  font-weight: 700;
}

.policy-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.policy-section h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 24px 0 12px 0;
  letter-spacing: -0.3px;
}

.policy-section p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.policy-section ul {
  margin: 16px 0;
  padding-left: 0;
}

.policy-section ul li {
  font-size: 15px;
  color: var(--text);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

.policy-section ul li strong {
  color: var(--primary);
  font-weight: 700;
}

.policy-section a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.policy-section a:hover {
  color: var(--accent-dark);
}

.contact-info {
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 15px;
}

.contact-info p:first-child {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 12px;
}

/* Team bio styles */
.team-bio {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.team-bio p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 32px; }
  .about-block-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-block-inner.reverse { direction: ltr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .about-block { padding: 80px 0; }
  .team-block { padding: 80px 0; }
  .page-hero { padding: 60px 0 48px; }
  .container { padding: 0 20px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 28px; }
  .block-text h2 { font-size: 28px; }
  .team-block-header h2 { font-size: 32px; }
}