/* ══════════════════════════════════
   GOSSAU CONNECT – SHARED STYLES
══════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --orange:     #F5A623;
  --orange-drk: #D4891A;
  --bg:         #F5F0E8;
  --bg-card:    #FFFFFF;
  --bg-section: #EDEAE2;
  --text:       #1A1A1A;
  --text-muted: #888888;
  --border:     #E0D8C8;
  --dark-box:   #2C2416;
  --nav-bg:     #FFFFFF;
  --shadow:     rgba(0,0,0,0.07);
}

[data-theme="dark"] {
  --bg:         #1A1610;
  --bg-card:    #2A2418;
  --bg-section: #221E14;
  --text:       #F0EAD8;
  --text-muted: #9A9080;
  --border:     #3A3428;
  --nav-bg:     #1A1610;
  --shadow:     rgba(0,0,0,0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  transition: background 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── NAVBAR ── */
.navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.3s, border-color 0.3s;
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.nav-brand-name { font-size: 17px; font-weight: 800; line-height: 1.1; color: var(--text); }
.nav-brand-name span { color: var(--orange); }
.nav-brand-sub { font-size: 12px; color: var(--text-muted); }
.nav-controls { display: flex; align-items: center; gap: 8px; }

.lang-select {
  appearance: none;
  background: var(--bg-section);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 28px 6px 10px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: background 0.2s, border-color 0.2s;
}
.lang-select:focus { outline: none; border-color: var(--orange); }

.theme-toggle {
  width: 38px; height: 38px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.2s, transform 0.15s;
}
.theme-toggle:hover { transform: scale(1.08); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange); color: #1A1A1A;
  border: none; padding: 14px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-drk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }

.btn-outline {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange); padding: 12px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}
.btn-outline:hover { background: var(--orange); color: #1A1A1A; }

.btn-ghost {
  background: var(--bg-section); color: var(--text);
  border: 1px solid var(--border); padding: 12px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  transition: background 0.15s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--border); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
  text-align: center;
  transition: background 0.3s;
}
.page-header-icon { font-size: 48px; margin-bottom: 16px; }
.page-header-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--orange);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 5px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 12px;
}
.page-header h1 .hl { color: var(--orange); }
.page-header p { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  transition: background 0.3s, box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px var(--shadow); transform: translateY(-2px); }

/* ── SECTION ── */
.section { padding: 56px 20px; }
.section-inner { max-width: 720px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(24px, 4vw, 36px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px;
}
.section-title .hl { color: var(--orange); }
.section-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.d1{transition-delay:.05s} .d2{transition-delay:.12s} .d3{transition-delay:.19s}
.d4{transition-delay:.26s} .d5{transition-delay:.33s} .d6{transition-delay:.40s}

/* ── FOOTER ── */
footer {
  background: #1C1810; color: rgba(255,255,255,0.6);
  padding: 48px 20px 28px;
}
.footer-inner { max-width: 720px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-name { font-size: 17px; font-weight: 800; color: #fff; }
.footer-brand-name span { color: var(--orange); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 12px; }
.footer-bottom p { margin-bottom: 4px; }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-input {
  width: 100%;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.form-input::placeholder { color: var(--text-muted); }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 300;
  background: var(--orange); color: #1A1A1A;
  border: none; padding: 14px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(245,166,35,0.45);
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), box-shadow 0.2s, opacity 0.3s;
  white-space: nowrap; opacity: 0;
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.sticky-cta:hover { box-shadow: 0 12px 40px rgba(245,166,35,0.55); }

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lang-select { display: none; }
}
