:root {
  --ctpl-navy: #0b1f3a;
  --ctpl-navy-2: #102b50;
  --ctpl-blue: #1268b3;
  --ctpl-blue-2: #2d8bd2;
  --ctpl-sky: #e9f5ff;
  --ctpl-gold: #f1b84b;
  --ctpl-ink: #102037;
  --ctpl-muted: #657489;
  --ctpl-line: #dfe7f0;
  --ctpl-soft: #f6f9fc;
  --ctpl-white: #ffffff;
  --ctpl-success: #1eb980;
  --ctpl-radius-sm: 14px;
  --ctpl-radius: 24px;
  --ctpl-radius-lg: 34px;
  --ctpl-shadow: 0 24px 70px rgba(11,31,58,.12);
  --ctpl-shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ctpl-body { margin: 0; font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ctpl-ink); background: var(--ctpl-white); -webkit-font-smoothing: antialiased; }
body.ctpl-menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
.ctpl-shell { width: min(var(--ctpl-shell), calc(100% - 40px)); margin-inline: auto; }
.ctpl-main { overflow: clip; }

.ctpl-topbar { background: var(--ctpl-navy); color: rgba(255,255,255,.78); font-size: 12px; letter-spacing: .02em; }
.ctpl-topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ctpl-topbar__links { display: flex; align-items: center; gap: 10px; }
.ctpl-topbar a { text-decoration: none; transition: color .2s ease; }
.ctpl-topbar a:hover { color: #fff; }

.ctpl-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(223,231,240,.8); transition: box-shadow .25s ease, background .25s ease; }
.ctpl-header.is-scrolled { box-shadow: 0 10px 35px rgba(11,31,58,.08); background: rgba(255,255,255,.97); }
.ctpl-header__inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ctpl-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 205px; }
.ctpl-brand__mark { position: relative; width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(145deg,var(--ctpl-blue),var(--ctpl-navy)); display: grid; place-items: center; box-shadow: 0 12px 28px rgba(18,104,179,.24); overflow: hidden; }
.ctpl-brand__mark span { position: absolute; width: 7px; border-radius: 9px 9px 2px 2px; background: #fff; bottom: 10px; opacity: .95; }
.ctpl-brand__mark span:nth-child(1){ height: 12px; left: 10px; }
.ctpl-brand__mark span:nth-child(2){ height: 20px; left: 18px; }
.ctpl-brand__mark span:nth-child(3){ height: 27px; left: 26px; background: var(--ctpl-gold); }
.ctpl-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.ctpl-brand__text strong { color: var(--ctpl-navy); font-size: 15px; letter-spacing: .045em; }
.ctpl-brand__text small { color: var(--ctpl-muted); font-size: 10px; margin-top: 4px; letter-spacing: .05em; text-transform: uppercase; }
.ctpl-brand__image { max-height: 52px; width: auto; object-fit: contain; }
.ctpl-nav { display: flex; align-items: center; gap: 26px; }
.ctpl-nav ul { list-style: none; display: flex; align-items: center; gap: 24px; padding: 0; margin: 0; }
.ctpl-nav ul a { text-decoration: none; font-size: 13px; font-weight: 700; color: #34445a; position: relative; padding: 10px 0; }
.ctpl-nav ul a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--ctpl-blue); border-radius: 3px; transition: right .25s ease; }
.ctpl-nav ul a:hover::after { right: 0; }
.ctpl-menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 12px; background: #f3f7fb; cursor: pointer; }
.ctpl-menu-toggle span { display: block; height: 2px; background: var(--ctpl-navy); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.ctpl-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 22px; border-radius: 14px; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .01em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.ctpl-button:hover { transform: translateY(-2px); }
.ctpl-button--small { min-height: 42px; padding: 0 17px; border-radius: 12px; }
.ctpl-button--dark { color: #fff; background: var(--ctpl-navy); box-shadow: 0 12px 24px rgba(11,31,58,.15); }
.ctpl-button--dark:hover { background: var(--ctpl-blue); }
.ctpl-button--primary { color: #fff; background: linear-gradient(135deg,var(--ctpl-blue),#0e5a9c); box-shadow: 0 16px 34px rgba(18,104,179,.23); }
.ctpl-button--primary:hover { box-shadow: 0 20px 40px rgba(18,104,179,.29); }
.ctpl-button--light { background: #fff; color: var(--ctpl-navy); box-shadow: 0 16px 34px rgba(0,0,0,.12); white-space: nowrap; }

.ctpl-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--ctpl-blue); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 17px; }
.ctpl-eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; border-radius: 9px; }
.ctpl-eyebrow--light { color: rgba(255,255,255,.8); }

.ctpl-hero { position: relative; background: linear-gradient(180deg,#f9fcff 0%,#edf6ff 52%,#fff 100%); padding: 78px 0 70px; min-height: 700px; display: flex; align-items: center; }
.ctpl-hero__grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 64px; align-items: center; z-index: 2; }
.ctpl-hero__copy h1 { font-family: 'DM Serif Display', Georgia, serif; color: var(--ctpl-navy); font-weight: 400; font-size: clamp(48px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 24px; max-width: 780px; }
.ctpl-hero__copy > p { color: var(--ctpl-muted); font-size: 17px; line-height: 1.75; max-width: 610px; margin: 0 0 30px; }
.ctpl-hero__actions { display: flex; align-items: center; gap: 23px; flex-wrap: wrap; }
.ctpl-text-link { text-decoration: none; color: var(--ctpl-navy); font-size: 13px; font-weight: 800; }
.ctpl-text-link span { display: inline-block; margin-left: 6px; transition: transform .2s ease; }
.ctpl-text-link:hover span { transform: translateX(4px); }
.ctpl-hero__trust { margin-top: 28px; display: flex; align-items: center; gap: 10px; color: #68778c; font-size: 12px; font-weight: 600; }
.ctpl-trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ctpl-success); box-shadow: 0 0 0 5px rgba(30,185,128,.12); }
.ctpl-hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; pointer-events: none; }
.ctpl-hero__glow--one { width: 420px; height: 420px; right: -180px; top: -120px; background: radial-gradient(circle,rgba(45,139,210,.20),rgba(45,139,210,0)); }
.ctpl-hero__glow--two { width: 320px; height: 320px; left: -140px; bottom: -120px; background: radial-gradient(circle,rgba(241,184,75,.18),rgba(241,184,75,0)); }
.ctpl-hero__visual { position: relative; min-height: 510px; }
.ctpl-visual-card--main { position: absolute; inset: 24px 22px 22px 35px; border-radius: 32px; background: linear-gradient(145deg,#0d2544,#123c68 58%,#176eb1); box-shadow: 0 35px 80px rgba(11,31,58,.24); overflow: hidden; padding: 30px; color: white; }
.ctpl-visual-card--main::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.16) 1px,transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom,black,transparent 80%); opacity: .35; }
.ctpl-visual-kicker { position: relative; z-index: 2; font-size: 10px; font-weight: 800; letter-spacing: .15em; opacity: .75; }
.ctpl-visual-illustration { position: absolute; inset: 55px 0 96px; display: grid; place-items: center; }
.ctpl-orbit { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: ctpl-spin 22s linear infinite; }
.ctpl-orbit::after { content: ''; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--ctpl-gold); top: 12%; left: 20%; box-shadow: 0 0 24px rgba(241,184,75,.7); }
.ctpl-orbit--one { width: 290px; height: 290px; }
.ctpl-orbit--two { width: 220px; height: 220px; animation-duration: 18s; animation-direction: reverse; }
.ctpl-orbit--two::after { background: #fff; top: 72%; left: 86%; }
.ctpl-orbit--three { width: 150px; height: 150px; animation-duration: 14s; }
.ctpl-orbit--three::after { background: #6cc5ff; top: 42%; left: -2%; }
.ctpl-visual-center { width: 92px; height: 92px; border-radius: 26px; background: rgba(255,255,255,.95); box-shadow: 0 22px 45px rgba(0,0,0,.25); display: flex; align-items: flex-end; justify-content: center; gap: 7px; padding-bottom: 24px; transform: rotate(-2deg); }
.ctpl-visual-center span { width: 11px; border-radius: 10px 10px 3px 3px; background: var(--ctpl-blue); }
.ctpl-visual-center span:nth-child(1){ height: 20px; }
.ctpl-visual-center span:nth-child(2){ height: 34px; }
.ctpl-visual-center span:nth-child(3){ height: 48px; background: var(--ctpl-gold); }
.ctpl-visual-caption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 27px; display: flex; justify-content: space-between; align-items: end; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; }
.ctpl-visual-caption strong { font-size: 14px; }
.ctpl-visual-caption span { font-size: 10px; opacity: .66; max-width: 190px; text-align: right; line-height: 1.5; }
.ctpl-float-card { position: absolute; z-index: 4; background: rgba(255,255,255,.93); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 18px 40px rgba(11,31,58,.13); border-radius: 16px; padding: 13px 15px; display: flex; align-items: center; gap: 11px; min-width: 205px; animation: ctpl-float 5s ease-in-out infinite; }
.ctpl-float-card--top { right: -18px; top: 85px; }
.ctpl-float-card--bottom { left: 0; bottom: 58px; animation-delay: -2.2s; }
.ctpl-mini-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--ctpl-blue); background: var(--ctpl-sky); font-weight: 900; }
.ctpl-float-card strong { display: block; color: var(--ctpl-navy); font-size: 11px; }
.ctpl-float-card small { color: var(--ctpl-muted); font-size: 9px; }
@keyframes ctpl-spin { to { transform: rotate(360deg); } }
@keyframes ctpl-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.ctpl-stats { margin-top: -18px; position: relative; z-index: 5; }
.ctpl-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border: 1px solid var(--ctpl-line); border-radius: 24px; box-shadow: 0 22px 55px rgba(11,31,58,.09); overflow: hidden; }
.ctpl-stat { padding: 29px 28px; position: relative; }
.ctpl-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 24%; bottom: 24%; width: 1px; background: var(--ctpl-line); }
.ctpl-stat strong { display: block; font-family: 'DM Serif Display', Georgia, serif; font-size: 31px; color: var(--ctpl-navy); font-weight: 400; }
.ctpl-stat span { color: var(--ctpl-muted); font-size: 11px; font-weight: 700; }

.ctpl-section { padding: 112px 0; }
.ctpl-section--light { background: #fff; }
.ctpl-about { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: start; }
.ctpl-about__intro h2, .ctpl-section-heading h2, .ctpl-agreements-copy h2, .ctpl-contact-copy h2 { margin: 0 0 22px; color: var(--ctpl-navy); font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: clamp(36px,4vw,52px); line-height: 1.08; letter-spacing: -.025em; }
.ctpl-about__intro > p, .ctpl-agreements-copy > p, .ctpl-contact-copy > p { color: var(--ctpl-muted); line-height: 1.8; font-size: 15px; }
.ctpl-about__pill { display: inline-flex; margin-top: 18px; border: 1px solid #d9e8f6; background: #f6fbff; color: var(--ctpl-blue); border-radius: 999px; padding: 9px 13px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.ctpl-about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ctpl-purpose-card { background: linear-gradient(160deg,#f7fbff,#fff); border: 1px solid var(--ctpl-line); border-radius: 23px; padding: 30px; min-height: 290px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.ctpl-purpose-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(11,31,58,.08); border-color: #cbddec; }
.ctpl-purpose-card > span { color: var(--ctpl-blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.ctpl-purpose-card h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 28px; font-weight: 400; color: var(--ctpl-navy); margin: 75px 0 12px; }
.ctpl-purpose-card p { color: var(--ctpl-muted); font-size: 13px; line-height: 1.7; margin: 0; }
.ctpl-values { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--ctpl-line); margin-top: 75px; }
.ctpl-value { padding: 34px 27px 0; position: relative; }
.ctpl-value:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 32px; bottom: 0; width: 1px; background: var(--ctpl-line); }
.ctpl-value__index { color: var(--ctpl-blue); font-size: 10px; font-weight: 800; }
.ctpl-value h3 { margin: 27px 0 8px; color: var(--ctpl-navy); font-size: 15px; }
.ctpl-value p { margin: 0; color: var(--ctpl-muted); font-size: 12px; line-height: 1.65; }

.ctpl-section--services { background: var(--ctpl-soft); }
.ctpl-section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.ctpl-section-heading h2 { max-width: 730px; margin-bottom: 0; }
.ctpl-section-heading > p { color: var(--ctpl-muted); line-height: 1.75; font-size: 13px; margin: 0 0 8px; }
.ctpl-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.ctpl-service-card { min-height: 310px; padding: 28px; border-radius: 24px; border: 1px solid var(--ctpl-line); background: #fff; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.ctpl-service-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -90px; bottom: -100px; background: radial-gradient(circle,rgba(18,104,179,.13),rgba(18,104,179,0)); transition: transform .35s ease; }
.ctpl-service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(11,31,58,.08); border-color: #c8dbea; }
.ctpl-service-card:hover::after { transform: scale(1.35); }
.ctpl-service-card__top { display: flex; align-items: center; justify-content: space-between; }
.ctpl-service-card__number { color: #8d9aac; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.ctpl-service-card__icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--ctpl-sky); color: var(--ctpl-blue); font-weight: 800; }
.ctpl-service-card h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; font-size: 28px; color: var(--ctpl-navy); margin: 72px 0 10px; }
.ctpl-service-card p { color: var(--ctpl-muted); font-size: 13px; line-height: 1.7; max-width: 440px; }
.ctpl-service-card > a { position: absolute; bottom: 27px; left: 28px; text-decoration: none; color: var(--ctpl-blue); font-size: 11px; font-weight: 800; }
.ctpl-service-card > a span { margin-left: 4px; }

.ctpl-section--agreements { background: var(--ctpl-navy); color: #fff; }
.ctpl-agreements-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.ctpl-agreements-copy { position: sticky; top: 130px; }
.ctpl-agreements-copy h2 { color: #fff; }
.ctpl-agreements-copy > p { color: rgba(255,255,255,.62); }
.ctpl-agreements-list { border-top: 1px solid rgba(255,255,255,.16); }
.ctpl-agreement { display: grid; grid-template-columns: 52px 1fr auto; gap: 22px; align-items: start; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.ctpl-agreement > span { color: var(--ctpl-gold); font-size: 10px; font-weight: 800; }
.ctpl-agreement h3 { margin: 0 0 7px; font-size: 16px; color: #fff; }
.ctpl-agreement p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.6; }
.ctpl-agreement small { color: rgba(255,255,255,.45); font-size: 10px; white-space: nowrap; }

.ctpl-partners { padding: 72px 0 82px; background: #fff; border-bottom: 1px solid var(--ctpl-line); }
.ctpl-partners__heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.ctpl-partners__heading span { font-size: 10px; font-weight: 800; color: var(--ctpl-blue); letter-spacing: .15em; }
.ctpl-partners__heading p { margin: 0; font-size: 11px; color: var(--ctpl-muted); }
.ctpl-logo-grid { display: grid; grid-template-columns: repeat(6,1fr); border: 1px solid var(--ctpl-line); border-radius: 20px; overflow: hidden; }
.ctpl-logo-card { min-height: 112px; display: grid; place-items: center; border-right: 1px solid var(--ctpl-line); background: #fff; transition: background .2s ease; padding: 18px; }
.ctpl-logo-card:last-child { border-right: 0; }
.ctpl-logo-card:hover { background: #f7fbff; }
.ctpl-logo-card img { max-height: 58px; max-width: 130px; object-fit: contain; }
.ctpl-logo-placeholder { color: #9aa7b7; font-size: 10px; font-weight: 800; letter-spacing: .08em; border: 1px dashed #cbd5df; border-radius: 10px; padding: 11px 10px; width: 100%; text-align: center; }

.ctpl-section--testimonials { background: #fbfdff; }
.ctpl-section-heading--center { grid-template-columns: 1fr; text-align: center; justify-items: center; max-width: 780px; margin-inline: auto; }
.ctpl-section-heading--center h2 { max-width: 720px; }
.ctpl-section-heading--center > p { max-width: 560px; }
.ctpl-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ctpl-testimonial { margin: 0; min-height: 310px; border: 1px solid var(--ctpl-line); background: #fff; border-radius: 22px; padding: 27px; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.ctpl-testimonial:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(11,31,58,.07); }
.ctpl-stars { color: var(--ctpl-gold); letter-spacing: 3px; font-size: 12px; }
.ctpl-testimonial > p { color: #3d4c61; font-size: 14px; line-height: 1.8; margin: 34px 0 30px; flex: 1; }
.ctpl-testimonial footer { display: flex; align-items: center; gap: 12px; }
.ctpl-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--ctpl-sky); color: var(--ctpl-blue); font-weight: 800; }
.ctpl-testimonial footer strong { display: block; color: var(--ctpl-navy); font-size: 11px; }
.ctpl-testimonial footer small { color: var(--ctpl-muted); font-size: 9px; }

.ctpl-cta { padding: 0 0 112px; background: #fbfdff; }
.ctpl-cta__box { position: relative; overflow: hidden; background: linear-gradient(135deg,#1268b3 0%,#0b315d 70%,#0b1f3a 100%); border-radius: 30px; color: white; min-height: 300px; padding: 54px 58px; display: flex; align-items: center; justify-content: space-between; gap: 65px; box-shadow: 0 30px 65px rgba(11,31,58,.16); }
.ctpl-cta__box::after { content: ''; position: absolute; width: 300px; height: 300px; right: -110px; top: -130px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.018); }
.ctpl-cta__box > * { position: relative; z-index: 2; }
.ctpl-cta__box h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(34px,4vw,48px); font-weight: 400; margin: 0 0 15px; max-width: 650px; letter-spacing: -.02em; }
.ctpl-cta__box p { color: rgba(255,255,255,.68); max-width: 700px; font-size: 13px; line-height: 1.7; margin: 0; }

.ctpl-section--contact { background: #fff; padding-top: 0; }
.ctpl-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.ctpl-contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ctpl-contact-card { min-height: 170px; border: 1px solid var(--ctpl-line); border-radius: 20px; padding: 23px; text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.ctpl-contact-card:hover { transform: translateY(-4px); border-color: #c6daeb; box-shadow: 0 18px 38px rgba(11,31,58,.07); }
.ctpl-contact-card > span { color: var(--ctpl-blue); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.ctpl-contact-card strong { color: var(--ctpl-navy); font-size: 13px; overflow-wrap: anywhere; }
.ctpl-contact-card small { color: var(--ctpl-muted); font-size: 9px; }
.ctpl-contact-card--plain:hover { transform: none; box-shadow: none; border-color: var(--ctpl-line); }

.ctpl-footer { background: #07182d; color: rgba(255,255,255,.7); padding: 72px 0 24px; }
.ctpl-footer__grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr .9fr; gap: 55px; padding-bottom: 55px; }
.ctpl-brand--footer .ctpl-brand__text strong { color: #fff; }
.ctpl-brand--footer .ctpl-brand__text small { color: rgba(255,255,255,.5); }
.ctpl-footer__about > p { font-size: 11px; line-height: 1.8; max-width: 340px; margin-top: 22px; }
.ctpl-footer__column h3 { margin: 0 0 20px; color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.ctpl-footer__column ul { list-style: none; margin: 0; padding: 0; }
.ctpl-footer__column li { margin-bottom: 10px; font-size: 10px; line-height: 1.6; }
.ctpl-footer__column a { color: rgba(255,255,255,.66); text-decoration: none; transition: color .2s ease; }
.ctpl-footer__column a:hover { color: #fff; }
.ctpl-footer__bottom { min-height: 56px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: end; justify-content: space-between; gap: 20px; font-size: 9px; }
.ctpl-backtop { color: rgba(255,255,255,.7); text-decoration: none; }
.ctpl-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 1200; width: 56px; height: 56px; border-radius: 50%; background: #22c55e; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px rgba(24,170,84,.35); transition: transform .2s ease, box-shadow .2s ease; }
.ctpl-whatsapp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 36px rgba(24,170,84,.42); }
.ctpl-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

.ctpl-reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s cubic-bezier(.2,.6,.2,1), transform .75s cubic-bezier(.2,.6,.2,1); }
.ctpl-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .ctpl-nav ul { gap: 16px; }
  .ctpl-nav { gap: 17px; }
  .ctpl-nav ul a { font-size: 11px; }
  .ctpl-hero__grid { gap: 35px; }
  .ctpl-float-card--top { right: 0; }
  .ctpl-about { gap: 45px; }
  .ctpl-agreements-layout { gap: 45px; }
}

@media (max-width: 900px) {
  .ctpl-topbar__item { display: none; }
  .ctpl-topbar__inner { justify-content: flex-end; }
  .ctpl-menu-toggle { display: block; }
  .ctpl-nav { display: none; position: fixed; inset: 116px 0 0; background: rgba(255,255,255,.985); padding: 30px 26px; flex-direction: column; align-items: stretch; overflow-y: auto; }
  .ctpl-nav.is-open { display: flex; }
  .ctpl-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .ctpl-nav ul li { border-bottom: 1px solid var(--ctpl-line); }
  .ctpl-nav ul a { display: block; padding: 16px 4px; font-size: 14px; }
  .ctpl-nav .ctpl-button { margin-top: 14px; }
  .ctpl-hero { min-height: auto; padding: 58px 0 72px; }
  .ctpl-hero__grid { grid-template-columns: 1fr; }
  .ctpl-hero__copy { text-align: center; }
  .ctpl-hero__copy > p { margin-inline: auto; }
  .ctpl-hero__actions, .ctpl-hero__trust { justify-content: center; }
  .ctpl-hero__visual { min-height: 480px; max-width: 620px; width: 100%; margin-inline: auto; }
  .ctpl-stats__grid { grid-template-columns: 1fr 1fr; }
  .ctpl-stat:nth-child(2)::after { display: none; }
  .ctpl-stat:nth-child(-n+2) { border-bottom: 1px solid var(--ctpl-line); }
  .ctpl-about, .ctpl-agreements-layout, .ctpl-contact-grid { grid-template-columns: 1fr; }
  .ctpl-agreements-copy { position: static; }
  .ctpl-values { grid-template-columns: 1fr 1fr; }
  .ctpl-value:nth-child(2)::after { display: none; }
  .ctpl-value:nth-child(-n+2) { padding-bottom: 30px; border-bottom: 1px solid var(--ctpl-line); }
  .ctpl-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .ctpl-logo-grid { grid-template-columns: repeat(3,1fr); }
  .ctpl-logo-card:nth-child(3) { border-right: 0; }
  .ctpl-logo-card:nth-child(-n+3) { border-bottom: 1px solid var(--ctpl-line); }
  .ctpl-testimonials-grid { grid-template-columns: 1fr; }
  .ctpl-testimonial { min-height: 250px; }
  .ctpl-cta__box { flex-direction: column; align-items: flex-start; gap: 32px; }
  .ctpl-footer__grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 640px) {
  .ctpl-shell { width: min(100% - 28px, var(--ctpl-shell)); }
  .ctpl-topbar { display: none; }
  .ctpl-header__inner { height: 72px; }
  .ctpl-nav { inset: 72px 0 0; }
  .ctpl-brand { min-width: 0; }
  .ctpl-brand__text small { display: none; }
  .ctpl-hero { padding-top: 48px; }
  .ctpl-hero__copy h1 { font-size: 44px; }
  .ctpl-hero__copy > p { font-size: 15px; }
  .ctpl-hero__actions { flex-direction: column; align-items: stretch; }
  .ctpl-button { width: 100%; }
  .ctpl-hero__visual { min-height: 410px; }
  .ctpl-visual-card--main { inset: 18px 0 18px 0; padding: 24px; }
  .ctpl-float-card { min-width: 175px; padding: 11px; }
  .ctpl-float-card--top { top: 70px; right: -4px; }
  .ctpl-float-card--bottom { left: -4px; bottom: 46px; }
  .ctpl-orbit--one { width: 230px; height: 230px; }
  .ctpl-orbit--two { width: 175px; height: 175px; }
  .ctpl-orbit--three { width: 120px; height: 120px; }
  .ctpl-visual-caption { left: 24px; right: 24px; }
  .ctpl-visual-caption span { display: none; }
  .ctpl-stats { margin-top: -10px; }
  .ctpl-stat { padding: 22px 17px; }
  .ctpl-stat strong { font-size: 26px; }
  .ctpl-section { padding: 82px 0; }
  .ctpl-about__cards, .ctpl-services-grid, .ctpl-contact-cards { grid-template-columns: 1fr; }
  .ctpl-purpose-card { min-height: 235px; }
  .ctpl-purpose-card h3 { margin-top: 45px; }
  .ctpl-values { grid-template-columns: 1fr; }
  .ctpl-value { border-bottom: 1px solid var(--ctpl-line); padding: 28px 10px; }
  .ctpl-value::after { display: none; }
  .ctpl-service-card { min-height: 290px; }
  .ctpl-agreement { grid-template-columns: 38px 1fr; }
  .ctpl-agreement small { grid-column: 2; }
  .ctpl-partners__heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .ctpl-logo-grid { grid-template-columns: 1fr 1fr; }
  .ctpl-logo-card { border-right: 1px solid var(--ctpl-line) !important; border-bottom: 1px solid var(--ctpl-line); }
  .ctpl-logo-card:nth-child(even) { border-right: 0 !important; }
  .ctpl-logo-card:nth-last-child(-n+2) { border-bottom: 0; }
  .ctpl-cta { padding-bottom: 82px; }
  .ctpl-cta__box { padding: 40px 27px; border-radius: 24px; min-height: 330px; }
  .ctpl-contact-grid { gap: 40px; }
  .ctpl-footer__grid { grid-template-columns: 1fr; gap: 35px; }
  .ctpl-footer__bottom { align-items: flex-start; flex-direction: column; padding-top: 20px; }
}

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