:root {
  --navy-950: #06162d;
  --navy-900: #0a1e3b;
  --navy-800: #102a4b;
  --navy-700: #183a61;
  --blue: #0c9ee9;
  --purple: #8138f5;
  --purple-dark: #5e21cf;
  --gold: #f5aa4f;
  --text: #17243a;
  --muted: #66748a;
  --line: #e7ebf2;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --shadow: 0 18px 50px rgba(7, 28, 57, .13);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; background: #fff; color: #000; padding: 10px 16px; }
.skip-link:focus { left: 10px; top: 10px; }

.topbar { background: var(--navy-950); color: #dfe9f7; font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.topbar-item { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item a:hover { color: #fff; }
.topbar-item .icon { color: var(--gold); font-size: 12px; }

.navbar { background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(11,31,61,.08); position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 20px rgba(8,29,57,.05); }
.nav-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 255px; }
.brand img { width: 100%; height: auto; }
.main-menu { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 36px; }
.main-menu a { font-weight: 700; font-size: 15px; color: #1c2e48; position: relative; padding: 30px 0; }
.main-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 3px; border-radius: 10px; background: linear-gradient(90deg, var(--purple), var(--blue)); transition: .25s ease; }
.main-menu a:hover::after, .main-menu a.active::after { right: 0; }
.main-menu a:hover, .main-menu a.active { color: var(--purple-dark); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 7px; cursor: pointer; }
.menu-toggle span { display: block; height: 3px; background: var(--navy-900); margin: 5px 0; border-radius: 10px; transition: .25s ease; }

.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--navy-950) 0%, #0b2446 43%, #171d55 72%, #431879 100%); padding: 86px 0 135px; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, transparent, #000 35%, #000); }
.hero::after { content: ""; position: absolute; width: 640px; height: 640px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; right: -190px; top: -250px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 145px rgba(255,255,255,.018); }
.hero-decoration { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-decoration-one { width: 420px; height: 420px; background: radial-gradient(circle, rgba(130,56,245,.36), transparent 68%); left: 32%; top: 18%; }
.hero-decoration-two { width: 320px; height: 320px; background: radial-gradient(circle, rgba(12,158,233,.23), transparent 70%); left: -110px; bottom: -100px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: 70px; align-items: center; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 10px; color: var(--purple-dark); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.eyebrow.light { color: #c9a7ff; }
.hero h1 { margin: 0 0 25px; line-height: .98; letter-spacing: -.045em; font-size: clamp(52px, 7vw, 84px); font-weight: 800; }
.hero h1 span { display: block; }
.hero h1 span:nth-child(2) { color: #bc8aff; }
.hero h1 span:nth-child(3) { color: var(--gold); }
.hero-copy > h2 { max-width: 690px; margin: 0 0 18px; font-size: clamp(22px, 2.2vw, 31px); line-height: 1.25; }
.hero-copy > p:not(.eyebrow) { max-width: 690px; color: #d6deec; font-size: 17px; margin: 0 0 32px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 51px; padding: 0 26px; border-radius: 8px; font-weight: 800; font-size: 14px; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn-primary { color: #fff; background: linear-gradient(90deg, var(--purple), #a23cff); box-shadow: 0 12px 28px rgba(128,56,245,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(128,56,245,.42); }
.btn-full { width: 100%; }
.quote-card { background: #fff; color: var(--text); padding: 35px; border-radius: 20px; box-shadow: 0 30px 75px rgba(0,0,0,.27); position: relative; }
.quote-card::before { content: ""; position: absolute; left: 28px; right: 28px; top: 0; height: 4px; border-radius: 0 0 8px 8px; background: linear-gradient(90deg, var(--gold), var(--purple), var(--blue)); }
.quote-card h2 { margin: -3px 0 23px; font-size: 27px; line-height: 1.25; color: var(--navy-900); }
.quote-card label { display: block; color: #40506a; font-size: 13px; font-weight: 700; margin: 13px 0 5px; }
.quote-card input, .quote-card textarea { width: 100%; border: 1px solid #dfe5ee; border-radius: 7px; background: #f8fafc; color: var(--text); padding: 11px 13px; outline: none; transition: border .2s, box-shadow .2s; }
.quote-card input:focus, .quote-card textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(129,56,245,.12); }
.quote-card textarea { resize: vertical; min-height: 92px; }
.quote-card .btn { margin-top: 18px; }

.benefits { position: relative; z-index: 5; margin-top: -70px; padding-bottom: 70px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { background: #fff; padding: 29px 25px; border-radius: 14px; box-shadow: var(--shadow); display: grid; grid-template-columns: 58px 1fr; gap: 17px; border-bottom: 4px solid transparent; }
.benefit-card.featured { border-bottom-color: var(--purple); }
.benefit-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; color: var(--purple); background: linear-gradient(135deg, rgba(129,56,245,.12), rgba(12,158,233,.11)); }
.benefit-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h2 { margin: 0 0 8px; font-size: 18px; line-height: 1.3; color: var(--navy-900); }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.section { padding: 92px 0; }
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.image-frame { border-radius: 22px; overflow: hidden; position: relative; box-shadow: var(--shadow); background: var(--navy-900); }
.image-frame::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 13px; z-index: 1; pointer-events: none; }
.image-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-copy h2, .section-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(34px, 4vw, 48px); line-height: 1.14; letter-spacing: -.025em; }
.about-copy h3 { margin: 13px 0 20px; color: var(--purple-dark); font-size: 21px; }
.about-copy p { color: #526176; margin: 0 0 15px; }
.check-list { padding: 0; margin: 23px 0 28px; list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 31px; color: #26384f; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: #fff; background: linear-gradient(135deg, var(--purple), var(--blue)); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 900; }

.principles { position: relative; overflow: hidden; background: var(--surface-soft); }
.principles::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 0, rgba(129,56,245,.11), transparent 26%), radial-gradient(circle at 95% 100%, rgba(12,158,233,.12), transparent 28%); }
.section-heading { position: relative; z-index: 1; }
.section-heading.centered { text-align: center; }
.section-heading.narrow { max-width: 830px; margin: 0 auto 48px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); margin: 18px 0 0; }
.principles-grid { position: relative; z-index: 1; margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle-card { background: #fff; border-radius: var(--radius); padding: 35px 30px; border: 1px solid #e8edf5; box-shadow: 0 12px 35px rgba(8,29,57,.07); transition: transform .25s ease, box-shadow .25s ease; }
.principle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.principle-number { display: block; color: rgba(129,56,245,.15); font-size: 50px; line-height: 1; font-weight: 900; }
.principle-card h3 { margin: -8px 0 12px; color: var(--navy-900); font-size: 24px; }
.principle-card p { margin: 0; color: var(--muted); }

.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { border: 1px solid #e6ebf2; border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; box-shadow: 0 10px 28px rgba(8,29,57,.07); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-image { height: 285px; overflow: hidden; background: var(--navy-900); }
.service-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 21%; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.cloud-image { display: grid; place-items: center; background: linear-gradient(145deg, var(--navy-950), #152966 60%, #6c2bd9); position: relative; }
.cloud-image::before, .cloud-image::after { content: ""; position: absolute; border: 1px solid rgba(245,170,79,.45); border-radius: 50%; }
.cloud-image::before { width: 220px; height: 220px; right: -70px; top: -70px; }
.cloud-image::after { width: 140px; height: 140px; left: -50px; bottom: -45px; }
.cloud-visual { width: 150px; height: 150px; border-radius: 30px; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); box-shadow: inset 0 0 30px rgba(255,255,255,.04); }
.cloud-visual svg { width: 110px; height: 90px; fill: rgba(255,255,255,.1); stroke: var(--gold); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.service-content { padding: 26px 25px 29px; display: flex; flex-direction: column; flex: 1; }
.service-content h3 { margin: 0 0 12px; color: var(--navy-900); font-size: 22px; line-height: 1.3; }
.service-content p { margin: 0 0 22px; color: var(--muted); font-size: 15px; }
.text-link { margin-top: auto; color: var(--purple-dark); font-weight: 800; font-size: 14px; display: inline-flex; gap: 9px; align-items: center; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.footer { position: relative; overflow: hidden; color: #d5deeb; background: linear-gradient(130deg, var(--navy-950), var(--navy-900) 65%, #1c164f); }
.footer-glow { position: absolute; width: 500px; height: 500px; right: -220px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(129,56,245,.28), transparent 68%); }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr 1.35fr .65fr .55fr; gap: 42px; padding-top: 76px; padding-bottom: 62px; }
.footer-logo-wrap { width: 265px; background: #fff; border-radius: 10px; padding: 10px 14px; margin-bottom: 23px; }
.footer-about p { margin: 0; max-width: 395px; color: #bdc8d8; font-size: 14px; }
.footer-column h2 { color: #fff; font-size: 18px; margin: 0 0 22px; position: relative; padding-bottom: 10px; }
.footer-column h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; border-radius: 10px; background: linear-gradient(90deg, var(--gold), var(--purple)); }
.footer-list, .footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-list li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; font-size: 14px; }
.footer-list li > span:first-child { color: var(--gold); }
.footer a:hover { color: #fff; }
.footer-links a { color: #c4cedc; font-size: 14px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 41px; height: 41px; border-radius: 50%; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.2); font-weight: 800; transition: .2s ease; }
.social-links a:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); background: rgba(0,0,0,.12); }
.footer-bottom-inner { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-bottom p { margin: 0; color: #aeb9ca; font-size: 13px; }
.footer-bottom a { color: #fff; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; box-shadow: 0 10px 28px rgba(0,0,0,.25); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }
.whatsapp-float svg { width: 34px; height: 34px; fill: #fff; }

@media (max-width: 1050px) {
  .topbar-email { display: none; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 38px; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 760px; }
  .benefits { margin-top: -55px; }
  .about-grid { gap: 45px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1.2fr .7fr; }
  .footer-grid > :last-child { grid-column: 3; }
}

@media (max-width: 820px) {
  .topbar-inner { justify-content: center; gap: 17px; }
  .topbar-item:nth-child(2) { display: none; }
  .nav-inner { height: 74px; }
  .brand { width: 218px; }
  .menu-toggle { display: block; }
  .main-menu { position: absolute; left: 0; right: 0; top: 74px; background: #fff; display: grid; gap: 0; padding: 0 20px; max-height: 0; overflow: hidden; opacity: 0; box-shadow: 0 18px 35px rgba(8,29,57,.13); transition: max-height .3s ease, opacity .2s ease, padding .3s ease; }
  .main-menu.open { max-height: 330px; opacity: 1; padding-top: 10px; padding-bottom: 14px; }
  .main-menu a { display: block; padding: 13px 5px; border-bottom: 1px solid #eef1f6; }
  .main-menu a::after { display: none; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { padding: 68px 0 115px; }
  .hero-grid { grid-template-columns: 1fr; }
  .quote-card { max-width: 620px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 570px; margin-inline: auto; }
  .principles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { min-height: 39px; gap: 10px; justify-content: space-between; }
  .topbar-item { font-size: 11px; }
  .topbar-item:nth-child(4) { display: none; }
  .brand { width: 190px; }
  .hero { padding-top: 55px; }
  .hero h1 { font-size: 49px; }
  .hero-copy > h2 { font-size: 22px; }
  .hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .quote-card { padding: 29px 22px; }
  .benefit-card { grid-template-columns: 48px 1fr; padding: 24px 20px; }
  .benefit-icon { width: 48px; height: 48px; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-image { height: 330px; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 62px; }
  .footer-bottom-inner { flex-direction: column; justify-content: center; text-align: center; padding: 18px 0; }
  .whatsapp-float { width: 53px; height: 53px; right: 15px; bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
