/* ═══════════════════════════════════════════
   Codemi — Contact Page Styles
   Hero, cards, office info, CTA banner
   ═══════════════════════════════════════════ */

/* Hero */
.hero { padding: 80px 0 40px; text-align: center; }
.hero h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero p { font-size: 18px; color: var(--text-secondary); max-width: 480px; margin: 0 auto; }

/* Cards grid */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 40px 0 80px; }
.card { border: 1.5px solid var(--border); border-radius: 16px; padding: 36px; text-align: center; transition: border-color 0.15s; }
.card:hover { border-color: var(--border); }
.card-ico { width: 56px; height: 56px; background: var(--bg-alt); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.card a { font-size: 15px; font-weight: 700; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.card a:hover { color: var(--green); }

/* Office info */
.office { padding: 0 0 80px; display: grid; gap: 64px; align-items: start; }
.office-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 16px; }
.office h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.office p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* CTA banner */
.cta-banner { background: var(--navy); border-radius: 20px; padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 80px; }
.cta-banner h2 { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.cta-banner h2 em { font-style: normal; color: var(--green); }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.btn-demo { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: var(--green); color: var(--white); border-radius: 10px; font-weight: 700; font-size: 16px; text-decoration: none; white-space: nowrap; transition: background 0.15s; }
.btn-demo:hover { background: var(--green-hover); }

@media (max-width: 768px) {
  .cards { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px; }
}
