* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --dark: #1e3a5f;
  --mid: #4a90c4;
  --light: #7ec8e3;
  --bg: #f0f4f8;
  --white: #ffffff;
  --text: #2d2d2d;
  --muted: #5a6a7a;
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
nav { background: var(--white); border-bottom: 1px solid #e2e8f0; padding: 1rem 2rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position: sticky; top: 0; z-index: 100; }
.nav-links { display: flex; justify-content: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.lang-toggle { display: flex; align-items: center; gap: 4px; }
.lang-btn { background: none; border: none; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--dark); opacity: 0.4; padding: 2px 4px; border-radius: 3px; transition: opacity 0.15s; font-family: inherit; }
.lang-btn:hover { opacity: 0.8; }
.lang-btn.active { opacity: 1; color: var(--mid); }
.lang-sep { font-size: 12px; color: var(--dark); opacity: 0.3; }
.menu-lang { display: flex; align-items: center; gap: 8px; padding: 0.75rem 0; }
.menu-lang span { font-size: 13px; color: var(--muted); }
.menu-lang-btn { background: none; border: 1px solid #e2e8f0; font-size: 12px; font-weight: 600; color: var(--dark); padding: 3px 10px; cursor: pointer; font-family: inherit; opacity: 0.6; }
.menu-lang-btn:first-of-type { border-radius: 4px 0 0 4px; }
.menu-lang-btn:last-of-type { border-radius: 0 4px 4px 0; margin-left: -1px; }
.menu-lang-btn.active { border-color: var(--mid); color: var(--mid); opacity: 1; }
.logo-nav { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.dots-sm { display: flex; flex-direction: column; gap: 3px; }
.dot-sm-1 { width: 10px; height: 10px; border-radius: 50%; background: var(--dark); }
.dot-sm-2 { width: 8px; height: 8px; border-radius: 50%; background: var(--mid); }
.dot-sm-3 { width: 6px; height: 6px; border-radius: 50%; background: var(--light); }
.logo-text { font-size: 1.15rem; font-weight: 600; color: var(--dark); }
.logo-text span { color: var(--mid); font-weight: 400; }
nav a { color: var(--dark); text-decoration: none; font-size: 15px; margin-left: 2rem; opacity: 0.75; }
nav a:hover { opacity: 1; color: var(--mid); }
.nav-links { display: flex; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.2s; }
.mobile-menu { display: none; position: fixed; top: 57px; left: 0; right: 0; background: var(--white); border-top: 1px solid #e2e8f0; padding: 1rem 2rem; flex-direction: column; gap: 0; z-index: 150; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.mobile-menu a { color: var(--dark); text-decoration: none; font-size: 16px; padding: 0.75rem 0; border-bottom: 1px solid #f0f4f8; opacity: 0.8; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }
@media (max-width: 600px) {
  nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .lang-toggle { display: none; }
  .hamburger { display: flex; }
}
.hero { background: var(--dark); color: var(--white); padding: 5rem 2rem; position: relative; overflow: hidden; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: stretch; }
.hero-text { text-align: left; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { font-size: 2.8rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.2; }
.hero h1 span { color: var(--light); }
.hero p { font-size: 1.15rem; opacity: 0.85; max-width: 520px; margin: 0 0 2rem; }
.hero-media { display: flex; justify-content: center; min-height: 280px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.35); display: block; }
.btn { display: inline-block; background: var(--mid); color: var(--white); padding: 0.85rem 2rem; border-radius: 6px; text-decoration: none; font-size: 15px; font-weight: 500; }
.hero .btn { padding: 0.85rem 1rem; align-self: flex-start; }
.problem-section { background: var(--bg); padding: 5rem 2rem; }
.problem-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.problem { display: flex; flex-direction: column; justify-content: center; }
.problem h2 { font-size: 1.9rem; color: var(--dark); margin-bottom: 1rem; font-weight: 600; }
.problem p { color: var(--muted); margin-bottom: 1rem; }
.problem-visual { display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.quote { background: var(--white); border-left: 4px solid var(--mid); padding: 1.5rem; border-radius: 0 8px 8px 0; font-size: 1.1rem; color: var(--dark); font-style: italic; line-height: 1.5; }
.services-section { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }
.services-section h2 { font-size: 1.9rem; color: var(--dark); margin-bottom: 0.5rem; font-weight: 600; text-align: center; }
.services-section .subtitle { color: var(--muted); text-align: center; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.75rem 1.5rem; transition: border-color 0.2s; }
.service-card:hover { border-color: var(--mid); }
.dot-accent { width: 12px; height: 12px; border-radius: 50%; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 0.5rem; font-weight: 600; }
.service-card p { color: var(--muted); font-size: 0.93rem; }
.photo-break { width: 100%; height: 380px; overflow: hidden; }
.photo-break-img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; display: block; }
.about-section { background: var(--bg); padding: 5rem 2rem; }
.about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; }
.about-avatar { width: 160px; height: 160px; background: var(--dark); border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.about-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-inner h2 { font-size: 1.9rem; color: var(--dark); margin-bottom: 1rem; font-weight: 600; }
.about-inner p { color: var(--muted); margin-bottom: 0.75rem; }
.contact-section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 3rem; align-items: stretch; }
.contact-content { text-align: center; }
.contact-content h2 { font-size: 1.9rem; color: var(--dark); margin-bottom: 0.5rem; font-weight: 600; }
.contact-content p { color: var(--muted); margin-bottom: 2rem; }
.contact-media { display: flex; justify-content: center; min-height: 280px; }
.contact-img { width: 100%; max-width: 300px; height: 100%; object-fit: cover; object-position: top center; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); display: block; }
.contact-card { display: inline-block; background: var(--bg); border-radius: 12px; padding: 2rem 3rem; text-align: left; }
.contact-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--dark); text-decoration: none; font-size: 1rem; }
.contact-row:last-child { margin-bottom: 0; }
.c-icon { color: var(--mid); width: 20px; text-align: center; }
footer { background: var(--dark); color: rgba(255,255,255,0.55); text-align: center; padding: 2rem; font-size: 0.88rem; }
footer a { color: rgba(255,255,255,0.55); text-decoration: none; margin: 0 1rem; }
footer a:hover { color: var(--white); }
.legal-page { padding: 4rem 2rem; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 1.8rem; color: var(--dark); margin-bottom: 2rem; font-weight: 600; }
.legal-page h2 { font-size: 1.1rem; color: var(--dark); margin: 1.5rem 0 0.5rem; font-weight: 600; }
.legal-page p { color: var(--muted); margin-bottom: 0.75rem; }
.legal-page a { color: var(--mid); }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--mid); text-decoration: none; margin-bottom: 2rem; font-size: 0.95rem; }
/* ── Contact Form ─────────────────────────────────────────────── */
#contact-form { max-width: 580px; margin: 0 auto 2rem; text-align: left; }
.form-row { margin-bottom: 1rem; }
.form-row input,
.form-row textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid #d0dae6; border-radius: 8px; font-size: 15px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); transition: border-color 0.2s; }
.form-row input:focus,
.form-row textarea:focus { outline: none; border-color: var(--mid); box-shadow: 0 0 0 3px rgba(74,144,196,0.12); }
.form-row textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--mid); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.form-consent label { font-size: 0.88rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-consent label a { color: var(--mid); }
.form-submit-row { margin-bottom: 1rem; display: flex; justify-content: center; }
#form-submit { border: none; cursor: pointer; font-family: inherit; font-size: 15px; transition: opacity 0.2s; }
#form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg { padding: 0.85rem 1.1rem; border-radius: 8px; font-size: 0.93rem; margin-top: 0.5rem; line-height: 1.5; }
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-msg.error { background: #fdecea; color: #c62828; border: 1px solid #f5c6cb; }
.contact-fallback { color: var(--muted); font-size: 0.9rem; margin-top: 1.5rem; }
.contact-fallback a { color: var(--mid); }

@media (max-width: 640px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text { text-align: center; }
  .hero p { margin: 0 auto 2rem; }
  .hero .btn { align-self: center; }
  .hero-media { min-height: 0; }
  .hero-img { height: auto; aspect-ratio: 3/4; max-width: 220px; margin: 0 auto; }
  .problem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-avatar { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { min-height: 0; }
  .contact-img { height: auto; aspect-ratio: 3/4; max-width: 200px; margin: 0 auto; }
  .hero h1 { font-size: 2rem; }
  .photo-break { height: 220px; }
}
