:root {

    /* Site */
    --site-max-w: 100vw;
    --site-max-inner: 1280px;
    --site-inner-padding: 20px;

    /* Fonts */
    --ff-base: "Noto Sans", sans-serif;
    --fs-base: 17px;
    --flh-base: 22px;
    --fs-p: var(--fs-base);
    --fs-h1: 40px;
    --fs-h2: 30px;
    --fs-h3: 26px;
    --fs-h4: 22px;
    --fs-xx: 12px;
    --fs-xl: 14px;
    --fw-base: 400;
    --fw-light: 300;
    --fw-medium: 500;
    --fw-bold: 600;
    --fw-extra-bold: 900;

    /* Colors */
    --text-color: #3E3E3E;
    --primary-color: #174790;
    --secondary-color: #E38110;
    --third-color: #1E73B9;
    --color-black: #000000;
    --color-white: #ffffff;
    --neon-pink: #EC1BDB;
    --neon-blue: #01D4E7;

    /* Links & Buttons */
    --link-color: var(--secondary-color);
    --link-color-hover: var(--primary-color);
    --link-color-hover-dark: #152030;

    --bt-fs: var(--fs-base);
    --bt-color: var(--color-white);
    --bt-color-hover: var(--color-white);
    --bt-color-bck: var(--secondary-color);
    --bt-color-bck-hover: var(--primary-color);
    --bt-border: 1px solid var(--bt-color-bck);
    --bt-border-radius: 0px;

    --bt-color-inverted: var(--primary-color);
    --bt-color-bck-inverted: var(--color-white);
    --bt-border-inverted: 1px solid var(--bt-color-bck-inverted);
    --bt-color-disabled: var(--color-white);
    --bt-color-bck-disabled: #CECECE;

    /* Inputs */
    --form-ff: var(--ff-base);
    --form-bgcolor: var(--color-white);
    --form-fs: var(--fs-xx);
    --form-flh: var(--fs-xx);
    --form-placeholder-color: var(--text-color);
    --form-ms-choice-placeholder-color: var(--text-color);
    --form-ele: #545454;
    --form-borderradius: 0.5rem;
    --form-border: 1px solid #BEBEBE;
    --form-icons: #BEBEBE;
    --form-input-h: 40px;
    --form-textarea-h: 80px;
    --form-textarea-p: var(--fs-xx);
    --form-textarea-lh: 1rem;
    --form-select-h: 40px;
    --label-fs: var(--fs-xx);
    --label-flh: var(--fs-xx);
}

/* Normalize */
*, *::before, *::after { box-sizing: border-box; } * { margin: 0; } html, body { height: 100%; } body { overflow-x: hidden; line-height: 1.7; -webkit-font-smoothing: antialiased; } img, picture, video, canvas, svg { display: block; max-width: 100%; } input, button, textarea, select { font: inherit; } h1, h2, h3 { line-height: 1; } div { position: relative; }

/* Body */
body {  font-size: var(--fs-base); font-family: var(--ff-base); line-height: var(--flh-base); font-weight: var(--fw-base); color: var(--primary-color); }
body.noscroll { overflow: hidden; }

/* Characters */
p { font-size: var(--fs-p); line-height: var(--flh-base); color: var(--text-color); }
h1 { font-size: var(--fs-h1); font-weight: var(--fw-base); color: var(--primary-color); }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-base); color: var(--primary-color); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-base); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-base); }
@media (max-width: 900px) {
    p { font-size: 16px !important; line-height: 20px; }
    h1 { font-size: 30px !important; line-height: 30px; }
    h2 { font-size: 24px !important; line-height: 28px; }
    h3 { font-size: 20px !important; line-height: 24px; }
    h4 { font-size: 20px !important; line-height: 24px; }
}
sub, sup { font-size: 80%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.4em; }
sub { bottom: -0.25em; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.small { font-size: var(--fs-xx); line-height: 1.2; }
.lower { text-transform: none !important; }
.upper { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.strong { font-weight: 900; }
.medium { font-weight: 600; }
.light { font-weight: 300; }

/* Links & Buttons */
a { outline: none !important; cursor: pointer; }
a:link, a:active, a:visited { color: var(--link-color); font-family: var(--ff-base); text-decoration: none; }
a:hover { color: var(--link-color-hover); text-decoration: none; }
a.disabled { cursor: default; pointer-events: none; }
.bt { cursor: pointer; text-decoration: none; display: inline-flex; justify-content: center; align-items: center; border-radius: var(--bt-border-radius); padding: 10px 16px; background-color: var(--bt-color-bck); border: var(--bt-border); color: var(--bt-color) !important; text-transform: uppercase; font-weight: var(--fw-medium); font-size: var(--bt-fs); }
.bt:is(:hover, :focus) { background-color: var(--bt-color-bck-hover); border-color: var(--bt-color-bck-hover); color: var(--bt-color-hover); }
.blue-bck .bt:not(.inverted):is(:hover, :focus) { background-color: var(--color-white); border-color: var(--color-white); color: var(--secondary-color) !important; }
.page-header-hero .bt:not(.inverted):is(:hover, :focus) { background-color: var(--color-white); border-color: var(--color-white); color: var(--secondary-color) !important; }
.bt.small { padding: 0.5em 1em; font-size: var(--fs-xx); }
.bt.form-bt { padding: 0.35rem 1.5em !important; }
.bt.inverted { background-color: var(--color-white); color: var(--secondary-color) !important; }
.bt.inverted:is(:hover, :focus) { background-color: var(--secondary-color) !important; border-color: var(--secondary-color) !important; color: var(--color-white) !important; }
.bt.disabled { background-color: var(--bt-color-bck-disabled); border-color: var(--bt-color-bck-disabled); color: var(--bt-color-disabled) !important; }
.inline-buttons { display: flex; gap: 1rem; align-items: flex-start; padding-top: 1rem; }
.inline-buttons.blocks { flex-direction: column; }
@media (max-width: 480px) {
    .inline-buttons { flex-direction: column; }
}

/* Images */
img { border: 0; height: auto !important; }
.img-responsive { display: block; width: 100%; max-width: initial; height: auto !important; margin: 0; padding: 0; }

/* Site Common Styles */
.visually-hidden:not(:focus):not(:active) { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.hidden { display: none; }
iframe { border: 0; width: 100%; height: 60vh; }
.show-desktop { display: block !important; }
.show-mobile { display: none !important; }
@media (max-width: 900px) {
    .show-desktop { display: none !important; }
    .show-mobile { display: block !important; }
}

.container { position: relative; margin: 0 auto; min-width: 320px; max-width: var(--site-max-w); }
.content-inner { position: relative; margin: 0 auto; padding-left: var(--site-inner-padding); padding-right: var(--site-inner-padding); max-width: var(--site-max-inner); }
.flex-column { display: flex; flex-direction: row; }
.flex-column-item { flex: 1; display: flex; gap: 20px; }
.color-black { background-color: var(--color-black); }
.blue { color: var(--primary-color); }
.blue-bck { background-color: var(--primary-color); }
.orange { color: var(--secondary-color); }
.white { color: var(--color-white); }
.spacer20 { height: 20px; }
.spacer40 { height: 40px; }
.spacer60 { height: 60px; }
.box-shadow { box-shadow: 0 3px 4px 0 rgb(0 0 0 / 8%); }
section { padding: 60px 0; }
.section-zero-padding { padding: 0 !important; }
.section-bottom-padding { padding: 0 0 60px 0; }
.menu-spacer { margin-top: 60px; }
.section-center { margin: 0 auto; text-align: center; }
.section-title { padding-bottom: 40px; }
body.js-scroll-reveal .scroll-reveal-item { opacity: 0; transform: translate3d(0, 56px, 0) scale(.985); filter: blur(2px); transition: opacity .95s ease, transform .95s cubic-bezier(.22, 1, .36, 1), filter .95s ease; will-change: opacity, transform, filter; }
body.js-scroll-reveal .scroll-reveal-item.is-revealed { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
body.js-scroll-reveal .scroll-reveal-item.no-reveal { opacity: 1; transform: none; transition: none; }

@media (max-width: 900px) {
    .flex-column { flex-direction: column; gap: 20px; }
    .flex-column-item { width: auto; flex-direction: column; }
    .section-bottom-padding { padding: 0 0 30px 0; }
    .section-title { padding-bottom: 20px; }
    .section-title p br { display: none; }
}

/* Navbar */    
.navbar { position: fixed; z-index: 11; width: 100%; top: 0; left: 0; transform: translate(calc(50% - 50%)); background-color: var(--color-black); }
.navbar .navbar-content { margin: 0 auto; padding: 10px 20px; min-width: 300px; height: 60px; display: flex; flex-direction: row; align-items: center; gap: 1rem; max-width: var(--site-max-inner); }
.navbar .navbar-content .logo { max-width: 120px; padding: 4px 0 0 0; }
.navbar .navbar-content .logo a.current { pointer-events: none; }
.navbar .navbar-content a.bt { padding: 8px 14px !important; font-size: 14px; line-height: 14px; font-weight: var(--fw-medium); }
.navbar .navbar-content a.bt.menu-contacts.current { pointer-events: none; }
.navbar .navbar-content a.bt:is(:hover, :focus) { background-color: var(--bt-color-bck-hover); color: var(--bt-color-hover); }
.navbar .navbar-content ul.menu { display: flex; align-items: center; flex-direction: row; overflow: hidden; list-style: none; padding: 0; max-height: none; margin-left: auto; transition: max-height .2s ease-out; }
.navbar .navbar-content ul.menu li { padding: 0 12px; }
.navbar .navbar-content ul.menu li a { display: block; font-weight: var(--fw-medium); text-decoration: none; text-transform: uppercase; font-size: 14px; line-height: 14px; color: var(--color-white); }
.navbar .navbar-content ul.menu li a:is(:hover, :focus) { color: var(--secondary-color); }
.navbar .navbar-content ul.menu li a.current { pointer-events: none; color: var(--secondary-color) !important; }
.navbar .navbar-content .menu-btn { display: none; }
.navbar .navbar-content .menu-icon { display: none; }
.navbar .navbar-content ul.menu li .navbar-dropdown { position: absolute; top: 100%; left: inherit; right: auto; min-width: 180px; width: max-content; background: var(--color-white); box-shadow: 0 12px 24px rgb(0 0 0 / 30%); border-radius: var(--bt-border-radius); padding: 10px 0; opacity: 0; pointer-events: none; transform: translateY(15px); transition: .3s all ease; }
.navbar .navbar-content ul.menu li .navbar-dropdown a { padding: 10px; color: var(--color-black); }
.navbar .navbar-content ul.menu li .navbar-dropdown a:hover { color: var(--secondary-color); }
.navbar .navbar-content ul.menu li .navbar-dropdown.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.navbar .navbar-content .lang-switcher .lang-switcher-header { height: 32px; width: 52px; border: 1px solid var(--color-white); -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: var(--bt-border-radius); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 12px 10px; }
.navbar .navbar-content .lang-switcher .lang-switcher-header .lang-current { font-size: 14px; line-height: 14px; text-transform: uppercase; color: var(--color-white); font-weight: var(--fw-medium); }
.navbar .navbar-content .lang-switcher .lang-switcher-header .icon { margin-right: 0; display: block; width: 0; height: 0; border-style: solid; border-width: 5px 4px 0 4px; border-color: var(--color-white) transparent transparent transparent; }
.navbar .navbar-content .lang-switcher .lang-switcher-dropdown { position: absolute; top: 46px; left: 0; right: 0; background: var(--color-white); box-shadow: 0 12px 24px rgb(0 0 0 / 30%); border-radius: var(--bt-border-radius); border: 1px solid var(--color-white); -webkit-transition: .3s all ease; -o-transition: .3s all ease; transition: .3s all ease; opacity: 0; pointer-events: none; transform: translateY(15px); }
.navbar .navbar-content .lang-switcher .lang-switcher-dropdown .lang-item { border-radius: var(--bt-border-radius); padding: 0 16px; font-weight: var(--fw-medium); font-size: 14px; line-height: 34px; color: var(--text-color); cursor: pointer; border-bottom: 1px solid var(--color-white); text-transform: uppercase; width: 100%; text-align: left; display: block; -webkit-transition: .3s all ease; -o-transition: .3s all ease; transition: .3s all ease; }
.navbar .navbar-content .lang-switcher .lang-switcher-dropdown .lang-item:hover { background-color: var(--secondary-color); color: var(--color-white); }
.navbar .navbar-content .lang-switcher .lang-switcher-dropdown .lang-item:last-child { border-bottom: 0; }
.navbar .navbar-content .lang-switcher .lang-switcher-dropdown.active { opacity: 1; pointer-events: all; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
@media (max-width: 900px) {
    .navbar .navbar-content ul.menu li a { padding: 0 0.5rem; }
    .navbar .navbar-content .logo { max-width: 120px; }
    .navbar .navbar-content { flex-direction: column; align-items: flex-start; gap: 0; }
    .navbar .navbar-content { margin-left: inherit; }
    .navbar .navbar-content input[type="checkbox"].menu-btn + label::before, .navbar .navbar-content input[type="checkbox"].menu-btn + label::after { background-color: transparent; border: none; content: ''; }
    .navbar .navbar-content ul.menu { flex-direction: column; max-height: 0; width: 100%; align-items: flex-start; position: absolute; left: 0; top: 60px; background-color: var(--color-black); }
    .navbar .navbar-content ul.menu li a { padding: 20px 0 20px 10px; width: 100%; }
    .navbar .navbar-content .menu-icon { cursor: pointer; display: inline-block; margin-left: auto; padding: 1.2rem 1rem; position: absolute; right: 0; user-select: none; }
    .navbar .navbar-content .menu-icon .navicon { background: var(--menu-color); display: block; height: 3px; width: 26px; position: relative; transition: background .2s ease-out; background-color: var(--color-white); }
    .navbar .navbar-content .menu-icon .navicon:before, .navbar .navbar-content .menu-icon .navicon:after { background: var(--menu-color); content: ''; display: block; height: 100%; position: absolute; transition: all .2s ease-out; width: 100%; background-color: var(--color-white); }
    .navbar .navbar-content .menu-icon .navicon:before { top: 9px; }
    .navbar .navbar-content .menu-icon .navicon:after { top: -9px; }
    .navbar .navbar-content .menu-btn:checked ~ .menu { max-height: fit-content; width: 100%; }
    .navbar .navbar-content .menu-btn:checked ~ .menu li { width: auto; text-align: left; }
    .navbar .navbar-content .menu-btn:checked ~ .menu-icon .navicon { background: transparent; }
    .navbar .navbar-content .menu-btn:checked ~ .menu-icon .navicon:before { transform: rotate(-45deg); background-color: var(--color-white); }
    .navbar .navbar-content .menu-btn:checked ~ .menu-icon .navicon:after { transform: rotate(45deg); background-color: var(--color-white); }
    .navbar .navbar-content .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .navbar .navbar-content .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after { top: 0; }
    .navbar .navbar-content a.bt { position: absolute; right: 9rem; top: 1rem; }
    .navbar .navbar-content .lang-switcher { position: absolute; right: 4rem; top: 1rem; }
    .navbar .navbar-content ul.menu li .navbar-dropdown { position: relative; top: 0; left: 0; box-shadow: none; border: none; border-radius: 0; padding: 0; max-height: 0; overflow: hidden; opacity: 0; transform: none; transition: max-height 0.3s ease-out, opacity 0.2s ease; background-color: var(--color-black); }
    .navbar .navbar-content ul.menu li .navbar-dropdown.active { max-height: 500px; opacity: 1; pointer-events: all; margin-bottom: 10px; }
    .navbar .navbar-content ul.menu li .navbar-dropdown a { padding: 15px 0 15px 30px !important; font-size: 13px; color: var(--color-white) !important; }
}

/* Footer */
.footer { margin: 0 auto; text-align: center; background-color: var(--color-black); }
.footer .footer-legal { margin: 0 auto; text-align: center; background-color: var(--primary-color); color: var(--primary-color); }
.footer .footer-legal  p { color: var(--color-white); }
.footer .footer-content { margin: 0 auto; padding: var(--site-inner-padding); min-width: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column; max-width: var(--site-max-inner); color: var(--text-color); }
.footer .footer-content .logo { width: 160px; padding: 0 0 20px 0; }
.footer .footer-content .follow-us p { color: var(--color-white); }
.footer .footer-content .follow-us .social-icons { padding-top: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 20px; }
.footer .footer-content .follow-us .social-icons a { width: 26px; height: auto; }
.footer .footer-content .follow-us .social-icons a svg path { fill: var(--color-white); transition: .5s; }
.footer .footer-content .follow-us .social-icons a:is(:hover, :focus) svg path { fill: var(--secondary-color); }
.footer .footer-content ul { list-style: none; display: flex; padding-bottom: 0.5rem; }
.footer .footer-content ul li { display: flex; align-items: center; }
.footer .footer-content ul li a { color: var(--color-white); }
.footer .footer-content ul li a.current { pointer-events: none; color: var(--color-white); }
.footer .footer-content ul li a:hover { color: var(--secondary-color); }
.footer .footer-content ul li::after { content:"|"; width: 30px; text-align: center; color: var(--color-white); font-size: 10px; margin-top: -6px; }
.footer .footer-content ul li:last-of-type::after { content:""; font-size: 13px; line-height: 13px; }
@media (max-width: 900px) {
    .footer .footer-content .logo { width: 120px; }
    .footer .footer-legal  p { font-size: 12px !important; line-height: 16px !important; }

}

/* Popups */
.popup { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; background-color: rgba(0,0,0,0.8); transition: opacity 0.3s ease; z-index: 40; }
.popup.show { opacity: 1; visibility: visible; pointer-events: auto; }
.popup .bt-close-popup { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: var(--color-white); color: var(--primary-color); cursor: pointer; z-index: 1; }
.popup .bt-close-popup:hover { color: var(--secondary-color); }
.popup .bt-close-popup svg { width: 22px; height: 22px; }
.popup-content { position: relative; width: 80vw; min-width: 320px; max-width: 1200px; max-height: calc(100vh - 48px); border-radius: var(--bt-border-radius); background-color: var(--color-white); overflow-y: auto; overflow-x: hidden; box-shadow: 0 20px 50px rgb(0 0 0 / 24%); }
.popup-content.is-loading { opacity: 0; visibility: hidden; }
.popup-content.is-ready { opacity: 1; visibility: visible; }
.popup-content--newsletter { width: min(480px, calc(100vw - 48px)); min-width: 0; }
.popup-content--careers-apply.is-careers-success { height: min(420px, calc(100vh - 48px)) !important; }
.popup-content--careers-apply.is-careers-success .popup-frame { height: 100% !important; }
.popup-content.popup-end-registration { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.popup-frame { display: block; width: 100%; height: auto; border: 0; background: var(--color-white); }
.home-agentic-popup { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; background-color: rgba(0,0,0,0.62); opacity: 0; visibility: hidden; pointer-events: none; }
.home-agentic-popup.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.home-agentic-popup__panel { width: min(460px, calc(100vw - 48px)); padding: 34px 30px 30px; border-radius: var(--bt-border-radius); background-color: var(--primary-color); color: var(--color-white); box-shadow: 0 20px 50px rgb(0 0 0 / 24%); }
.home-agentic-popup__close { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; padding: 0; border: 0; border-radius: var(--bt-border-radius); background: rgb(255 255 255 / 12%); color: var(--color-white); cursor: pointer; }
.home-agentic-popup__close:is(:hover, :focus-visible) { background-color: var(--secondary-color); color: var(--color-white); }
.home-agentic-popup__close svg { width: 20px; height: 20px; }
.home-agentic-popup__title { margin: 0 34px 16px 0; color: var(--secondary-color); font-size: 30px; line-height: 34px; font-weight: var(--fw-medium); }
.home-agentic-popup__text { margin-bottom: 24px; color: var(--color-white); font-size: 17px; line-height: 26px; }
.home-agentic-popup__panel .bt:is(:hover, :focus) { background-color: var(--color-white); border-color: var(--color-white); color: var(--secondary-color) !important; }
@media (max-width: 480px) { .home-agentic-popup { padding: 16px; align-items: flex-start; padding-top: 92px; } .home-agentic-popup__panel { width: 100%; padding: 30px 22px 24px; } .home-agentic-popup__title { font-size: 26px; line-height: 30px; } .home-agentic-popup__text { font-size: 16px; line-height: 24px; } }
@media (max-width: 900px) { #didomi-host .didomi-consent-popup-header-close { display: inline-flex !important; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 7px 12px; line-height: 1; touch-action: manipulation; } }
@media (max-width: 1100px) { .popup-content { width: 86vw; } }
@media (max-width: 480px) { .popup { padding: 0; } .popup .bt-close-popup { top: 10px; right: 10px; width: 38px; height: 38px; } .popup-content { width: 100vw; min-width: 0; max-width: 100vw; max-height: 100vh; border-radius: 0; } .popup-content--newsletter { width: 100vw; } }

/* ------------------------------------ */

/* HOMEPAGE */
.hero-img-bck { padding: 0; background-image: url(../images/kiliagon-hero-bck.jpg); background-repeat: repeat-x; background-position: bottom; background-size: contain; background-color: var(--primary-color); } 
.hero-img { display: block; margin: 0 auto; padding-top: 40px; min-width: 320px; min-height: 500px; } 
.home-intro-text { position: absolute; top: 8vw; left: 50%; transform: translate(-50%, -50%); z-index: 1; text-align: center; width: 100%; padding: 0 20px; }
.home-intro-text h1, .home-intro-text h2 { color: var(--color-white); }
.home-intro-text h1 { font-size: 1.3vw; line-height: 1.3vw; }
.home-intro-text h2 { font-size: 1.8vw; line-height: 2.0vw; font-weight: var(--fw-medium); }
.home-intro-text h2 span.neon-blue { color: var(--neon-blue); }
.home-intro-text h2 span.neon-pink { color: var(--neon-pink);}
.home-intro-text img.logo { max-width: 15vw; margin: 0 auto; padding: 16px 0 6px 0; min-width: 120px; }
@media (max-width: 900px) {
    .hero-img-bck { background-image: url(../images/kiliagon-hero-bck_mobile.jpg); background-position-y: -39px; background-color: var(--color-black); } 
    .hero-img { max-width: 550px; padding-top: 160px; } 
    .home-intro-text { top: 90px; }
    .home-intro-text h1 { font-size: 15px !important; line-height: 20px !important; }
    .home-intro-text h2 { font-size: 22px !important; line-height: 26px !important; }
    .home-intro-text h2 br { display: none; }
}
@media (max-width: 500px) {
    .home-intro-text { top: 120px; }
    .hero-img { padding-top: 200px; } 
}
@media (max-width: 320px) {
    .hero-img { padding-top: 230px; } 
}

.home-intro img { max-height: 134px; width: auto; }
@media (max-width: 900px) {
    .home-intro { text-align: center; }
    .home-intro img { max-height: inherit; max-width: 230px; margin: 0 auto; }
    .home-intro .flex-column-item:first-child > .flex-column { flex-direction: row; justify-content: center; align-items: center; gap: 12px; }
    .home-intro .flex-column-item:first-child > .flex-column img { display: inline-block; width: auto; margin: 0; }
}

.home-about .section-title > div { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.home-about img { width: auto; margin: 0; vertical-align: middle; padding: 40px 20px 20px 20px; }
.home-about img.ads { max-width: 200px; }
.home-about img.ad { max-width: 270px; }
.home-about img.amc { max-width: 320px; }
.home-about img.tiktok { max-width: 200px; }
@media (max-width: 900px) {
    .home-about img { display: block; margin: 0 auto; padding: 30px 0 0 0; }
    .home-about img.am { max-width: 260px; }
}

.home-numbers .box { text-align: center; color: var(--text-color); margin: 20px 10px 0 10px; padding: 40px 20px; line-height: 26px; background-color: var(--color-white); border-radius: var(--bt-border-radius); }
.home-numbers .box h4 span { display: block; font-size: 42px; color: var(--secondary-color); padding-bottom: 12px; }
.kiliagon-metrics-cards-stats { justify-content: center; flex-wrap: wrap; }
.kiliagon-metrics-cards-stats .box { flex: 0 1 220px; }
@media (max-width: 900px) { .kiliagon-metrics-cards-stats .box { flex: none; } }

.services-carousel { --visible-items: 5; --carousel-gap: 18px; --carousel-offset: 0; margin: 30px auto 0; padding: 0 64px 56px; position: relative; background: none; overflow-x: hidden; }
.services-carousel__selector { position: absolute; opacity: 0; pointer-events: none; }
.services-carousel__viewport { position: relative; overflow: hidden; }
.services-carousel__track { display: flex; gap: var(--carousel-gap); transform: translateX(calc(var(--carousel-offset) * -1 * (((100% - (var(--visible-items) - 1) * var(--carousel-gap)) / var(--visible-items)) + var(--carousel-gap)))); transition: transform 0.45s ease; }
.services-carousel__item { flex: 0 0 calc((100% - (var(--visible-items) - 1) * var(--carousel-gap)) / var(--visible-items)); min-width: 0; margin: 0; padding: 28px 18px 22px; border-radius: 8px; border: 1px solid rgb(2 42 87 / 10%); background: var(--color-white); box-shadow: none; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; }
.services-carousel__item img { width: 100%; max-width: 148px; height: 128px !important; object-fit: contain; margin: 0 auto 18px; }
.services-carousel__item figcaption { font-size: 22px; line-height: 24px; font-weight: 400; color: var(--text-color); }
.services-carousel__arrows { position: absolute; inset: 0; pointer-events: none; }
.services-carousel__arrow { position: absolute; top: calc(50% - 50px); transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgb(2 42 87 / 12%); background-color: var(--color-white); box-shadow: none; cursor: pointer; display: none; pointer-events: auto; }
.services-carousel__arrow::before { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-top: 2px solid var(--primary-color); border-right: 2px solid var(--primary-color); }
.services-carousel__arrow--prev { left: 0; }
.services-carousel__arrow--prev::before { transform: translate(-35%, -50%) rotate(-135deg); }
.services-carousel__arrow--next { right: 0; }
.services-carousel__arrow--next::before { transform: translate(-65%, -50%) rotate(45deg); }
.services-carousel__arrow:is(:hover, :focus) { border-color: var(--secondary-color); }
.services-carousel__arrow:is(:hover, :focus)::before { border-color: var(--secondary-color); }
.services-carousel__dots { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; }
.services-carousel__dot { width: 10px; height: 10px; border-radius: 50%; background-color: rgb(2 42 87 / 20%); cursor: pointer; transition: transform 0.25s ease, background-color 0.25s ease; }
.services-carousel__dot:is(:hover, :focus) { background-color: rgb(2 42 87 / 45%); }
.services-carousel .dot-7, .services-carousel .dot-8, .services-carousel .dot-9, .services-carousel .dot-10 { display: none; }
#services-slide-1:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 0; }
#services-slide-2:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 1; }
#services-slide-3:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 2; }
#services-slide-4:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 3; }
#services-slide-5:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 4; }
#services-slide-6:checked ~ .services-carousel__viewport .services-carousel__track, #services-slide-7:checked ~ .services-carousel__viewport .services-carousel__track, #services-slide-8:checked ~ .services-carousel__viewport .services-carousel__track, #services-slide-9:checked ~ .services-carousel__viewport .services-carousel__track, #services-slide-10:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 5; }
#services-slide-1:checked ~ .services-carousel__dots .dot-1, #services-slide-2:checked ~ .services-carousel__dots .dot-2, #services-slide-3:checked ~ .services-carousel__dots .dot-3, #services-slide-4:checked ~ .services-carousel__dots .dot-4, #services-slide-5:checked ~ .services-carousel__dots .dot-5, #services-slide-6:checked ~ .services-carousel__dots .dot-6, #services-slide-7:checked ~ .services-carousel__dots .dot-6, #services-slide-8:checked ~ .services-carousel__dots .dot-6, #services-slide-9:checked ~ .services-carousel__dots .dot-6, #services-slide-10:checked ~ .services-carousel__dots .dot-6 { transform: scale(1.25); background-color: var(--secondary-color); }
@media (min-width: 901px) {
    #services-slide-1:checked ~ .services-carousel__arrows--prev .prev-desktop-1, #services-slide-2:checked ~ .services-carousel__arrows--prev .prev-desktop-2, #services-slide-3:checked ~ .services-carousel__arrows--prev .prev-desktop-3, #services-slide-4:checked ~ .services-carousel__arrows--prev .prev-desktop-4, #services-slide-5:checked ~ .services-carousel__arrows--prev .prev-desktop-5, #services-slide-6:checked ~ .services-carousel__arrows--prev .prev-desktop-6, #services-slide-7:checked ~ .services-carousel__arrows--prev .prev-desktop-6, #services-slide-8:checked ~ .services-carousel__arrows--prev .prev-desktop-6, #services-slide-9:checked ~ .services-carousel__arrows--prev .prev-desktop-6, #services-slide-10:checked ~ .services-carousel__arrows--prev .prev-desktop-6 { display: block; }
    #services-slide-1:checked ~ .services-carousel__arrows--next .next-desktop-1, #services-slide-2:checked ~ .services-carousel__arrows--next .next-desktop-2, #services-slide-3:checked ~ .services-carousel__arrows--next .next-desktop-3, #services-slide-4:checked ~ .services-carousel__arrows--next .next-desktop-4, #services-slide-5:checked ~ .services-carousel__arrows--next .next-desktop-5, #services-slide-6:checked ~ .services-carousel__arrows--next .next-desktop-6, #services-slide-7:checked ~ .services-carousel__arrows--next .next-desktop-6, #services-slide-8:checked ~ .services-carousel__arrows--next .next-desktop-6, #services-slide-9:checked ~ .services-carousel__arrows--next .next-desktop-6, #services-slide-10:checked ~ .services-carousel__arrows--next .next-desktop-6 { display: block; }
}
@media (max-width: 900px) {
    .services-carousel { --visible-items: 3; --carousel-gap: 16px; padding: 0 42px 50px; }
    .services-carousel__item { padding: 22px 14px 18px; min-height: 240px; }
    .services-carousel__item img { max-width: 136px; height: 118px !important; margin-bottom: 14px; }
    .services-carousel__item figcaption { font-size: 22px; line-height: 24px; }
    .services-carousel__arrow { width: 38px; height: 38px; transform: translateY(-50%); }
    .services-carousel .dot-7, .services-carousel .dot-8 { display: inline-block; }
    .services-carousel .dot-9, .services-carousel .dot-10 { display: none; }
    #services-slide-7:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 6; }
    #services-slide-8:checked ~ .services-carousel__viewport .services-carousel__track, #services-slide-9:checked ~ .services-carousel__viewport .services-carousel__track, #services-slide-10:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 7; }
    #services-slide-7:checked ~ .services-carousel__dots .dot-6, #services-slide-8:checked ~ .services-carousel__dots .dot-6, #services-slide-9:checked ~ .services-carousel__dots .dot-6, #services-slide-10:checked ~ .services-carousel__dots .dot-6 { transform: none; background-color: rgb(2 42 87 / 20%); }
    #services-slide-7:checked ~ .services-carousel__dots .dot-7, #services-slide-8:checked ~ .services-carousel__dots .dot-8, #services-slide-9:checked ~ .services-carousel__dots .dot-8, #services-slide-10:checked ~ .services-carousel__dots .dot-8 { transform: scale(1.25); background-color: var(--secondary-color); }
}
@media (max-width: 900px) and (min-width: 641px) {
    #services-slide-1:checked ~ .services-carousel__arrows--prev .prev-900-1, #services-slide-2:checked ~ .services-carousel__arrows--prev .prev-900-2, #services-slide-3:checked ~ .services-carousel__arrows--prev .prev-900-3, #services-slide-4:checked ~ .services-carousel__arrows--prev .prev-900-4, #services-slide-5:checked ~ .services-carousel__arrows--prev .prev-900-5, #services-slide-6:checked ~ .services-carousel__arrows--prev .prev-900-6, #services-slide-7:checked ~ .services-carousel__arrows--prev .prev-900-7, #services-slide-8:checked ~ .services-carousel__arrows--prev .prev-900-8, #services-slide-9:checked ~ .services-carousel__arrows--prev .prev-900-8, #services-slide-10:checked ~ .services-carousel__arrows--prev .prev-900-8 { display: block; }
    #services-slide-1:checked ~ .services-carousel__arrows--next .next-900-1, #services-slide-2:checked ~ .services-carousel__arrows--next .next-900-2, #services-slide-3:checked ~ .services-carousel__arrows--next .next-900-3, #services-slide-4:checked ~ .services-carousel__arrows--next .next-900-4, #services-slide-5:checked ~ .services-carousel__arrows--next .next-900-5, #services-slide-6:checked ~ .services-carousel__arrows--next .next-900-6, #services-slide-7:checked ~ .services-carousel__arrows--next .next-900-7, #services-slide-8:checked ~ .services-carousel__arrows--next .next-900-8, #services-slide-9:checked ~ .services-carousel__arrows--next .next-900-8, #services-slide-10:checked ~ .services-carousel__arrows--next .next-900-8 { display: block; }
}
@media (max-width: 640px) and (min-width: 561px) {
    .services-carousel { --visible-items: 2; --carousel-gap: 14px; }
    .services-carousel .dot-9 { display: inline-block; }
    .services-carousel .dot-10 { display: none; }
    #services-slide-9:checked ~ .services-carousel__viewport .services-carousel__track, #services-slide-10:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 8; }
    #services-slide-9:checked ~ .services-carousel__dots .dot-6, #services-slide-10:checked ~ .services-carousel__dots .dot-6, #services-slide-9:checked ~ .services-carousel__dots .dot-8, #services-slide-10:checked ~ .services-carousel__dots .dot-8 { transform: none; background-color: rgb(2 42 87 / 20%); }
    #services-slide-9:checked ~ .services-carousel__dots .dot-9, #services-slide-10:checked ~ .services-carousel__dots .dot-9 { transform: scale(1.25); background-color: var(--secondary-color); }
    #services-slide-1:checked ~ .services-carousel__arrows--prev .prev-640-1, #services-slide-2:checked ~ .services-carousel__arrows--prev .prev-640-2, #services-slide-3:checked ~ .services-carousel__arrows--prev .prev-640-3, #services-slide-4:checked ~ .services-carousel__arrows--prev .prev-640-4, #services-slide-5:checked ~ .services-carousel__arrows--prev .prev-640-5, #services-slide-6:checked ~ .services-carousel__arrows--prev .prev-640-6, #services-slide-7:checked ~ .services-carousel__arrows--prev .prev-640-7, #services-slide-8:checked ~ .services-carousel__arrows--prev .prev-640-8, #services-slide-9:checked ~ .services-carousel__arrows--prev .prev-640-9, #services-slide-10:checked ~ .services-carousel__arrows--prev .prev-640-9 { display: block; }
    #services-slide-1:checked ~ .services-carousel__arrows--next .next-640-1, #services-slide-2:checked ~ .services-carousel__arrows--next .next-640-2, #services-slide-3:checked ~ .services-carousel__arrows--next .next-640-3, #services-slide-4:checked ~ .services-carousel__arrows--next .next-640-4, #services-slide-5:checked ~ .services-carousel__arrows--next .next-640-5, #services-slide-6:checked ~ .services-carousel__arrows--next .next-640-6, #services-slide-7:checked ~ .services-carousel__arrows--next .next-640-7, #services-slide-8:checked ~ .services-carousel__arrows--next .next-640-8, #services-slide-9:checked ~ .services-carousel__arrows--next .next-640-9, #services-slide-10:checked ~ .services-carousel__arrows--next .next-640-9 { display: block; }
}
@media (max-width: 560px) {
    .services-carousel { --visible-items: 1; padding: 0 36px 46px; }
    .services-carousel .dot-10 { display: inline-block; }
    #services-slide-10:checked ~ .services-carousel__viewport .services-carousel__track { --carousel-offset: 9; }
    #services-slide-10:checked ~ .services-carousel__dots .dot-9 { transform: none; background-color: rgb(2 42 87 / 20%); }
    #services-slide-10:checked ~ .services-carousel__dots .dot-10 { transform: scale(1.25); background-color: var(--secondary-color); }
    #services-slide-1:checked ~ .services-carousel__arrows--prev .prev-375-1, #services-slide-2:checked ~ .services-carousel__arrows--prev .prev-375-2, #services-slide-3:checked ~ .services-carousel__arrows--prev .prev-375-3, #services-slide-4:checked ~ .services-carousel__arrows--prev .prev-375-4, #services-slide-5:checked ~ .services-carousel__arrows--prev .prev-375-5, #services-slide-6:checked ~ .services-carousel__arrows--prev .prev-375-6, #services-slide-7:checked ~ .services-carousel__arrows--prev .prev-375-7, #services-slide-8:checked ~ .services-carousel__arrows--prev .prev-375-8, #services-slide-9:checked ~ .services-carousel__arrows--prev .prev-375-9, #services-slide-10:checked ~ .services-carousel__arrows--prev .prev-375-10 { display: block; }
    #services-slide-1:checked ~ .services-carousel__arrows--next .next-375-1, #services-slide-2:checked ~ .services-carousel__arrows--next .next-375-2, #services-slide-3:checked ~ .services-carousel__arrows--next .next-375-3, #services-slide-4:checked ~ .services-carousel__arrows--next .next-375-4, #services-slide-5:checked ~ .services-carousel__arrows--next .next-375-5, #services-slide-6:checked ~ .services-carousel__arrows--next .next-375-6, #services-slide-7:checked ~ .services-carousel__arrows--next .next-375-7, #services-slide-8:checked ~ .services-carousel__arrows--next .next-375-8, #services-slide-9:checked ~ .services-carousel__arrows--next .next-375-9, #services-slide-10:checked ~ .services-carousel__arrows--next .next-375-10 { display: block; }
}

.kiliagon-logo-carousel { flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 32px; }
.kiliagon-logo-carousel img { width: auto; max-width: 120px; height: auto !important; margin: 0; cursor: default; filter: grayscale(100%) sepia(100%) saturate(0) brightness(180%) contrast(80%) hue-rotate(-180deg); transition: filter 0.2s ease; }
.kiliagon-logo-carousel img:hover { filter: none; }

@media (max-width: 900px) {
    .kiliagon-logo-carousel { flex-direction: row; gap: 20px 24px; }
}

.feedbacks-masonry { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 8px; align-items: start; }
.feedback-card { width: 100%; padding: 26px 24px 24px; border-radius: var(--bt-border-radius); background: var(--color-white); color: var(--text-color); }
.feedback-card p { font-size: var(--fs-xl); line-height: 20px; }
.feedback-card__header { position: relative; display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 46px; padding: 0 62px; cursor: pointer; list-style: none; }
.feedback-card__header::marker { content: ""; }
.feedback-card__header::-webkit-details-marker { display: none; }
.feedback-card__header::before { content: none; }
.feedback-card__meta { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 0; width: 100%; }
.feedback-card__logo { width: auto; max-width: 160px; height: auto !important; margin: 0 auto; }
.feedback-card__toggle { position: absolute; top: 50%; right: 0; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgb(2 42 87 / 12%); background-color: var(--color-white); box-shadow: none; transform: translateY(-50%); transition: border-color 0.25s ease; }
.feedback-card__toggle::before { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-top: 2px solid var(--primary-color); border-right: 2px solid var(--primary-color); transform: translate(-50%, -70%) rotate(135deg); transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease; }
.feedback-card__toggle svg { display: none; }
.feedback-card__header:is(:hover, :focus-visible) .feedback-card__toggle { border-color: var(--secondary-color); }
.feedback-card__header:is(:hover, :focus-visible) .feedback-card__toggle::before { border-color: var(--secondary-color); }
.feedback-card[open] .feedback-card__toggle::before { transform: translate(-50%, -30%) rotate(-45deg); }
.feedback-card__content { display: block; max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-10px); margin-top: 0; padding-top: 0; border-top: 1px solid transparent; transition: max-height 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease, transform 0.42s ease, margin-top 0.56s cubic-bezier(0.22, 1, 0.36, 1), padding-top 0.56s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.42s ease; will-change: max-height, opacity, transform; }
.feedback-card[open] .feedback-card__content { max-height: 1000px; opacity: 1; transform: translateY(0); margin-top: 18px; padding-top: 18px; border-top-color: rgb(23 71 144 / 12%); }
.feedback-card__content p + p { margin-top: 16px; }

@media (max-width: 1100px) {
    .feedbacks-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .feedbacks-masonry { grid-template-columns: 1fr; gap: 18px; }
    .feedback-card { padding: 22px 20px 20px; }
    .feedback-card__meta { gap: 10px; }
    .feedback-card__header { min-height: 38px; padding: 0 50px; }
    .feedback-card__toggle { width: 38px; height: 38px; }
}

.m-sticky-nl.-right.-small.-show { position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: var(--bt-border-radius); background: var(--secondary-color); color: var(--color-white); box-shadow: 0 10px 24px rgb(0 0 0 / 18%); cursor: pointer; z-index: 30; }
.m-sticky-nl.-right.-small.-show svg { width: auto; height: 26px; }
.m-sticky-nl.-right.-small.-show:is(:hover, :focus-visible) { background: var(--primary-color); color: var(--color-white); }

@media (max-width: 640px) {
    .m-sticky-nl.-right.-small.-show { right: 12px; bottom: 18px; width: 40px; height: 40px; }
    .m-sticky-nl.-right.-small.-show svg { width: auto; height: 26px; }
}

.newsletter-document, .newsletter-page { height: 100%; }
.newsletter-page { margin: 0; background: var(--color-white); }
.newsletter-shell { display: flex; align-items: center; justify-content: center; padding: 20px; }
.newsletter-page section.newsletter-panel { width: 100%; max-width: 440px; margin: 0 auto; padding: 20px !important; }
.newsletter-panel.is-success { display: flex; align-items: center; justify-content: center; min-height: 320px; }
.newsletter-panel.is-success .newsletter-heading, .newsletter-panel.is-success .newsletter-form-wrapper { display: none; }
.newsletter-heading { padding-bottom: 24px; }
.newsletter-heading h2 { margin: 0; }
.newsletter-form-wrapper { justify-content: center; }
.newsletter-form-wrapper form { justify-content: center; }
.newsletter-form-wrapper .group { flex: 0 0 100%; max-width: 100%; margin: 0 0 16px; }
.newsletter-form-wrapper .form-group { text-align: left; margin-bottom: 16px; }
.newsletter-form-wrapper input { font-size: var(--fs-xl); }
.newsletter-copy { margin: 0 0 14px; font-size: var(--fs-xl) !important; line-height: 18px !important; text-align: center; }
.newsletter-copy a { font-size: inherit; line-height: inherit; }
.newsletter-consent { display: flex; flex-direction: column; align-items: center; }
.newsletter-captcha { overflow: hidden; }
.newsletter-recaptcha-wrap { display: flex; justify-content: center; width: 100%; }
.newsletter-recaptcha { transform-origin: center top; }
.newsletter-actions { width: 100%; display: flex; justify-content: center; padding-top: 8px; }
.newsletter-actions .bt { min-width: 180px; }
.newsletter-feedback { min-height: 44px; margin: 16px 0 0; font-size: var(--fs-xl); line-height: 18px; text-align: center; display: flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: var(--bt-border-radius); }
.newsletter-feedback.is-error { color: var(--color-white); background: #c83535; }
.newsletter-feedback.is-success { color: var(--primary-color); }
.newsletter-success { width: 100%; text-align: center; }
.newsletter-panel.is-success .newsletter-success { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100%; }
.newsletter-success h2 { margin: 0; }
.newsletter-success .bt { margin-top: 20px; min-width: 180px; }
.newsletter-page.is-success-view .newsletter-shell { min-height: 100%; padding-top: 0; padding-bottom: 0; }
.newsletter-page.is-success-view .newsletter-panel { min-height: 100%; }
@media (max-width: 480px) { .newsletter-shell { padding: 20px; } .newsletter-heading { padding-bottom: 20px; } .newsletter-recaptcha { transform: scale(0.86); } .newsletter-captcha { min-height: 68px; } }
@media (max-width: 360px) { .newsletter-recaptcha { transform: scale(0.76); } .newsletter-captcha { min-height: 58px; } }
.careers-apply-page { margin: 0; background: var(--color-white); }
.careers-apply-shell { display: flex; align-items: flex-start; justify-content: center; padding: 20px; }
.careers-apply-panel { width: 100%; margin: 0 auto; padding: 20px !important; }
.careers-apply-topbar { display: flex; justify-content: flex-start; padding-bottom: 20px; }
.careers-apply-heading { padding-bottom: 24px; }
.careers-apply-heading h2 { margin-bottom: 12px; }
.careers-apply-form-wrapper .group { margin: 0 2% 16px 0; }
.careers-apply-form-wrapper .group:nth-child(2n) { margin-right: 0; }
.careers-apply-phone { display: grid; grid-template-columns: 146px minmax(0, 1fr); gap: 12px; }
.careers-apply-phone select { text-indent: 10px !important; }
.careers-apply-form-wrapper input[type="file"] { height: auto; min-height: var(--form-input-h); padding: 12px 14px !important; text-indent: 0 !important; line-height: 22px; }
.careers-apply-form-wrapper textarea { min-height: 180px; }
.careers-apply-note { margin: 10px 0 0; font-size: 14px; line-height: 20px; color: var(--color-grey); }
.careers-apply-consent { margin-top: 6px; }
.careers-apply-actions { width: 100%; display: flex; justify-content: flex-start; padding-top: 8px; }
.careers-apply-feedback { min-height: 44px; margin: 16px 0 0; font-size: 16px; line-height: 22px; display: flex; align-items: center; justify-content: flex-start; }
.careers-apply-feedback.is-error { color: #c83535; }
.careers-apply-success { text-align: left; }
.careers-apply-panel.is-success .careers-apply-topbar, .careers-apply-panel.is-success .careers-apply-heading, .careers-apply-panel.is-success .careers-apply-form-wrapper { display: none !important; }
.careers-apply-panel.is-success .careers-apply-success { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: calc(100vh - 40px); text-align: center; }
.careers-apply-page.is-success-view { min-height: 100vh; }
.careers-apply-page.is-success-view .careers-apply-shell { min-height: 100vh; align-items: center; padding-top: 0; padding-bottom: 0; }
.careers-apply-page.is-success-view .careers-apply-panel { min-height: 100vh; }
.careers-apply-success .bt { margin-top: 20px; }
@media (max-width: 700px) { .careers-apply-form-wrapper .group { flex: 0 0 100%; max-width: 100%; margin-right: 0; } .careers-apply-phone { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .careers-apply-shell { padding: 20px; } .careers-apply-panel { padding: 0 !important; } }
.page-hero-animation .hero-img-bck { position: relative; overflow: hidden; }
.page-hero-animation .hero-img { position: relative; z-index: 1; min-height: clamp(500px, 47vw, 860px); }
.page-hero-animation .hero-img picture .show-desktop { visibility: hidden; }
.page-hero-animation .hero-animation { position: absolute; right: 0; bottom: 12px; left: 0; z-index: 0; width: 100%; transform: none; pointer-events: none; }
.page-hero-animation .hero-animation__scene { position: relative; width: 100%; isolation: isolate; }
.page-hero-animation .hero-animation__scene--desktop { aspect-ratio: 1746 / 819; }
.page-hero-animation .hero-animation__scene--mobile { display: none; aspect-ratio: 1167 / 1268; }
.page-hero-animation .hero-animation__layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.page-hero-animation .hero-animation__layer--landscape { opacity: 0; transform: scale(1.02); animation: heroLandscapeIn .9s ease-out forwards; }
.page-hero-animation .hero-animation__layer--dots { opacity: 0; clip-path: inset(0 100% 0 0); animation: heroArcReveal 1.1s steps(10, end) .55s forwards; }
.page-hero-animation .hero-animation__layer--icons { opacity: 0; clip-path: inset(0 100% 0 0); animation: heroArcReveal 1.15s steps(8, end) 1.1s forwards; }
.page-hero-animation .hero-animation__layer--man { opacity: 0; mix-blend-mode: screen; animation: heroFigureFade .6s ease-out 1.95s forwards; }
.page-hero-animation .hero-animation__layer--landscape-mobile { opacity: 0; animation: heroLandscapeIn .9s ease-out forwards; }
.page-hero-animation .hero-animation__layer--circle-mobile, .page-hero-animation .hero-animation__layer--icons-mobile { --hero-mobile-sweep: 0deg; -webkit-mask-image: conic-gradient(from 180deg at 50% 52%, #000 0deg, #000 var(--hero-mobile-sweep), transparent calc(var(--hero-mobile-sweep) + 1deg), transparent 360deg); mask-image: conic-gradient(from 180deg at 50% 52%, #000 0deg, #000 var(--hero-mobile-sweep), transparent calc(var(--hero-mobile-sweep) + 1deg), transparent 360deg); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; animation: heroMobileOrbit 1.65s ease-out .55s forwards; }
.page-hero-animation .hero-animation__layer--man-mobile { opacity: 0; animation: heroFigureFade .6s ease-out 2.05s forwards; }
.page-hero-animation .home-intro-text { z-index: 2; }
@property --hero-mobile-sweep { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes heroLandscapeIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
@keyframes heroArcReveal { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes heroFigureFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroMobileOrbit { from { --hero-mobile-sweep: 0deg; } to { --hero-mobile-sweep: 360deg; } }
@media (max-width: 900px) { .page-hero-animation .hero-animation { top: 170px; right: auto; bottom: auto; left: 50%; width: min(100%, 550px); transform: translateX(-50%); display: block; } .page-hero-animation .hero-animation__scene--desktop { display: none; } .page-hero-animation .hero-animation__scene--mobile { display: block; } .page-hero-animation .hero-img picture .show-mobile { visibility: hidden; } .page-hero-animation .hero-img { min-height: 500px; } }
@media (max-width: 700px) { .page-hero-animation .hero-animation { top: 210px; } }
@media (max-width: 480px) { .page-hero-animation .hero-animation { top: 240px; } }
@media (prefers-reduced-motion: reduce) { .page-hero-animation .hero-animation__layer { animation: none !important; opacity: 1 !important; clip-path: inset(0 0 0 0) !important; transform: none !important; -webkit-mask-image: none !important; mask-image: none !important; } }
@media (prefers-reduced-motion: reduce) { body.js-scroll-reveal .scroll-reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* PAGE HEADER HERO */
.page-header-hero { position: relative; min-height: clamp(520px, 76vh, 740px); display: flex; align-items: flex-end; overflow: hidden; }
.page-header-hero .content-inner { width: 100%; padding-top: 140px; padding-bottom: 72px; z-index: 1; position: relative; }
.page-header-hero .section-title { max-width: 760px; margin: 0; text-align: left; padding-bottom: 0; }
.page-header-hero h1 { color: var(--color-white); font-size: clamp(34px, 4.1vw, 56px); line-height: 1.08; max-width: 920px; }
.page-header-hero__lead { max-width: 660px; margin-top: 24px; font-size: 20px; line-height: 30px; color: rgb(255 255 255 / 88%); }
.page-header-hero__actions { margin-top: 32px; }

/* ABOUT PAGE */
.page-about .menu-spacer { margin-top: 60px; }
.about-hero { background-image: url(../images/team.jpg); background-size: cover; background-position: center; }
.about-hero::before { content: ""; position: absolute; inset: 0; background-color: var(--primary-color); opacity: .78; }
.about-hero__eyebrow { margin-bottom: 16px; letter-spacing: .18em; color: var(--neon-blue); }
@keyframes mediaHeroDrift { 0% { background-position: 50% 50%; transform: scale(1); } 50% { background-position: 52% 48%; transform: scale(1.04); } 100% { background-position: 49% 51%; transform: scale(1.02); } }
.media-solutions-hero { background-image: none; }
.media-solutions-hero::after { content: ""; position: absolute; inset: 0; background-image: url(../images/media-img.jpg); background-size: cover; background-position: center; transform-origin: center; animation: mediaHeroDrift 18s ease-in-out infinite alternate; z-index: 0; }
.media-solutions-hero::before { content: ""; position: absolute; inset: 0; background-color: var(--primary-color); opacity: .88; z-index: 1; }
.media-solutions-hero .content-inner { z-index: 2; }
.about-story__grid.media-solutions-content { margin-top: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.media-solutions-card { display: flex; flex-direction: column; height: 100%; padding: 28px; }
.media-solutions-card__header { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 18px; }
.media-solutions-card__icon { width: 132px; margin-bottom: 0; flex-shrink: 0; }
.media-solutions-card h3 { margin-bottom: 0; font-size: 30px; line-height: 32px; color: var(--primary-color); }
.media-solutions-card p, .media-solutions-card li { color: var(--text-color); }
.media-solutions-card p { margin-bottom: 18px; }
.media-solutions-card strong { color: var(--secondary-color); }
.media-solutions-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 4px; }
.media-solutions-masonry__card { min-height: 100%; padding: 18px 16px; }
.media-solutions-masonry__card p { margin-bottom: 0 !important; font-size: 15px; line-height: 22px; }
.mor-masonry { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.mor-masonry__card { padding: 22px 20px; min-height: auto; }
.mor-masonry__card h3 { margin-bottom: 12px; color: var(--primary-color); font-size: 24px; line-height: 26px; }
.mor-masonry__card p { margin-bottom: 0 !important; color: var(--text-color); font-size: 15px; line-height: 22px; }
@keyframes morIconFloatA { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(18px, -16px, 0) rotate(6deg); } 100% { transform: translate3d(-10px, 18px, 0) rotate(-4deg); } }
@keyframes morIconFloatB { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(-22px, 12px, 0) rotate(-8deg); } 100% { transform: translate3d(10px, -14px, 0) rotate(5deg); } }
@keyframes morIconFloatC { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(14px, 22px, 0) rotate(7deg); } 100% { transform: translate3d(-16px, -8px, 0) rotate(-5deg); } }
.page-mor .media-solutions-hero { overflow: hidden; background-color: var(--primary-color); }
.page-mor .media-solutions-hero::before { opacity: .88; }
.page-mor .media-solutions-hero::after { content: ""; position: absolute; inset: 0; background-image: url(../images/mor-img.jpg); background-size: cover; background-position: center; transform-origin: center; animation: mediaHeroDrift 18s ease-in-out infinite alternate; z-index: 0; }
.mor-hero-icons { position: absolute; top: 0; right: 0; bottom: 0; left: 54%; pointer-events: none; overflow: hidden; z-index: 1; }
.mor-hero-icons__item { position: absolute; width: clamp(100px, 9.75vw, 165px); opacity: .34; filter: blur(2px) saturate(1) brightness(1.04); }
.mor-hero-icons__item--1 { top: 14%; right: 24%; animation: morIconFloatA 16s ease-in-out infinite alternate; }
.mor-hero-icons__item--2 { top: 28%; right: 10%; animation: morIconFloatB 18s ease-in-out infinite alternate; }
.mor-hero-icons__item--3 { bottom: 10%; right: 30%; animation: morIconFloatC 17s ease-in-out infinite alternate; }
.page-mor .media-solutions-hero .content-inner { z-index: 2; }

.about-story__grid, .about-highlight__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 32px; align-items: start; }
.about-story__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-highlight__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-story__grid--single { grid-template-columns: minmax(0, 1fr); }
.about-presence__grid { display: grid; gap: 24px; align-items: start; }
.about-story__copy p + p, .about-highlight__copy p + p { margin-top: 20px; }
.about-story__facts { display: grid; gap: 18px; }
.about-fact, .about-value, .about-presence__map, .about-quote, .about-team-card { border-radius: var(--bt-border-radius); background-color: var(--color-white); }
.about-fact { padding: 24px; border: 1px solid rgb(23 71 144 / 10%); }
.about-fact__label { display: inline-block; margin-bottom: 12px; font-size: var(--fs-p); line-height: var(--flh-base); letter-spacing: .12em; color: var(--secondary-color); }
.about-fact__link { display: inline-flex; align-items: center; margin-top: 14px; color: var(--secondary-color) !important; font-size: 15px; line-height: 20px; font-weight: var(--fw-medium); }
.about-fact__link:is(:hover, :focus) { color: var(--primary-color) !important; }
.about-fact h3 { margin-bottom: 10px; color: var(--primary-color); }

.about-values, .tiktok-values { display: grid; gap: 18px; }
.about-values { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.tiktok-values { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.about-values-cta { margin-top: 36px; }
.about-value { position: relative; min-height: 260px; padding: 0; border: 1px solid rgb(23 71 144 / 10%); background: transparent; perspective: 1200px; }
.about-value__toggle { position: relative; display: block; width: 100%; min-height: 260px; padding: 0; border: 0; border-radius: var(--bt-border-radius); background: transparent; color: inherit; text-align: left; cursor: pointer; transform-style: preserve-3d; transition: transform 0.7s ease; -webkit-appearance: none; appearance: none; }
.about-value.is-flipped .about-value__toggle { transform: rotateY(180deg); }
.about-value__face { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; border-radius: var(--bt-border-radius); background-color: var(--color-white); overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.about-value__face--front { align-items: center; padding: 24px 20px; text-align: center; }
.about-value__face--front::before { content: ""; position: absolute; inset: 0; background-image: var(--about-value-image); background-repeat: no-repeat; background-position: center; background-size: 120px; opacity: 0.12; transform: scale(1.1); }
.page-about .about-values .about-value__face--front { background-image: linear-gradient(rgb(23 105 170 / 62%), rgb(23 105 170 / 62%)), var(--about-value-image); background-repeat: no-repeat; background-position: center; background-size: cover; background-blend-mode: normal; }
.page-about .about-values .about-value__face--front::before { content: none; }
.page-about .about-values .about-value__face--front::after { content: none; }
.about-value__face--back { transform: rotateY(180deg); align-items: flex-start; padding: 24px 20px; }
.about-value__title, .about-value__back-title { position: relative; z-index: 1; color: var(--primary-color); }
.page-about .about-values .about-value__title { color: var(--color-white); }
.about-value__title { font-size: 28px; line-height: 32px; font-weight: var(--fw-medium); }
.about-value__back-title { margin-bottom: 12px; font-size: 24px; line-height: 28px; font-weight: var(--fw-medium); }
.about-value__text { position: relative; z-index: 1; color: var(--text-color); font-size: 16px; line-height: 24px; }
.page-services-tiktok .tiktok-values .about-value { min-height: auto; padding: 24px 20px; background: var(--color-black); color: var(--color-white); border-color: rgb(255 255 255 / 10%); perspective: none; }
.page-services-tiktok .tiktok-values .about-value h3 { margin-bottom: 12px; }
.page-services-tiktok .tiktok-values .about-value h3, .page-services-tiktok .tiktok-values .about-value p { color: var(--color-white); }

.about-presence__map { padding: 28px; border: 1px solid rgb(23 71 144 / 10%); background-color: rgb(23 71 144 / 4%); }
.about-presence__countries { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 28px; }
.about-presence__countries span { padding: 10px 14px; border-radius: var(--bt-border-radius); background-color: rgb(23 71 144 / 8%); color: var(--primary-color); font-size: 14px; line-height: 14px; font-weight: var(--fw-medium); text-transform: uppercase; }
.about-presence__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.about-presence__stats article { padding: 18px 14px; border-radius: var(--bt-border-radius); background-color: var(--color-white); text-align: center; border: 1px solid rgb(23 71 144 / 8%); }
.about-presence__stats strong { display: block; margin-bottom: 8px; font-size: 38px; line-height: 38px; color: var(--secondary-color); font-weight: var(--fw-bold); }
.about-presence__stats span { display: block; font-size: 14px; line-height: 20px; color: var(--text-color); }
.about-presence__skills { display: block; padding: 0; }
.about-presence__skills h3 { max-width: 620px; margin: 0 auto 18px; color: var(--primary-color); font-size: 30px; line-height: 36px; text-align: center; }
.about-presence__skill-grid { display: grid; max-width: 1100px; margin: 0 auto; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.about-presence__skill { display: flex; min-height: 150px; padding: 18px 16px 14px; border: 2px solid var(--secondary-color); border-radius: var(--bt-border-radius); background-color: var(--color-white); text-align: center; flex-direction: column; align-items: center; justify-content: center; }
.about-presence__skill strong { display: block; margin-bottom: 6px; color: var(--secondary-color); font-size: 52px; line-height: 52px; font-weight: var(--fw-medium); }
.about-presence__skill span { display: block; max-width: 150px; color: var(--text-color); font-size: 18px; line-height: 21px; font-weight: var(--fw-medium); }
.about-presence__skill small { display: block; max-width: 160px; margin-top: 12px; color: var(--primary-color); font-size: 10px; line-height: 13px; font-weight: var(--fw-medium); text-transform: uppercase; }
.about-presence__skills-note { max-width: 980px; margin: 0 auto 34px; color: var(--text-color); font-size: var(--fs-p); line-height: var(--flh-base); text-align: center; }
.about-presence__badges { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.about-presence__badge { padding: 24px 22px 20px; border-radius: var(--bt-border-radius); background-color: var(--color-white); border: 1px solid rgb(23 71 144 / 10%); display: grid; grid-template-rows: auto 1fr; align-items: start; min-height: 176px; text-align: center; }
.about-presence__badge img { width: 100%; margin: auto; align-self: center; }
.about-presence__badge p { margin-bottom: 16px; font-size: 14px; line-height: 20px; color: var(--primary-color); font-weight: var(--fw-medium); }
.about-presence__closing { max-width: 900px; margin: 6px auto 0; text-align: center; }

.about-highlight { background-color: var(--primary-color); }
.about-highlight__inner { padding-top: 70px; padding-bottom: 70px; }
.about-highlight .section-title h2, .about-highlight .section-title p, .about-highlight__copy p { color: var(--color-white); }
.about-highlight--light { background-color: var(--color-white); }
.about-highlight--light .section-title h2, .about-highlight--light .section-title p, .about-highlight--light .about-highlight__copy p { color: var(--text-color); }
.about-highlight--light .section-title p.upper { color: var(--secondary-color); }
.about-quote { padding: 28px; border: 1px solid rgb(23 71 144 / 12%); }
.about-quote p { position: relative; padding: 20px 32px; font-family: "Nobile", serif; font-size: 18px; line-height: 30px; color: var(--primary-color); }
.about-quote p::before, .about-quote p::after { position: absolute; font-family: "Nobile", serif; font-size: 72px; line-height: 1; color: rgb(23 71 144 / 18%); }
.about-quote p::before { content: "“"; top: -4px; left: 0; }
.about-quote p::after { content: "”"; right: 0; bottom: -28px; }
.about-quote cite { display: block; margin-top: 18px; font-style: normal; font-weight: var(--fw-medium); color: var(--secondary-color); }
@media (max-width: 900px) {
    .about-quote p { font-family: "Nobile", serif !important; font-size: 18px !important; line-height: 30px !important; }
}

.about-team__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.page-careers .about-team__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; max-width: 1180px; margin: 0 auto; align-items: stretch; }
.page-careers .about-team .section-title p + p { margin-top: 24px; }
.about-team-card { padding: 24px 22px; border: 1px solid rgb(23 71 144 / 10%); text-align: left; display: flex; flex-direction: column; }
.page-careers .about-team-card { min-height: 330px; padding: 36px 32px; }
.about-team-card__avatar { width: 56px; height: 56px; margin-bottom: 18px; border-radius: var(--bt-border-radius); display: inline-flex; align-items: center; justify-content: center; background-color: var(--primary-color); color: var(--color-white); font-size: 20px; line-height: 20px; font-weight: var(--fw-bold); }
.about-team-card__photo { width: min(210px, 100%); aspect-ratio: 12 / 7; margin: 0 0 18px; border-radius: var(--bt-border-radius); background-color: rgb(23 71 144 / 4%); overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
.about-team-card__photo img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.about-team-card h3 { font-size: 22px; line-height: 26px; color: var(--primary-color); margin-bottom: 10px; }
.about-team-card__role { min-height: 44px; margin-bottom: 16px; font-size: 15px; line-height: 22px; }
.about-team-card__actions { display: flex; justify-content: flex-start; margin-top: 16px; }
.about-team-card__actions .bt { width: 100%; text-align: center; }
.blue-bck .about-team-card__actions .bt:is(:hover, :focus) { background-color: var(--primary-color) !important; border-color: var(--primary-color) !important; color: var(--color-white) !important; }
.about-team-card__country { display: inline-flex; align-items: center; align-self: flex-start; padding: 8px 12px; border-radius: var(--bt-border-radius); background-color: rgb(227 129 16 / 10%); color: var(--secondary-color); font-size: 13px; line-height: 13px; font-weight: var(--fw-medium); text-transform: uppercase; margin-top: auto; }

.about-cta .section-title { max-width: 900px; }
.about-cta .inline-buttons { justify-content: center; align-items: center; width: 100%; margin: 0 auto; }
.about-cta .section-center { text-align: center; }
.careers-overlay-page { margin: 0; background-color: var(--color-white); }
.careers-overlay-shell { padding: 0; }
.careers-overlay-panel { padding: 42px 28px 28px; }
.careers-overlay-panel h2 { margin-bottom: 14px; color: var(--primary-color); font-size: clamp(28px, 4vw, 38px); line-height: 1.1; }
.careers-overlay-panel p + p { margin-top: 16px; }
.careers-overlay-panel__eyebrow { display: inline-block; margin-bottom: 12px; color: var(--secondary-color); letter-spacing: .14em; }
.careers-overlay-panel__meta { display: inline-flex; align-items: center; margin: 18px 0 22px; padding: 8px 12px; border-radius: var(--bt-border-radius); background-color: rgb(23 71 144 / 8%); color: var(--primary-color); font-size: 13px; line-height: 13px; font-weight: var(--fw-medium); text-transform: uppercase; }
.careers-overlay-panel h3 { margin: 26px 0 12px; color: var(--primary-color); font-size: 22px; line-height: 26px; }
.careers-overlay-panel ul { margin: 0; padding-left: 22px; }
.careers-overlay-panel .careers-overlay-panel__spaced-list { margin-top: 16px; }
.careers-overlay-panel li { color: var(--text-color); font-size: 18px; line-height: 30px; }
.careers-overlay-panel li + li { margin-top: 8px; }
.careers-overlay-panel__actions { margin-top: 28px; }
.careers-overlay-panel__actions .bt { width: auto; text-align: center; }
.about-team-overlay-panel { padding-top: 48px; }
.about-team-overlay-panel .section-title { max-width: 920px; margin-left: auto; margin-right: auto; }
@media (max-width: 480px) { .careers-overlay-panel { padding: 36px 20px 20px; } }
.page-case-studies .menu-spacer { margin-top: 60px; }
.case-studies-hero { background-image: url(../images/kiliagon-hero-bck.jpg); background-size: cover; background-position: center; }
.case-studies-hero::before { content: ""; position: absolute; inset: 0; background-color: var(--primary-color); opacity: .84; }
.case-studies-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 8px; align-items: start; }
.case-study-card { padding: 0; overflow: hidden; }
.case-study-card::before { height: 6px; }
.case-study-card__media { min-height: 172px; padding: 28px 24px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgb(23 71 144 / 10%); }
.case-study-card__media img { width: min(100%, 180px); max-height: 80px; object-fit: contain; }
.case-study-card__media--badge { background-color: rgb(23 71 144 / 7%); }
.case-study-card__badge { display: inline-flex; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: var(--bt-border-radius); background-color: var(--primary-color); color: var(--color-white); font-size: 28px; line-height: 28px; font-weight: var(--fw-bold); letter-spacing: .08em; }
.case-study-card__body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.case-study-card__eyebrow { margin-bottom: 10px; color: var(--secondary-color); font-size: 12px; line-height: 12px; letter-spacing: .16em; }
.case-study-card h3 { margin-bottom: 12px; color: var(--primary-color); font-size: 28px; line-height: 30px; }
.case-study-card p:last-child { margin-bottom: 0; }
.case-study-card__meta { margin-top: auto; padding-top: 14px; }
.case-study-card__status { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: var(--bt-border-radius); background-color: rgb(227 129 16 / 10%); color: var(--secondary-color); font-size: 13px; line-height: 13px; font-weight: var(--fw-medium); text-transform: uppercase; }
.case-study-card__meta .bt, .case-study-article-back .bt { padding: 8px 12px; font-size: 13px; line-height: 13px; }
.case-study-article-header .section-center, .case-study-article-content .section-center { max-width: 860px; margin-left: auto; margin-right: auto; text-align: left; }
.case-study-article-header { padding-top: 36px; padding-bottom: 0; }
.case-study-article-header__logo { width: min(220px, 100%); margin-bottom: 26px; }
.case-study-article-header h1 { color: var(--primary-color); font-size: clamp(34px, 4vw, 54px); line-height: 1.08; }
.case-study-article-content { padding-top: 0; }
.case-study-article-content h2 { margin: 36px 0 14px; color: var(--primary-color); font-size: 28px; line-height: 30px; }
.case-study-article-content p, .case-study-article-content li { color: var(--text-color); font-size: 18px; line-height: 30px; }
.case-study-article-content ul { margin: 0 0 8px; padding-left: 22px; }
.case-study-article-content li + li { margin-top: 12px; }
.case-study-article-content strong { color: var(--secondary-color); }
.case-study-article-back { margin-top: 36px; }

.tiktok-cta-block { background-color: var(--color-black); }
.tiktok-cta-inner { display: flex; align-items: center; gap: 32px; }
.tiktok-cta-logo { flex-shrink: 0; }
.tiktok-cta-logo img { width: 180px; height: auto; }
.tiktok-cta-content { text-align: left; }
.tiktok-cta-content .section-title { max-width: none; padding-bottom: 0; }

@media (max-width: 900px) {
    .tiktok-cta-inner { flex-direction: column; gap: 24px; }
    .tiktok-cta-logo img { width: 150px; }
    .tiktok-cta-content { text-align: center; }
}

@media (max-width: 1300px) and (min-width: 541px) {
    .page-header-hero { align-items: center; }
}

@media (min-width: 901px) {
    .page-about .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }
    .page-about .about-hero .section-title { margin-left: 0; margin-right: 0; }
}

@media (max-width: 1100px) {
    .about-values, .tiktok-values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .about-team__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .page-header-hero { min-height: 540px; }
    .page-header-hero .content-inner { padding-top: 60px; padding-bottom: 22px; }
    .page-header-hero h1 { font-size: 30px !important; line-height: 36px !important; }
    .page-header-hero__lead { margin-top: 18px; font-size: 17px !important; line-height: 24px !important; }
    .about-hero { background-position: 62% center; }
    .about-story__grid, .about-presence__grid, .about-highlight__grid { grid-template-columns: 1fr; gap: 24px; }
    .about-values, .tiktok-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-presence__stats { grid-template-columns: 1fr; }
    .about-presence__skill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .about-presence__badges { grid-template-columns: 1fr 1fr; }
    .about-team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-careers .about-team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: none; }
    .page-careers .about-team-card { min-height: auto; padding: 24px 22px; }
    .case-studies-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .page-header-hero { min-height: 500px; }
    .page-header-hero .content-inner { padding-bottom: 36px; }
    .about-hero { background-position: 66% center; }
    .about-values, .tiktok-values { grid-template-columns: 1fr; }
    .about-presence__skill-grid { grid-template-columns: 1fr; }
    .about-presence__skill { min-height: 138px; }
    .about-presence__skills-note { font-size: 17px; line-height: 26px; }
    .about-presence__badges { grid-template-columns: 1fr; }
    .about-team__grid { grid-template-columns: 1fr; }
    .page-careers .about-team__grid { grid-template-columns: 1fr; }
    .about-team-card { padding: 22px 20px; }
    .case-studies-grid { grid-template-columns: 1fr; gap: 18px; }
    .case-study-card__media { min-height: 154px; padding: 24px 20px; }
    .case-study-card__body { padding: 22px 20px; }
    .case-study-card h3 { font-size: 24px; line-height: 26px; }
    .case-study-article-header__logo { width: min(180px, 100%); margin-bottom: 22px; }
    .case-study-article-content h2 { font-size: 24px; line-height: 26px; }
    .case-study-article-content p, .case-study-article-content li { font-size: 17px; line-height: 28px; }
    .about-story__grid.media-solutions-content { grid-template-columns: 1fr; gap: 18px; }
    .media-solutions-card { padding: 24px 20px; }
    .media-solutions-card__header { align-items: center; gap: 14px; margin-bottom: 16px; }
    .media-solutions-card__icon { width: 110px; }
    .media-solutions-card h3 { font-size: 24px; line-height: 26px; }
    .media-solutions-masonry { grid-template-columns: 1fr; gap: 14px; }
    .media-solutions-masonry__card { padding: 16px 14px; }
    .mor-masonry { grid-template-columns: 1fr; gap: 18px; }
    .mor-masonry__card { padding: 22px 20px; }
    .mor-hero-icons__item { width: 84px; opacity: .3; filter: blur(2px) saturate(1) brightness(1.04); }
    .mor-hero-icons { left: 58%; }
    .mor-hero-icons__item--1 { top: 20%; right: 20%; }
    .mor-hero-icons__item--2 { top: 18%; right: 6%; }
    .mor-hero-icons__item--3 { bottom: 14%; right: 22%; }
}
@media (prefers-reduced-motion: reduce) { .media-solutions-hero::after { animation: none; transform: none; } .mor-hero-icons__item { animation: none !important; } }

.page-services-tiktok .tiktok-services-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: center; margin-bottom: 32px; }
.page-services-tiktok .tiktok-services-intro__copy .section-title { max-width: 100%; padding-bottom: 0; }
.page-services-tiktok .tiktok-services-intro__copy .section-title p + p { margin-top: 18px; }
.page-services-tiktok .tiktok-services-intro__media { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-services-tiktok .tiktok-services-intro__center { position: relative; z-index: 2; width: 130px; animation: amazonIntroCoreFloat 6.8s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__center img { width: 100%; }
.page-services-tiktok .tiktok-services-intro__orbit { position: absolute; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.page-services-tiktok .tiktok-services-intro__orbit img { width: 100%; }
.page-services-tiktok .tiktok-services-intro__orbit--one { top: 30px; left: 18%; animation: amazonIntroFloatA 13.5s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__orbit--two { top: 16%; right: 15%; animation: amazonIntroFloatB 15.5s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__orbit--three { top: 46%; right: 12%; animation: amazonIntroFloatC 14.2s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__orbit--four { bottom: 20%; right: 25%; animation: amazonIntroFloatD 16.5s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__orbit--five { bottom: 12%; left: 10%; animation: amazonIntroFloatE 15.2s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__orbit--six { top: 42%; left: 5%; animation: amazonIntroFloatF 14.8s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__orbit--seven { top: 56%; right: 22%; animation: amazonIntroFloatG 15.6s ease-in-out infinite; }
.page-services-tiktok .tiktok-services-intro__orbit--eight { bottom: 26%; left: 35%; animation: amazonIntroFloatH 16.2s ease-in-out infinite; }

.page-services-tiktok .amazon-services-hero { background-color: var(--color-black); }

@media (max-width: 900px) {
    .page-services-tiktok .tiktok-services-intro__grid { grid-template-columns: 1fr; gap: 24px; }
    .page-services-tiktok .tiktok-services-intro__media { min-height: 420px; order: -1; }
    .page-services-tiktok .tiktok-services-intro__center { width: 110px; }
    .page-services-tiktok .tiktok-services-intro__orbit { width: 52px; height: 52px; }
    .page-services-tiktok .tiktok-services-intro__orbit--one { top: 20px; left: 12%; }
    .page-services-tiktok .tiktok-services-intro__orbit--two { top: 14%; right: 12%; }
    .page-services-tiktok .tiktok-services-intro__orbit--three { top: 48%; right: 10%; }
    .page-services-tiktok .tiktok-services-intro__orbit--four { bottom: 18%; right: 20%; }
    .page-services-tiktok .tiktok-services-intro__orbit--five { bottom: 10%; left: 8%; }
    .page-services-tiktok .tiktok-services-intro__orbit--six { top: 44%; left: 4%; }
    .page-services-tiktok .tiktok-services-intro__orbit--seven { top: 58%; right: 18%; }
    .page-services-tiktok .tiktok-services-intro__orbit--eight { bottom: 22%; left: 28%; }
}

@media (max-width: 560px) {
    .page-services-tiktok .tiktok-services-intro__media { min-height: 360px; }
    .page-services-tiktok .tiktok-services-intro__center { width: 100px; }
    .page-services-tiktok .tiktok-services-intro__orbit { width: 48px; height: 48px; }
    .page-services-tiktok .tiktok-services-intro__orbit--one { top: 18px; left: 10%; }
    .page-services-tiktok .tiktok-services-intro__orbit--two { top: 12%; right: 10%; }
    .page-services-tiktok .tiktok-services-intro__orbit--three { top: 50%; right: 8%; }
    .page-services-tiktok .tiktok-services-intro__orbit--four { bottom: 16%; right: 18%; }
    .page-services-tiktok .tiktok-services-intro__orbit--five { bottom: 8%; left: 6%; }
    .page-services-tiktok .tiktok-services-intro__orbit--six { top: 46%; left: 2%; }
    .page-services-tiktok .tiktok-services-intro__orbit--seven { top: 56%; right: 16%; }
    .page-services-tiktok .tiktok-services-intro__orbit--eight { bottom: 20%; left: 24%; }
}

/* AMAZON SERVICES PAGE */
.page-services-amazon .menu-spacer { margin-top: 60px; }
.amazon-services-hero { background-color: var(--primary-color); }
.amazon-services-hero::before, .amazon-services-hero::after { content: ""; position: absolute; inset: -10%; background-image: url(../images/animations/kiliagon-hero_dots.png); background-repeat: no-repeat; background-position: center 72%; background-size: 190% auto; pointer-events: none; }
.amazon-services-hero::before { opacity: .22; animation: amazonDotsDrift 18s ease-in-out infinite alternate; }
.amazon-services-hero::after { opacity: .12; transform: scale(1.08); animation: amazonDotsFloat 24s ease-in-out infinite alternate; }
.page-services-tiktok .amazon-services-hero { background-color: var(--color-black); position: relative; overflow: hidden; }
.page-services-tiktok .amazon-services-hero::before { background-image: none; animation: none; opacity: 0; }
.page-services-tiktok .amazon-services-hero::after { content: ""; position: absolute; inset: 0; background-image: url(../images/tiktok-bck.jpg); background-size: cover; background-position: center center; background-repeat: no-repeat; opacity: 0.5; animation: tiktokHeroFade 2s ease-in-out infinite alternate both; z-index: 0; }
@keyframes tiktokHeroFade {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

@keyframes amazonDotsDrift {
    from { transform: translate3d(-2%, 0, 0) scale(1); }
    to { transform: translate3d(2%, -3%, 0) scale(1.04); }
}

@keyframes amazonDotsFloat {
    from { transform: translate3d(3%, 2%, 0) scale(1.08); }
    to { transform: translate3d(-3%, -2%, 0) scale(1.12); }
}

@media (min-width: 901px) {
    .page-services-amazon .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }
    .page-services-amazon .amazon-services-hero .section-title { margin-left: 0; margin-right: 0; }
}

@media (max-width: 900px) {
    .amazon-services-hero::before, .amazon-services-hero::after { background-size: 466% auto; background-position: center 50%; }
}

/* CONTACTS PAGE */
.contacts-grid { display: grid; grid-template-columns: 3fr 6fr; gap: 20px; }
.page-contacts .hs-form-frame { width: 100%; }
.page-contacts .hs-form-frame iframe { width: 100% !important; max-width: 100%; }
.page-contacts .hs-form-frame :is(.hs-button, input[type="submit"], .actions .hs-button, .actions input[type="submit"]) { width: 100%; min-height: 48px; padding: 12px 16px !important; border-radius: var(--bt-border-radius); font-size: 14px !important; line-height: 18px !important; white-space: nowrap; word-break: normal; overflow-wrap: normal; }
.small-note { font-size: 14px; }

@media (max-width: 900px) {
    .contacts-grid { grid-template-columns: 1fr; gap: 20px; }
    .page-contacts .hs-form-frame :is(.hs-button, input[type="submit"], .actions .hs-button, .actions input[type="submit"]) { display: block; width: 100% !important; max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .amazon-services-hero::before, .amazon-services-hero::after { animation: none !important; }
}

.amazon-services-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: center; margin-bottom: 32px; }
.amazon-services-intro__copy .section-title { max-width: 100%; padding-bottom: 0; }
.amazon-services-intro__copy .section-title p + p { margin-top: 18px; }
.amazon-services-intro__media { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.amazon-services-intro__center { position: relative; z-index: 2; width: 150px; animation: amazonIntroCoreFloat 6.8s ease-in-out infinite; }
.amazon-services-intro__center img { width: 100%; }
.amazon-services-intro__orbit { position: absolute; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
.amazon-services-intro__orbit img { width: 100%; }
.amazon-services-intro__orbit--one { top: 24px; left: 16%; animation: amazonIntroFloatA 13.5s ease-in-out infinite; }
.amazon-services-intro__orbit--two { top: 18%; right: 9%; animation: amazonIntroFloatB 15.5s ease-in-out infinite; }
.amazon-services-intro__orbit--three { top: 50%; right: 2%; animation: amazonIntroFloatC 14.2s ease-in-out infinite; }
.amazon-services-intro__orbit--four { bottom: 14%; right: 15%; animation: amazonIntroFloatD 16.5s ease-in-out infinite; }
.amazon-services-intro__orbit--five { bottom: 8%; left: 11%; animation: amazonIntroFloatE 15.2s ease-in-out infinite; }
.amazon-services-intro__orbit--six { top: 46%; left: 3%; animation: amazonIntroFloatF 14.8s ease-in-out infinite; }
.amazon-services-intro__orbit--seven { top: 62%; right: 14%; animation: amazonIntroFloatG 15.6s ease-in-out infinite; }
.amazon-services-intro__orbit--eight { bottom: 18%; left: 28%; animation: amazonIntroFloatH 16.2s ease-in-out infinite; }

@keyframes amazonIntroCoreFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes amazonIntroFloatA {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    25% { transform: translate3d(10px, -16px, 0) rotate(0deg); }
    50% { transform: translate3d(22px, -4px, 0) rotate(0deg); }
    75% { transform: translate3d(6px, 14px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes amazonIntroFloatB {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    20% { transform: translate3d(-12px, 10px, 0) rotate(0deg); }
    48% { transform: translate3d(-20px, -8px, 0) rotate(0deg); }
    76% { transform: translate3d(-4px, -18px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes amazonIntroFloatC {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    30% { transform: translate3d(8px, 14px, 0) rotate(0deg); }
    58% { transform: translate3d(18px, -10px, 0) rotate(0deg); }
    82% { transform: translate3d(-2px, -16px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes amazonIntroFloatD {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    24% { transform: translate3d(14px, -8px, 0) rotate(0deg); }
    52% { transform: translate3d(20px, 16px, 0) rotate(0deg); }
    78% { transform: translate3d(-6px, 10px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes amazonIntroFloatE {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    22% { transform: translate3d(-10px, -14px, 0) rotate(0deg); }
    54% { transform: translate3d(6px, -22px, 0) rotate(0deg); }
    80% { transform: translate3d(16px, 4px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes amazonIntroFloatF {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    28% { transform: translate3d(-14px, 6px, 0) rotate(0deg); }
    56% { transform: translate3d(-8px, 20px, 0) rotate(0deg); }
    84% { transform: translate3d(10px, 10px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes amazonIntroFloatG {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    22% { transform: translate3d(8px, -16px, 0) rotate(0deg); }
    48% { transform: translate3d(18px, 4px, 0) rotate(0deg); }
    72% { transform: translate3d(2px, 18px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes amazonIntroFloatH {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    20% { transform: translate3d(-10px, 12px, 0) rotate(0deg); }
    50% { transform: translate3d(-18px, -10px, 0) rotate(0deg); }
    82% { transform: translate3d(6px, -14px, 0) rotate(0deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

.amazon-services-accordion { display: grid; gap: 18px; margin-top: 18px; }
.amazon-service-card { width: 100%; padding: 24px; border-radius: var(--bt-border-radius); background-color: var(--color-white); color: var(--text-color); border: 1px solid rgb(23 71 144 / 10%); }
.amazon-service-card__header { position: relative; display: grid; grid-template-columns: 112px minmax(0, 1fr) 46px; align-items: center; gap: 22px; cursor: pointer; list-style: none; }
.amazon-service-card__header::marker { content: ""; }
.amazon-service-card__header::-webkit-details-marker { display: none; }
.amazon-service-card__header::before { content: none; }
.amazon-service-card__media { display: flex; align-items: center; justify-content: center; width: 112px; height: 112px; }
.amazon-service-card__image { width: 100%; }
.amazon-service-card__meta { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.amazon-service-card__title { color: var(--primary-color); font-size: 28px; line-height: 30px; font-weight: var(--fw-base); }
.amazon-service-card__toggle { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgb(2 42 87 / 12%); background-color: var(--color-white); box-shadow: none; transition: border-color 0.25s ease; }
.amazon-service-card__toggle::before { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-top: 2px solid var(--primary-color); border-right: 2px solid var(--primary-color); transform: translate(-50%, -70%) rotate(135deg); transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease; }
.amazon-service-card__header:is(:hover, :focus-visible) .amazon-service-card__title { color: var(--secondary-color); }
.amazon-service-card__header:is(:hover, :focus-visible) .amazon-service-card__toggle { border-color: var(--secondary-color); }
.amazon-service-card__header:is(:hover, :focus-visible) .amazon-service-card__toggle::before { border-color: var(--secondary-color); }
.amazon-service-card[open] .amazon-service-card__toggle::before { transform: translate(-50%, -30%) rotate(-45deg); }
.amazon-service-card__content { display: block; max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-10px); margin-top: 0; padding-top: 0; border-top: 1px solid transparent; transition: max-height 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease, transform 0.42s ease, margin-top 0.56s cubic-bezier(0.22, 1, 0.36, 1), padding-top 0.56s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.42s ease; will-change: max-height, opacity, transform; }
.amazon-service-card[open] .amazon-service-card__content { max-height: 1200px; opacity: 1; transform: translateY(0); margin-top: 20px; padding-top: 20px; border-top-color: rgb(23 71 144 / 12%); }
.amazon-service-card__content p { max-width: 900px; }
.amazon-service-card__content ul { margin: 18px 0 0; padding-left: 20px; }
.amazon-service-card__content li + li { margin-top: 10px; }

@media (max-width: 900px) {
    .amazon-services-intro__grid { grid-template-columns: 1fr; gap: 24px; }
    .amazon-services-intro__media { min-height: 420px; order: -1; }
    .amazon-services-intro__center { width: 120px; }
    .amazon-services-intro__orbit { width: 72px; height: 72px; }
    .amazon-services-intro__orbit--one { top: 18px; left: 10%; }
    .amazon-services-intro__orbit--two { top: 14%; right: 8%; }
    .amazon-services-intro__orbit--three { top: 51%; right: 1%; }
    .amazon-services-intro__orbit--four { bottom: 14%; right: 14%; }
    .amazon-services-intro__orbit--five { bottom: 8%; left: 8%; }
    .amazon-services-intro__orbit--six { top: 48%; left: 2%; }
    .amazon-services-intro__orbit--seven { top: 52%; right: 12%; }
    .amazon-services-intro__orbit--eight { bottom: 18%; left: 24%; }
    .amazon-service-card { padding: 22px 20px; }
    .amazon-service-card__header { grid-template-columns: 88px minmax(0, 1fr) 38px; gap: 16px; }
    .amazon-service-card__media { width: 88px; height: 88px; padding: 14px; }
    .amazon-service-card__title { font-size: 22px; line-height: 24px; }
    .amazon-service-card__toggle { width: 38px; height: 38px; }
}

@media (max-width: 560px) {
    .amazon-services-intro__media { min-height: 360px; }
    .amazon-services-intro__center { width: 150px; }
    .amazon-services-intro__orbit { width: 72px; height: 72px; }
    .amazon-services-intro__orbit--seven { top: 56%; right: 12%; }
    .amazon-services-intro__orbit--eight { bottom: 20%; left: 24%; }
    .amazon-service-card__header { grid-template-columns: 92px minmax(0, 1fr) 38px; align-items: center; gap: 14px; }
    .amazon-service-card__media { width: 92px; height: 92px; margin-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .amazon-services-intro__center, .amazon-services-intro__orbit { animation: none !important; }
}

.services-overview-hero { position: relative; min-height: clamp(460px, 68vh, 660px); display: flex; align-items: center; background-color: var(--primary-color); overflow: hidden; }
.services-overview-hero::after { content: ""; position: absolute; inset: auto auto -120px -90px; width: 280px; height: 280px; background-color: rgb(255 255 255 / 05%); transform: rotate(18deg); }
.services-overview-hero .content-inner { width: 100%; padding-top: 110px; padding-bottom: 56px; z-index: 1; position: relative; }
.services-overview-hero__motion { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.services-overview-hero__square { position: absolute; display: block; background-color: rgb(255 255 255 / 05%); transform-origin: center; animation-timing-function: ease-in-out; animation-iteration-count: infinite; animation-direction: alternate; }
.services-overview-hero__square--1 { top: 12%; left: 8%; width: 58px; height: 58px; animation-name: servicesSquareFloatA; animation-duration: 16s; }
.services-overview-hero__square--2 { top: 18%; right: 14%; width: 112px; height: 112px; animation-name: servicesSquareFloatB; animation-duration: 19s; }
.services-overview-hero__square--3 { top: 42%; left: 14%; width: 84px; height: 84px; animation-name: servicesSquareFloatC; animation-duration: 17s; }
.services-overview-hero__square--4 { top: 56%; left: 34%; width: 42px; height: 42px; animation-name: servicesSquareFloatD; animation-duration: 13s; }
.services-overview-hero__square--5 { top: 52%; right: 8%; width: 132px; height: 132px; animation-name: servicesSquareFloatE; animation-duration: 18s; }
.services-overview-hero__square--6 { bottom: 12%; left: 20%; width: 96px; height: 96px; animation-name: servicesSquareFloatF; animation-duration: 20s; }
.services-overview-hero__square--7 { bottom: 16%; right: 28%; width: 56px; height: 56px; animation-name: servicesSquareFloatG; animation-duration: 14s; }
.services-overview-hero__square--8 { top: 8%; left: 46%; width: 28px; height: 28px; animation-name: servicesSquareFloatH; animation-duration: 12s; }
.services-overview-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 34px; align-items: center; }
.services-overview-hero__copy .section-title { max-width: 760px; margin: 0; text-align: left; padding-bottom: 0; }
.services-overview-hero h1 { color: var(--color-white); font-size: clamp(34px, 4.3vw, 60px); line-height: 1.02; max-width: 820px; }
.services-overview-hero__lead { max-width: 620px; margin-top: 22px; font-size: 20px; line-height: 30px; color: rgb(255 255 255 / 88%); }
.services-overview-hero__panel { padding: 28px; border-radius: var(--bt-border-radius); background-color: rgb(255 255 255 / 8%); border: 1px solid rgb(255 255 255 / 14%); backdrop-filter: blur(4px); }
.services-overview-hero__panel-label { margin-bottom: 16px; color: rgb(255 255 255 / 72%); font-size: 12px; line-height: 12px; letter-spacing: .16em; }
.services-overview-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.services-overview-hero__chips span { display: inline-flex; align-items: center; padding: 10px 12px; border-radius: var(--bt-border-radius); background-color: rgb(255 255 255 / 10%); color: var(--color-white); font-size: 13px; line-height: 13px; font-weight: var(--fw-medium); text-transform: uppercase; }
.services-overview-hero__summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.services-overview-hero__summary article { padding: 16px 14px; border-radius: var(--bt-border-radius); background-color: rgb(2 42 87 / 18%); border: 1px solid rgb(255 255 255 / 10%); }
.services-overview-hero__summary strong { display: block; margin-bottom: 6px; color: var(--color-white); font-size: 34px; line-height: 34px; font-weight: 400; }
.services-overview-hero__summary span { display: block; color: rgb(255 255 255 / 82%); font-size: 14px; line-height: 18px; }
@keyframes servicesSquareFloatA { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(18px, 24px, 0) rotate(96deg); } 100% { transform: translate3d(-10px, 46px, 0) rotate(180deg); } }
@keyframes servicesSquareFloatB { 0% { transform: translate3d(0, 0, 0) rotate(12deg); } 50% { transform: translate3d(-36px, 22px, 0) rotate(110deg); } 100% { transform: translate3d(-18px, 58px, 0) rotate(202deg); } }
@keyframes servicesSquareFloatC { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(24px, -18px, 0) rotate(88deg); } 100% { transform: translate3d(36px, 12px, 0) rotate(172deg); } }
@keyframes servicesSquareFloatD { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(-12px, -28px, 0) rotate(130deg); } 100% { transform: translate3d(10px, -12px, 0) rotate(220deg); } }
@keyframes servicesSquareFloatE { 0% { transform: translate3d(0, 0, 0) rotate(6deg); } 50% { transform: translate3d(-20px, -26px, 0) rotate(78deg); } 100% { transform: translate3d(-44px, 10px, 0) rotate(158deg); } }
@keyframes servicesSquareFloatF { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(26px, -20px, 0) rotate(94deg); } 100% { transform: translate3d(12px, -44px, 0) rotate(188deg); } }
@keyframes servicesSquareFloatG { 0% { transform: translate3d(0, 0, 0) rotate(18deg); } 50% { transform: translate3d(18px, 16px, 0) rotate(104deg); } 100% { transform: translate3d(-8px, 30px, 0) rotate(186deg); } }
@keyframes servicesSquareFloatH { 0% { transform: translate3d(0, 0, 0) rotate(0deg); } 50% { transform: translate3d(-18px, 14px, 0) rotate(140deg); } 100% { transform: translate3d(8px, 28px, 0) rotate(280deg); } }
.services-overview-section .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }
.services-masonry { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 12px; align-items: start; }
.services-masonry__card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 24px; border-radius: var(--bt-border-radius); background-color: var(--color-white); border: 1px solid rgb(23 71 144 / 10%); overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.services-masonry__card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background-color: var(--primary-color); opacity: .95; }
.services-masonry__card:hover { transform: translateY(-4px); border-color: rgb(23 71 144 / 18%); box-shadow: 0 16px 32px rgb(2 42 87 / 12%); }
.services-masonry__card > * { position: relative; z-index: 1; }
.services-masonry__icon { width: 80%; height: auto; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.services-masonry__icon img { width: 100%; }
.services-masonry__eyebrow { margin-bottom: 10px; color: var(--secondary-color); font-size: 12px; line-height: 12px; letter-spacing: .16em; }
.services-masonry__card h3 { margin-bottom: 12px; color: var(--primary-color); font-size: 28px; line-height: 30px; }
.services-masonry__card p:last-of-type { margin-bottom: 22px; }
.services-masonry__card .bt { align-self: flex-start; margin-top: auto; }
@media (max-width: 1100px) { .services-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .services-overview-hero { min-height: 520px; } .services-overview-hero .content-inner { padding-top: 60px; padding-bottom: 26px; } .services-overview-hero__grid { grid-template-columns: 1fr; gap: 24px; } .services-overview-hero h1 { font-size: 30px !important; line-height: 36px !important; } .services-overview-hero__lead { margin-top: 18px; font-size: 17px !important; line-height: 24px !important; } .services-overview-hero::after { width: 180px; height: 180px; left: -40px; bottom: -70px; } .services-overview-hero__panel { padding: 22px 20px; } .services-overview-hero__square--1 { top: 10%; left: 4%; width: 42px; height: 42px; } .services-overview-hero__square--2 { top: 12%; right: 6%; width: 82px; height: 82px; } .services-overview-hero__square--3 { top: 38%; left: 6%; width: 62px; height: 62px; } .services-overview-hero__square--4 { top: 52%; left: 44%; width: 34px; height: 34px; } .services-overview-hero__square--5 { top: 46%; right: 2%; width: 96px; height: 96px; } .services-overview-hero__square--6 { bottom: 18%; left: 18%; width: 72px; height: 72px; } .services-overview-hero__square--7 { bottom: 10%; right: 22%; width: 44px; height: 44px; } .services-overview-hero__square--8 { top: 6%; left: 56%; width: 24px; height: 24px; } }
@media (max-width: 640px) { .services-masonry { grid-template-columns: 1fr; gap: 18px; } .services-masonry__card { margin-top: 0 !important; padding: 22px 20px; } .services-masonry__icon { width: 80%; height: auto; } .services-masonry__card h3 { font-size: 24px; line-height: 26px; } }
@media (prefers-reduced-motion: reduce) { .services-overview-hero__square, .services-masonry__card { animation: none !important; transition: none !important; } }

/* AGENTIC RADAR PAGE */
.page-agentic-radar .menu-spacer { margin-top: 60px; }
.page-agentic-radar .bt { max-width: 100%; text-align: center; line-height: 19px; }
.agentic-radar-hero { position: relative; background-color: var(--primary-color); }
.agentic-radar-hero::before, .agentic-radar-hero::after { content: ""; position: absolute; inset: -10%; background-image: url(../images/animations/kiliagon-hero_dots.png); background-repeat: no-repeat; background-position: center 68%; background-size: 190% auto; pointer-events: none; }
.agentic-radar-hero::before { opacity: .26; animation: amazonDotsDrift 18s ease-in-out infinite alternate; }
.agentic-radar-hero::after { opacity: .12; transform: scale(1.08); animation: amazonDotsFloat 24s ease-in-out infinite alternate; }
.agentic-radar-hero .content-inner { z-index: 1; }
.agentic-radar-hero .section-title { max-width: 1060px; }
.agentic-radar-hero h1 { max-width: 1060px; }
.agentic-shift { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: center; }
.agentic-shift__copy .section-title { padding-bottom: 22px; }
.agentic-shift__copy p + p { margin-top: 18px; }
.agentic-shift__stat { padding: 34px 30px; border-radius: var(--bt-border-radius); background-color: var(--primary-color); border: 1px solid rgb(23 71 144 / 12%); }
.agentic-shift__stat strong { display: block; margin-bottom: 14px; color: var(--secondary-color); font-size: 88px; line-height: 88px; font-weight: var(--fw-medium); }
.agentic-shift__stat span { display: block; color: var(--color-white); font-size: 19px; line-height: 27px; }
#technology-infrastructure .agentic-shift__stat span { color: var(--secondary-color); font-size: 28px; line-height: 36px; font-weight: var(--fw-medium); }
.agentic-service .section-title { max-width: 820px; margin-left: auto; margin-right: auto; }
.agentic-service__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.agentic-service__panel { padding: 30px 28px; border-radius: var(--bt-border-radius); background-color: var(--color-white); border: 1px solid rgb(255 255 255 / 18%); }
.agentic-service__panel h3 { margin-bottom: 14px; color: var(--primary-color); font-size: 28px; line-height: 32px; }
.agentic-service__panel p { color: var(--text-color); }
.agentic-method .section-title { max-width: 920px; margin-left: auto; margin-right: auto; }
#metodo-spark, #spark-method { scroll-margin-top: 90px; }
.agentic-method__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.agentic-method__card { position: relative; min-height: 310px; padding: 24px 20px; border-radius: var(--bt-border-radius); background-color: var(--color-white); border: 1px solid rgb(23 71 144 / 10%); overflow: hidden; }
.agentic-method__card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background-color: var(--secondary-color); }
.agentic-method__card span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: var(--bt-border-radius); background-color: rgb(227 129 16 / 10%); color: var(--secondary-color); font-size: 15px; line-height: 15px; font-weight: var(--fw-medium); }
.agentic-method__card h3 { margin-bottom: 12px; color: var(--primary-color); font-size: 22px; line-height: 26px; overflow-wrap: anywhere; }
.agentic-method__card p { font-size: 15px; line-height: 22px; }
.agentic-dashboard-section { background-color: rgb(23 71 144 / 4%); }
.page-kiliagon-technology .agentic-dashboard-section .about-highlight__copy p { color: var(--primary-color); }
.agentic-dashboard .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }
.agentic-dashboard__mockups { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 18px; align-items: stretch; margin-bottom: 34px; }
.agentic-dashboard-shot { min-height: 310px; margin: 0; border-radius: var(--bt-border-radius); background-color: var(--color-white); border: 1px solid rgb(23 71 144 / 12%); overflow: hidden; }
.agentic-dashboard-shot__topbar { display: flex; gap: 8px; align-items: center; min-height: 42px; padding: 0 16px; background-color: var(--primary-color); }
.agentic-dashboard-shot__topbar span { width: 9px; height: 9px; border-radius: 50%; background-color: rgb(255 255 255 / 72%); }
.agentic-dashboard-shot__body { display: flex; min-height: 268px; padding: 22px; flex-direction: column; justify-content: space-between; }
.agentic-dashboard-shot__metric strong { display: block; color: var(--primary-color); font-size: 24px; line-height: 26px; font-weight: var(--fw-medium); }
.agentic-dashboard-shot__metric span { display: block; margin-top: 6px; color: var(--text-color); font-size: 14px; line-height: 18px; }
.agentic-dashboard-shot__chart { display: flex; height: 150px; gap: 12px; align-items: end; padding-top: 18px; border-bottom: 1px solid rgb(23 71 144 / 12%); }
.agentic-dashboard-shot__chart span { display: block; flex: 1; min-width: 18px; background-color: var(--secondary-color); }
.agentic-dashboard-shot__rings { display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 150px; }
.agentic-dashboard-shot__rings span { display: block; width: 92px; height: 92px; border-radius: 50%; border: 12px solid rgb(23 71 144 / 12%); border-top-color: var(--secondary-color); border-right-color: var(--secondary-color); }
.agentic-dashboard-shot__rings span + span { width: 70px; height: 70px; border-width: 10px; border-top-color: var(--primary-color); border-right-color: rgb(23 71 144 / 12%); }
.agentic-dashboard-shot__lines { display: grid; gap: 18px; padding: 26px 0 10px; }
.agentic-dashboard-shot__lines span { display: block; height: 16px; background-color: rgb(23 71 144 / 14%); }
.agentic-dashboard-shot__lines span:nth-child(1) { width: 88%; background-color: var(--secondary-color); }
.agentic-dashboard-shot__lines span:nth-child(2) { width: 72%; }
.agentic-dashboard-shot__lines span:nth-child(3) { width: 96%; background-color: var(--primary-color); }
.agentic-dashboard__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.agentic-dashboard__item { padding: 22px 20px; border-radius: var(--bt-border-radius); background-color: var(--color-white); border: 1px solid rgb(23 71 144 / 10%); }
.agentic-dashboard__item h3 { margin-bottom: 10px; color: var(--primary-color); font-size: 22px; line-height: 26px; overflow-wrap: anywhere; }
.agentic-dashboard__item p { font-size: 15px; line-height: 22px; }
.agentic-proof .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }
.agentic-proof__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.page-kiliagon-technology .agentic-proof__grid--centered { max-width: 820px; margin-left: auto; margin-right: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.agentic-proof__metric { padding: 28px 24px; border-radius: var(--bt-border-radius); background-color: var(--color-white); border: 1px solid rgb(23 71 144 / 10%); text-align: center; }
.agentic-proof__metric strong { display: block; margin-bottom: 14px; color: var(--secondary-color); font-size: 58px; line-height: 58px; font-weight: var(--fw-medium); }
.agentic-proof__metric h3 { margin-bottom: 12px; color: var(--primary-color); font-size: 24px; line-height: 28px; }
.agentic-proof__metric p { font-size: 16px; line-height: 24px; }
@media (min-width: 901px) { .page-agentic-radar .section-title { max-width: 900px; margin-left: auto; margin-right: auto; } .page-agentic-radar .agentic-radar-hero .section-title { margin-left: 0; margin-right: 0; } }
@media (max-width: 1100px) { .agentic-method__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .agentic-dashboard__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .agentic-radar-hero::before, .agentic-radar-hero::after { background-size: 466% auto; background-position: center 50%; } .agentic-shift { grid-template-columns: 1fr; gap: 28px; } .agentic-shift__stat strong { font-size: 64px; line-height: 64px; } .agentic-service__grid, .agentic-dashboard__mockups, .agentic-proof__grid { grid-template-columns: 1fr; } .agentic-method__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .agentic-method__card { min-height: auto; } .agentic-dashboard-shot { min-height: 260px; } .agentic-dashboard-shot__body { min-height: 218px; } }
@media (max-width: 900px) { .page-kiliagon-technology .agentic-proof__grid--centered { max-width: none; grid-template-columns: 1fr; } }
@media (max-width: 560px) { .agentic-shift__stat { padding: 28px 22px; } .agentic-service__panel, .agentic-proof__metric { padding: 24px 20px; } .agentic-method__grid, .agentic-dashboard__grid { grid-template-columns: 1fr; } .agentic-dashboard-shot__chart { gap: 8px; } .agentic-dashboard-shot__rings span { width: 82px; height: 82px; } .agentic-proof__metric strong { font-size: 48px; line-height: 48px; } }
@media (prefers-reduced-motion: reduce) { .agentic-radar-hero::before, .agentic-radar-hero::after { animation: none !important; } }
