/* Gentoolink Demo Sites — Shared Design System */

:root {
  --primary: #1e3a5f;
  --primary-light: #2d527a;
  --accent: #e8722a;
  --accent-hover: #d4621f;
  --bg: #f7f7f5;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #e0e0e0;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --max-w: 1100px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── Header ── */
.site-header {
  background: var(--primary);
  color: var(--white);
  padding: 0 24px;
}
.site-header .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.logo span { color: var(--accent); }
.tagline {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 2px;
}
.header-phone {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-phone:hover { background: var(--accent-hover); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 24px 60px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-bar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.trust-item strong { color: var(--text); }
.trust-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Section ── */
.section {
  padding: 64px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── CTA Strip ── */
.cta-strip {
  background: var(--primary);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.cta-strip h2 { font-size: 1.75rem; margin-bottom: 12px; }
.cta-strip p { opacity: 0.8; margin-bottom: 24px; }

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.contact-card p { font-size: 0.9rem; color: var(--text-muted); }
.contact-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover { text-decoration: underline; }

/* ── Footer ── */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.site-footer a:hover { color: var(--white); }

/* ── Mobile Nav ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .site-header .inner { flex-wrap: wrap; gap: 12px; }
  .header-phone { font-size: 0.85rem; padding: 8px 16px; }
  .hero { padding: 48px 24px 40px; }
  .hero h1 { font-size: 1.8rem; }
}

/* ── Form ── */
.form-section { background: var(--white); padding: 48px 24px; }
.form-box {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-box h2 {
  font-size: 1.5rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-box p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  background: #ecfdf5;
  color: #065f46;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  display: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
