/* ===== ANGEL WAY — design system ===== */
:root {
  --primary: #5B3E96;
  --primary-dark: #3D2A66;
  --primary-light: #7C5CB8;
  --accent: #F2765C;
  --accent-light: #FDEEE9;
  --success: #4CAF7D;
  --bg: #FBF9FC;
  --bg-alt: #F4EEFB;
  --surface: #FFFFFF;
  --text: #241F30;
  --text-muted: #6B6478;
  --border: #E9E2F2;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(45, 27, 78, 0.06);
  --shadow-md: 0 10px 30px rgba(45, 27, 78, 0.10);
  --shadow-lg: 0 20px 50px rgba(45, 27, 78, 0.16);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: var(--primary-dark); }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.icon { flex-shrink: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ===== Topbar ===== */
.topbar { background: var(--primary-dark); color: #E9E0FA; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a { opacity: .95; display: inline-flex; align-items: center; gap: 5px; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar span { display: inline-flex; align-items: center; gap: 5px; }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-link { opacity: .75; font-weight: 600; letter-spacing: .3px; }
.lang-link.is-active { opacity: 1; color: #fff; border-bottom: 2px solid var(--accent); }
.crumb-sep, .lang-sep { opacity: .5; }

/* ===== Header ===== */
.site-header { background: rgba(251,249,252,.9); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--primary-dark); letter-spacing: .3px; }
.logo-text em { font-style: normal; color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 500; }
.main-nav a { color: var(--text); padding: 6px 0; position: relative; display: inline-flex; align-items: center; gap: 4px; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.nav-dropdown { position: relative; }
.dropdown-panel { position: absolute; top: 100%; left: -16px; background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 10px; min-width: 260px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; border: 1px solid var(--border); }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; }
.dropdown-panel a:hover { background: var(--bg-alt); color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--primary-dark); padding: 4px; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: 999px; border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-outline { border: 1.5px solid var(--border); color: var(--primary-dark); background: var(--surface); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-light { background: #fff; color: var(--primary-dark); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 64px 0 90px; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; z-index: 0; }
.hero-blob-1 { width: 420px; height: 420px; background: var(--primary-light); top: -160px; right: -100px; }
.hero-blob-2 { width: 320px; height: 320px; background: var(--accent); bottom: -140px; left: -80px; opacity: .2; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-alt); color: var(--primary); font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; letter-spacing: .2px; }
.eyebrow-light { background: rgba(255,255,255,.15); color: #fff; }
.hero h1 { font-size: 44px; margin-bottom: 20px; }
.text-accent { color: var(--accent); }
.hero-text { font-size: 17px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 20px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--primary-dark); }
.hero-visual { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-card { position: absolute; width: 78px; height: 78px; border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; color: var(--primary); animation: float 6s ease-in-out infinite; }
.hero-card-1 { top: 6%; left: -6%; color: var(--accent); }
.hero-card-2 { bottom: 10%; left: -8%; animation-delay: 1.5s; }
.hero-card-3 { top: 42%; right: -8%; animation-delay: 3s; color: var(--success); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== Page hero (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 56px 0 68px; text-align: center; }
.page-hero h1 { color: #fff; font-size: 36px; margin-bottom: 12px; }
.page-hero p { color: #E9E0FA; max-width: 640px; margin: 0 auto; }

/* ===== Breadcrumbs ===== */
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); padding: 16px 24px; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span[aria-current] { color: var(--primary-dark); font-weight: 600; }

/* ===== Sections ===== */
section { padding: 70px 0; }
.section-head { max-width: 680px; margin: 0 0 44px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }
.section-head h2 { font-size: 30px; }
.bg-alt { background: var(--bg-alt); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px; transition: transform .18s ease, box-shadow .18s ease; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--bg-alt); color: var(--primary); margin-bottom: 16px; }
.card-emoji { font-size: 24px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 14px; }
.card-link { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.service-card:hover, .advantage-card:hover, .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.blog-tag { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }

.checklist { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); }
.checklist .icon { color: var(--success); margin-top: 2px; }

/* ===== Two-column ===== */
.two-col-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.two-col.reverse .two-col-grid { grid-template-columns: 1.2fr .8fr; }
.two-col.reverse .two-col-visual { order: 2; }
.two-col-visual { aspect-ratio: 1; background: linear-gradient(135deg, var(--bg-alt), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--primary-light); }

/* ===== Expert ===== */
.expert-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 220px 1fr; gap: 36px; box-shadow: var(--shadow-sm); }
.expert-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; }
.expert-name { font-size: 24px; margin-bottom: 2px; }
.expert-title { color: var(--accent); font-weight: 600; margin-bottom: 14px; display: inline-block; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, #8A4FC7); color: #fff; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 28px; }
.cta-band p { color: #E9E0FA; margin: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Contact form ===== */
.contact-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-size: 22px; }
#leadForm { display: grid; gap: 16px; margin-top: 20px; }
#leadForm label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--primary-dark); }
.req { color: var(--accent); }
#leadForm input, #leadForm textarea { font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); resize: vertical; }
#leadForm input:focus, #leadForm textarea:focus { outline: none; border-color: var(--primary); }
.form-note { font-size: 12px; color: var(--text-muted); margin: 0; }
.form-success { background: #E9F7F0; color: var(--success); padding: 14px; border-radius: var(--radius-sm); font-weight: 600; text-align: center; }

/* ===== Partnership grid icons row ===== */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ===== Duo cards (company / mission) ===== */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo-card { border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 34px; background: var(--surface); }
.duo-card .card-icon { margin-bottom: 18px; }
.duo-card h3 { font-size: 19px; }

/* ===== Steps list ===== */
.steps-list { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: 4px; }
.step-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt); color: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.step-item h3 { font-size: 17px; margin-bottom: 4px; }
.step-item p { margin: 0; font-size: 14.5px; }

/* ===== Callout box ===== */
.callout-box { display: flex; gap: 16px; background: var(--bg-alt); border-left: 4px solid var(--primary); border-radius: var(--radius-md); padding: 24px 26px; margin-top: 8px; }
.callout-box .icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.callout-box h3 { font-size: 16px; margin-bottom: 6px; }
.callout-box p { margin: 0; font-size: 14.5px; }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-list { display: grid; gap: 18px; margin: 28px 0; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item h4 { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); font-weight: 600; margin: 0 0 2px; }
.contact-info-item a, .contact-info-item span.value { font-size: 16px; font-weight: 600; color: var(--primary-dark); }

/* ===== Blog article ===== */
.article { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.article .meta { color: var(--text-muted); font-size: 13.5px; margin-bottom: 8px; }
.article h1 { font-size: 34px; }
.article h2 { font-size: 24px; margin-top: 40px; }
.article h3 { font-size: 19px; margin-top: 28px; }
.article p, .article li { color: var(--text); font-size: 16px; line-height: 1.75; }
.article ul, .article ol { padding-left: 22px; }
.article blockquote { border-left: 3px solid var(--accent); margin: 24px 0; padding: 4px 20px; color: var(--text-muted); font-style: italic; }
.article .callout { background: var(--bg-alt); border-radius: var(--radius-md); padding: 22px 24px; margin: 28px 0; font-size: 15px; }
.article .disclaimer-box { background: var(--accent-light); border-radius: var(--radius-md); padding: 18px 20px; font-size: 13.5px; color: #8a4a37; margin-top: 36px; }

/* ===== Footer ===== */
.site-footer { background: var(--primary-dark); color: #cbbdea; padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: flex; align-items: center; gap: 8px; color: #cbbdea; font-size: 14px; padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-brand p { color: #b3a4d6; font-size: 14px; margin: 16px 0; }
.logo-footer .logo-text { color: #fff; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.footer-disclaimer { font-size: 12px; color: #9a8cc0; margin: 0; line-height: 1.6; }
.footer-copy { font-size: 12.5px; color: #9a8cc0; margin: 0; }

/* ===== WhatsApp float ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,.4); z-index: 90; animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ===== 404 ===== */
.not-found { text-align: center; padding: 110px 24px; }
.not-found h1 { font-size: 64px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid, .two-col-grid, .expert-card { grid-template-columns: 1fr; }
  .two-col.reverse .two-col-visual { order: 0; }
  .hero-visual { height: 320px; margin-top: 28px; }
  .hero-card { width: 60px; height: 60px; }
  .hero-card-1 { left: 2%; }
  .hero-card-2 { left: 0%; }
  .hero-card-3 { right: 2%; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .topbar-inner { font-size: 12px; }
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 84%; max-width: 340px; background: var(--surface); flex-direction: column; align-items: flex-start; padding: 100px 28px 28px; box-shadow: var(--shadow-lg); transition: right .25s ease; overflow-y: auto; gap: 6px; }
  .main-nav.open { right: 0; }
  .main-nav a { padding: 12px 0; width: 100%; }
  .nav-dropdown { width: 100%; }
  .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding-left: 8px; }
  .nav-dropdown.open .dropdown-panel { display: block; }
  .nav-toggle { display: block; }
  .header-actions .btn-primary span { display: none; }
  .hero h1 { font-size: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .expert-card { padding: 26px; }
  .expert-avatar { max-width: 160px; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 48px 0; }
}
