/* SICA Traders — Premium B2B Corporate Styles */
:root {
  --navy: #0c1a2e;
  --navy-light: #152238;
  --navy-dark: #060e1a;
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --gold-dark: #a8861f;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef1f5;
  --gray-200: #dde3ea;
  --gray-400: #8b95a5;
  --gray-600: #5a6577;
  --gray-800: #2d3748;
  --shadow-sm: 0 2px 8px rgba(12, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(12, 26, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(12, 26, 46, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 900px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-header p { color: var(--gray-600); margin-top: 16px; font-size: 1.05rem; }

section { padding: 96px 0; }
section.bg-light { background: var(--gray-50); }
section.bg-navy { background: var(--navy); color: var(--white); }
section.bg-navy h2, section.bg-navy h3 { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(12, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-desktop { display: flex; align-items: center; gap: 32px; }

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
}

.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold); }

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.header-cta { margin-left: 8px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  z-index: 999;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 16px; width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-globe {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: calc(var(--header-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; }

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--gray-600); font-size: 0.95rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.card-link:hover { color: var(--gold); gap: 10px; }

/* Feature list */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.feature-item h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.feature-item p { font-size: 0.9rem; color: var(--gray-600); }

/* Split cards */
.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.split-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: var(--navy);
}

.split-card.import-card { background: linear-gradient(160deg, rgba(12,26,46,0.85) 0%, rgba(12,26,46,0.95) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23152238" width="400" height="300"/><circle cx="200" cy="150" r="80" fill="none" stroke="%23c9a227" stroke-width="0.5" opacity="0.3"/><circle cx="200" cy="150" r="120" fill="none" stroke="%23c9a227" stroke-width="0.3" opacity="0.2"/></svg>') center/cover; }
.split-card.export-card { background: linear-gradient(160deg, rgba(12,26,46,0.85) 0%, rgba(12,26,46,0.95) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%230c1a2e" width="400" height="300"/><path d="M0 200 Q100 150 200 180 T400 160 L400 300 L0 300Z" fill="%23c9a227" opacity="0.08"/></svg>') center/cover; }

.split-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.split-card h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 12px; }
.split-card p { color: rgba(255,255,255,0.75); margin-bottom: 24px; font-size: 0.95rem; }

/* Motto Section */
.motto-section {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.motto-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.15);
  pointer-events: none;
}

.motto-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 48px;
  position: relative;
}

.motto-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
  position: relative;
}

.motto-line {
  font-size: 1.15rem;
  color: var(--gray-600);
  position: relative;
}

.motto-line strong {
  color: var(--navy);
  font-weight: 600;
}

.motto-line::before {
  content: '●';
  color: var(--gold);
  margin-right: 12px;
  font-size: 0.6rem;
  vertical-align: middle;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.06);
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gray-200) 100%);
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
  z-index: 1;
}

.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--gray-600); font-size: 0.95rem; }

/* Horizontal process (imports/exports) */
.process-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: stretch;
}

.process-horizontal .process-item {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
}

.process-horizontal .step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-horizontal h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0 4px;
}

/* Market cards */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.market-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.market-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.market-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.market-flag {
  font-size: 1.5rem;
}

.market-card p { color: var(--gray-600); font-size: 0.9rem; }

.world-map-section {
  position: relative;
  padding: 48px 0;
  text-align: center;
}

.world-map-visual {
  max-width: 900px;
  margin: 0 auto 48px;
  opacity: 0.9;
}

.world-map-visual svg { width: 100%; height: auto; }

.disclaimer-note {
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 48px;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.leader-photo {
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.leader-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
}

.leader-info { padding: 32px; }
.leader-info h3 { margin-bottom: 4px; }
.leader-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.leader-info p { color: var(--gray-600); font-size: 0.95rem; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.value-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.value-item span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.value-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.product-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.product-category:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.product-category h3 { font-size: 1.05rem; flex: 1; }

.product-note {
  text-align: center;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 48px;
  font-style: italic;
}

/* Forms */
.form-section { padding: 96px 0; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group label .required { color: #c0392b; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #c0392b; }

.field-error {
  font-size: 0.8rem;
  color: #c0392b;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-submit { margin-top: 8px; }

/* Contact page */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.contact-info-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.contact-info-card h3 { margin-bottom: 16px; }
.contact-info-card p { color: var(--gray-600); margin-bottom: 8px; }
.contact-info-card a { color: var(--gold-dark); font-weight: 600; }
.contact-info-card a:hover { color: var(--gold); }

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { font-size: 1.25rem; margin-bottom: 8px; }
.footer-brand .logo-tagline { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--gold); }

.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--gold); }

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-cta .btn {
  box-shadow: var(--shadow-lg);
  animation: pulse-subtle 3s ease-in-out infinite;
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.floating-whatsapp:hover { transform: scale(1.08); }

@keyframes pulse-subtle {
  0%, 100% { box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3); }
  50% { box-shadow: 0 8px 40px rgba(201, 162, 39, 0.5); }
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 24px 96px;
}

.legal-content h1 { margin-bottom: 32px; }
.legal-content h2 { font-size: 1.35rem; margin: 32px 0 16px; }
.legal-content p, .legal-content li { color: var(--gray-600); margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Main content offset */
main { padding-top: 0; }
main.with-header-offset { padding-top: var(--header-height); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-cards { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
  .process-horizontal { flex-direction: column; align-items: center; }
  .process-horizontal .process-item { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 48px 0; }
  .hero-globe { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; }
  .floating-cta { bottom: 16px; right: 16px; }
  .floating-cta .btn-text { display: none; }
  .floating-cta .btn { padding: 14px 18px; border-radius: 50%; width: 56px; height: 56px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .motto-lines { flex-direction: column; gap: 16px; }
}
