@import url('https://fonts.googleapis.com/css2?family=Literata:ital,wght@0,400;0,500;0,600;0,700;0,800&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --teal: #2CB4B9;
  --green: #2CB967;
  --dark-navy: #152230;
  --mid-navy: #203143;
  --card-bg: #1a2d40;
  --card-border: #2a3f55;
  --text-primary: #ffffff;
  --text-secondary: #b0bec5;
  --font-heading: 'Literata', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(21, 34, 48, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 180, 185, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.nav-logo span {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links .btn-contact {
  background: var(--teal);
  color: var(--dark-navy);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
}

.nav-links .btn-contact:hover {
  background: #25a0a5;
}

.hamburger {
  display: none;
  background: var(--teal);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark-navy);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--mid-navy);
  padding: 32px 24px;
  z-index: 999;
  border-radius: 0 0 16px 16px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--teal);
}

.mobile-menu .btn-contact-mobile {
  display: block;
  text-align: center;
  background: var(--teal);
  color: var(--dark-navy);
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 16px;
}

/* HERO */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--teal);
}

.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 16px;
}

/* PAGE HERO (for inner pages) */
.page-hero {
  padding: 140px 0 60px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.page-hero h1 .highlight {
  color: var(--teal);
}

.page-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
}

/* SECTIONS */
section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: -32px auto 48px;
  font-size: 15px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}

.card:hover {
  border-color: var(--teal);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 24px;
}

.card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FEATURE SECTION (alternating text/image) */
.feature-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-block.reverse {
  direction: rtl;
}

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

.feature-block h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.feature-block img {
  width: 100%;
  border-radius: 12px;
}

/* BORDERED SECTION */
.bordered-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 48px;
  margin: 32px 0;
}

.bordered-section h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* PHILOSOPHY / MISSION */
.philosophy {
  text-align: center;
  padding: 80px 0;
}

.philosophy h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.philosophy p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.philosophy .highlight-text {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}

.pill-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
}

/* FORMS */
.form-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 48px;
  margin: 32px 0;
}

.form-section h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.form-section > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-navy);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0bec5' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.consent-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--teal);
}

.consent-row a {
  color: var(--teal);
  text-decoration: underline;
}

.btn-submit {
  display: block;
  margin: 24px auto 0;
  background: var(--teal);
  color: var(--dark-navy);
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #25a0a5;
}

/* FOOTER */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--card-border);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-inner a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-inner a:hover {
  color: var(--teal);
}

.footer-inner strong {
  color: var(--text-primary);
}

/* PRIVACY PAGE */
.privacy-content {
  padding: 40px 0 80px;
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 16px;
}

.privacy-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
}

.privacy-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.privacy-content ul {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 8px 0 16px 24px;
  line-height: 1.8;
}

.privacy-content a {
  color: var(--teal);
  text-decoration: underline;
}

.privacy-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
}

/* GLOBAL PRESENCE */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.presence-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.presence-card .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  margin-bottom: 12px;
}

.presence-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.presence-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* REGULATORY CARDS */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.reg-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
}

.reg-card .reg-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 20px;
}

.reg-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.reg-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PARTNERSHIP PRINCIPLES */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.principle-card {
  text-align: center;
  padding: 24px;
}

.principle-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-style: italic;
}

.principle-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* BACKGROUND GLOW EFFECTS */
.bg-glow {
  position: relative;
}

.bg-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(44, 180, 185, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-image {
    order: -1;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .card-grid,
  .card-grid-3,
  .card-grid-4,
  .reg-grid,
  .presence-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .feature-block {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .feature-block h2 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .bordered-section {
    padding: 28px;
  }

  .form-section {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .philosophy h2 {
    font-size: 28px;
  }

  .pill-tags {
    gap: 10px;
  }
}