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

:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --accent: #00ACC1;
  --light: #E3F2FD;
  --text: #212121;
  --muted: #607D8B;
  --white: #ffffff;
  --border: #e0e0e0;
}

body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: #f9fafb; }

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

/* ── Header ── */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: white; }
.logo-text { font-size: 1.15rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.logo-text span { display: block; font-size: .72rem; font-weight: 400; color: var(--muted); }

nav ul { list-style: none; display: flex; gap: 28px; }
nav a { font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .2s; }
nav a:hover, nav a.active { color: var(--primary); }

.menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--accent) 100%);
  color: white; padding: 80px 20px;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35); border-radius: 50px; padding: 6px 18px; font-size: .8rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 20px; }
.hero h1 { font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
.hero h1 span { color: #80DEEA; }
.hero p { font-size: 1.05rem; opacity: .88; line-height: 1.7; margin-bottom: 32px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .2s; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 2px solid white; color: white; margin-left: 14px; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.hero-img {
  background: rgba(255,255,255,.12); border-radius: 20px;
  padding: 40px; text-align: center;
}
.hero-img svg { width: 180px; height: 180px; opacity: .9; }

/* ── Sections ── */
.section { padding: 70px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: .8rem; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.3; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 600px; line-height: 1.7; margin-bottom: 50px; }
.bg-light { background: var(--light); }
.bg-white { background: white; }

/* ── Cards grid ── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: white; border-radius: 16px;
  padding: 32px 26px; border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; padding: 20px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; margin: 0 auto 16px;
}
.step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(90deg, var(--primary-dark), var(--accent));
  color: white; padding: 60px 20px; text-align: center;
}
.cta-band h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.cta-band p { font-size: 1rem; opacity: .88; margin-bottom: 32px; }
.btn-cta { background: white; color: var(--primary); padding: 15px 40px; border-radius: 8px; font-weight: 700; font-size: 1rem; display: inline-block; transition: all .2s; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  padding: 18px 22px; font-weight: 600; font-size: .95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  background: white;
}
.faq-q:hover { background: var(--light); }
.faq-q .arrow { font-size: 1.2rem; color: var(--primary); transition: transform .2s; }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; font-size: .9rem; color: var(--muted); line-height: 1.7; background: white; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ── Page Hero (inner pages) ── */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; padding: 60px 20px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { opacity: .85; font-size: 1rem; }
.breadcrumb { font-size: .82rem; opacity: .7; margin-bottom: 14px; }
.breadcrumb a { opacity: .85; }
.breadcrumb a:hover { opacity: 1; }

/* ── Content ── */
.content-block { background: white; border-radius: 16px; padding: 40px; border: 1px solid var(--border); margin-bottom: 24px; }
.content-block h2 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--light); }
.content-block h3 { font-size: 1rem; font-weight: 700; margin: 18px 0 8px; }
.content-block p { font-size: .92rem; color: #444; line-height: 1.8; margin-bottom: 12px; }
.content-block ul { margin: 10px 0 14px 20px; }
.content-block ul li { font-size: .92rem; color: #444; line-height: 1.7; margin-bottom: 6px; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: white; border-radius: 16px; padding: 32px 24px; text-align: center; border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--light); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.team-avatar svg { width: 44px; height: 44px; fill: var(--primary); }
.team-card h3 { font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .92rem; outline: none; transition: border .2s;
  font-family: inherit; background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit { background: var(--primary); color: white; padding: 13px 32px; border: none; border-radius: 8px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--primary-dark); }
.info-box { background: var(--light); border-radius: 14px; padding: 28px; }
.info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.info-item-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item-icon svg { width: 20px; height: 20px; fill: white; }
.info-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
.info-item p { font-size: .85rem; color: var(--muted); }

/* ── Stats ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 10px; background: white; border-radius: 14px; border: 1px solid var(--border); }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--primary); }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ── Footer ── */
.footer { background: #1a2332; color: #cfd8dc; padding: 50px 20px 20px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 12px; color: #90a4ae; }
.footer h4 { color: white; font-size: .9rem; font-weight: 700; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .85rem; color: #90a4ae; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #2c3e50; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .82rem; color: #607D8B; }

/* ── Mobile ── */
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 20px; border-bottom: 1px solid var(--border); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 16px; }
  .menu-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-img { display: none; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.5rem; }
}
