:root { --bg: #ffffff; --surface: #ffffff; --text: #333333; --muted: #666666; --brand-deep: #0050A0; --brand-deep-rgb: 0,80,160; --brand-sky: #5DA9E9; --brand-sky-rgb: 93,169,233; --secondary: #A0A0A0; --secondary-rgb: 160,160,160; --success: #2fbf71; --shadow: 0 10px 28px rgba(0,80,160,0.15); }
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); }
body { opacity: 1; transition: opacity .2s ease; }
body.fade-out { opacity: 0; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.site-header { position: sticky; top: 0; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 12px rgba(0,0,0,0.04); z-index: 50; transition: box-shadow .25s ease; }
.site-header.compact { box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 150px; width: auto; display: block; }
.brand-name { font-weight: 600; }
.site-nav { display: flex; gap: 20px; }
.site-nav a { text-decoration: none; color: #334155; font-weight: 600; padding: 10px 12px; border-radius: 10px; }
.site-nav a:hover { color: var(--text); background: rgba(148,163,184,0.12); }
.site-nav .active { color: #fff; background: var(--brand-deep); box-shadow: 0 6px 14px rgba(var(--brand-deep-rgb),0.25); }
.nav-toggle { display: none; background: transparent; border: none; color: var(--text); font-size: 22px; padding: 8px; border-radius: 8px; }
.hero { padding: 72px 0 48px; background: #ffffff; }
.bg-pro { background-image: linear-gradient(0deg, rgba(255,255,255,0.88), rgba(255,255,255,0.88)), url('../ics-2.jpg'); background-size: cover; background-position: center; }
.hero-inner { display: grid; gap: 18px; }
.hero h1 { margin: 0; font-size: 44px; line-height: 1.1; color: var(--brand-deep); font-weight: 800; }
.scroll-letters { display: inline-block; }
.scroll-letters .letter { display: inline-block; opacity: 0; transform: translateY(28px); transition: transform .6s ease, opacity .6s ease; }
.scroll-letters.in .letter { opacity: 1; transform: translateY(0); }
.scroll-letters { display: inline-block; }
.scroll-letters .letter { display: inline-block; opacity: 0; transform: translateY(22px); transition: transform .5s ease, opacity .5s ease; }
.scroll-letters.in .letter { opacity: 1; transform: translateY(0); }
.lead { font-size: 18px; color: var(--muted); max-width: 800px; }
.cta-group { display: flex; gap: 12px; margin-top: 8px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 14px; font-weight: 700; text-decoration: none; cursor: pointer; border: 1px solid transparent; font-size: 16px; }
.button.primary { background: linear-gradient(180deg, var(--brand-sky), var(--brand-deep)); color: #fff; box-shadow: 0 8px 20px rgba(0,80,160,0.18); }
.button.ghost { background: transparent; color: var(--text); border-color: rgba(148,163,184,0.35); }
.button.primary:hover { filter: brightness(1.06); box-shadow: 0 0 0 3px rgba(var(--brand-sky-rgb),0.25), 0 12px 24px rgba(0,80,160,0.22); }
.button.ghost:hover { background: rgba(148,163,184,0.12); }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.badge { display: inline-flex; align-items: center; padding: 8px 10px; border-radius: 999px; font-size: 13px; color: #0b3a6f; background: rgba(var(--brand-sky-rgb),0.18); border: 1px solid rgba(var(--brand-sky-rgb),0.35); }
.section { padding: 48px 0; background: #ffffff; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }
.section-head { display: grid; gap: 8px; margin-bottom: 18px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.reveal-in, .reveal.in { opacity: 1; transform: translateY(0); }
.stagger .card { opacity: 0; transform: translateY(24px); transition: transform .6s ease, opacity .6s ease; }
.stagger.in .card { opacity: 1; transform: translateY(0); }
.stagger.in .card:nth-child(1) { transition-delay: .06s; }
.stagger.in .card:nth-child(2) { transition-delay: .12s; }
.stagger.in .card:nth-child(3) { transition-delay: .18s; }
.stagger.in .card:nth-child(4) { transition-delay: .24s; }
.stagger.in .card:nth-child(5) { transition-delay: .30s; }
.stagger.in .card:nth-child(6) { transition-delay: .36s; }
.stagger .card { opacity: 0; transform: translateY(20px); transition: transform .5s ease, opacity .5s ease; }
.stagger.in .card { opacity: 1; transform: translateY(0); }
.stagger.in .card:nth-child(1) { transition-delay: .04s; }
.stagger.in .card:nth-child(2) { transition-delay: .08s; }
.stagger.in .card:nth-child(3) { transition-delay: .12s; }
.stagger.in .card:nth-child(4) { transition-delay: .16s; }
.stagger.in .card:nth-child(5) { transition-delay: .20s; }
.stagger.in .card:nth-child(6) { transition-delay: .24s; }
.card { background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 18px; display: grid; gap: 8px; box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.card-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(var(--brand-sky-rgb),0.18); color: #0b3a6f; font-weight: 700; }
.card-icon svg { width: 18px; height: 18px; }
.accent-red { background: rgba(210,32,47,0.25); }
.accent-green { background: rgba(47,191,113,0.25); }
.accent-blue { background: rgba(46,117,182,0.25); }
.accent-purple { background: rgba(124,58,237,0.25); }
.highlight { background: #ffffff; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.highlight-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; }
.highlight-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric { display: grid; gap: 2px; padding: 16px; border: 1px dashed rgba(148,163,184,0.28); border-radius: 12px; }
.metric-value { font-size: 28px; font-weight: 700; }
.metric-label { color: var(--muted); }
.page-head h1 { margin: 0; font-size: 32px; color: var(--brand-deep); font-weight: 700; }
.list { margin: 0; padding-left: 18px; color: #475569; }
.callout { background: radial-gradient(800px 300px at 20% 0px, rgba(47,191,113,0.22), transparent); text-align: center; }
.callout-inner { display: grid; gap: 8px; justify-items: center; }
.contact-section { background: #ffffff; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; }
.contact-info { display: grid; gap: 12px; }
.info-item { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; padding: 14px; border: 1px solid rgba(148,163,184,0.18); border-radius: 12px; }
.info-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(148,163,184,0.18); color: var(--brand-deep); }
.info-icon svg { width: 18px; height: 18px; }
.info-label { font-weight: 600; }
.contact-assurance { margin-top: 8px; padding: 16px; background: rgba(47,191,113,0.06); border: 1px solid rgba(47,191,113,0.15); border-radius: 12px; }
.contact-assurance h3 { margin: 0 0 10px; font-size: 15px; color: var(--brand-deep); }
.contact-assurance ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.contact-assurance li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #475569; }
.contact-form { display: grid; gap: 16px; padding: 18px; border: 1px solid rgba(148,163,184,0.18); border-radius: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 600; margin-bottom: 6px; color: #0b3a6f; }
input, textarea { width: 100%; padding: 12px 12px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.12); background: #ffffff; color: var(--text); outline: none; }
input:focus, textarea:focus { border-color: var(--brand-sky); box-shadow: 0 0 0 3px rgba(var(--brand-sky-rgb),0.35), 0 8px 18px rgba(93,169,233,0.25); }
.field-error { margin-top: 6px; color: #fecaca; font-size: 13px; min-height: 18px; }
.form-actions { display: flex; align-items: center; gap: 12px; }
.form-status { color: var(--muted); }
.badge-cert { background: rgba(0,80,160,0.12); color: #0050A0; border-color: rgba(0,80,160,0.3); font-weight: 600; }
.partner-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner-item { text-align: center; padding: 28px 20px; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; background: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.partner-badge-large { font-size: 24px; font-weight: 800; color: var(--brand-deep); margin-bottom: 8px; }
.partner-item p { color: var(--muted); margin: 0; font-size: 14px; }
.cert-list { list-style: none; margin: 8px 0 0; padding: 0; text-align: left; }
.cert-list li { padding: 4px 0; color: #475569; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.04); }
.cert-list li:last-child { border-bottom: none; }
.about-content { display: grid; gap: 32px; }
.about-block h2 { color: var(--brand-deep); margin: 0 0 12px; font-size: 24px; }
.about-block p { color: #475569; line-height: 1.7; margin: 0; }
.about-list { margin: 0; padding-left: 20px; color: #475569; line-height: 1.8; }
.about-list li { margin-bottom: 8px; }
.trust-bar { padding: 28px 0; background: var(--brand-deep); color: #ffffff; }
.trust-inner { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-number { display: flex; justify-content: center; font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.75); }
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }
.founder-card { display: grid; grid-template-columns: auto 1fr; gap: 28px; padding: 28px; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; background: #ffffff; box-shadow: 0 6px 20px rgba(0,0,0,0.06); align-items: start; }
.founder-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-sky), var(--brand-deep)); color: #fff; display: grid; place-items: center; font-size: 28px; font-weight: 800; }
.founder-info h3 { margin: 0 0 4px; font-size: 22px; color: var(--brand-deep); }
.founder-role { color: var(--muted); margin: 0 0 12px; font-size: 14px; font-weight: 600; }
.founder-bio { color: #475569; line-height: 1.7; margin: 0 0 16px; font-size: 14px; }
.founder-certs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.cert-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; background: rgba(0,80,160,0.08); color: var(--brand-deep); border: 1px solid rgba(0,80,160,0.15); }
.founder-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-deep); font-weight: 600; text-decoration: none; font-size: 14px; }
.founder-link:hover { text-decoration: underline; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { text-align: center; padding: 20px 16px; position: relative; }
.step-number { font-size: 32px; font-weight: 800; color: rgba(var(--brand-sky-rgb),0.25); margin-bottom: 8px; }
.process-step h3 { color: var(--brand-deep); margin: 0 0 8px; font-size: 18px; }
.process-step p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.6; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { padding: 24px; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; background: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.04); display: grid; gap: 12px; }
.testimonial-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { color: #475569; margin: 0; font-size: 14px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-deep); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { color: var(--muted); font-size: 12px; }
.site-footer { border-top: 0; padding: 28px 0; background: var(--brand-deep); margin-top: 24px; box-shadow: 0 -6px 16px rgba(0,80,160,0.12); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-links a:hover { color: #ffffff; text-shadow: 0 0 6px rgba(93,169,233,0.55); }
.site-footer .footer-brand, .site-footer .footer-copy { color: #ffffff; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } .highlight-inner { grid-template-columns: 1fr; } .highlight-metrics { grid-template-columns: repeat(3, 1fr); } .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .partner-logos { grid-template-columns: 1fr; } .process-steps { grid-template-columns: repeat(2, 1fr); } .testimonial-grid { grid-template-columns: 1fr; } .trust-inner { gap: 20px; } .founder-card { grid-template-columns: 1fr; justify-items: center; text-align: center; } .founder-certs { justify-content: center; } }
@media (max-width: 640px) { .site-nav { display: none; position: absolute; top: 64px; right: 24px; background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; flex-direction: column; padding: 10px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); } .site-nav a { padding: 10px 14px; } .nav-toggle { display: inline-block; } .hero h1 { font-size: 38px; } .cards { grid-template-columns: 1fr; } .footer-inner { grid-template-columns: 1fr; justify-items: center; } .process-steps { grid-template-columns: 1fr; } .trust-inner { flex-direction: column; gap: 16px; } .trust-divider { display: none; } }
