:root {
  --navy: #06162a;
  --navy-2: #0b2749;
  --blue: #0b7bf0;
  --cyan: #13a2ff;
  --ink: #0b1728;
  --muted: #68778a;
  --line: #e2e9f0;
  --white: #fff;
  --radius-sm: 7px;
  --radius-md: 11px;
  --shadow: 0 16px 40px rgba(5, 24, 49, .1);
  --soft-shadow: 0 10px 30px rgba(5, 28, 55, .075);
  --lift-shadow: 0 18px 42px rgba(5, 28, 55, .13);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body, button, input, textarea, select { font-family: Manrope, "Segoe UI", sans-serif; }
body { margin: 0; color: var(--ink); font-weight: 400; line-height: 1.55; letter-spacing: -.008em; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { letter-spacing: -.006em; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; background: var(--white); color: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.topbar { background: var(--navy); color: #c5d3e3; font-size: 11px; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; gap: 24px; }
.topbar a:hover { color: var(--white); }
.hours { margin-left: auto; }
.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .96); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 150px; height: 70px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.main-nav > a:not(.btn) { position: relative; padding: 12px 8px; transition: color .22s var(--ease); }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; bottom: 3px; left: 50%; width: 0; height: 2px; background: var(--blue); transform: translateX(-50%); transition: width .22s var(--ease); }
.main-nav > a:not(.btn):hover, .main-nav > a.active { color: var(--blue); }
.main-nav > a:not(.btn):hover::after, .main-nav > a.active::after { width: 28px; }
.menu-toggle { display: none; border: 0; background: none; font-size: 25px; cursor: pointer; }

.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 22px; border: 1px solid var(--blue); border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--blue), #0762cb); color: #fff !important; box-shadow: 0 10px 25px rgba(11, 123, 240, .22); font-size: 11px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; cursor: pointer; transition: transform .24s var(--ease), box-shadow .24s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(11, 123, 240, .32); }
.btn:disabled { cursor: wait; opacity: .7; }
.btn-small { padding: 11px 16px; }
.btn-outline { border-color: rgba(255, 255, 255, .65); background: rgba(4, 17, 31, .25); box-shadow: none; }
.btn:focus-visible, .main-nav a:focus-visible, .text-link:focus-visible, .menu-toggle:focus-visible { outline: 3px solid rgba(19, 162, 255, .4); outline-offset: 3px; }

.hero { position: relative; min-height: 570px; overflow: hidden; background: url("../images/hero/office-hero.webp") center/cover no-repeat; color: #fff; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 12, 24, .97), rgba(3, 18, 34, .84) 48%, rgba(3, 20, 38, .24)); }
.hero-inner { position: relative; z-index: 2; min-height: 570px; display: flex; align-items: center; }
.hero-copy { max-width: 660px; }
.eyebrow { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .145em; text-transform: uppercase; }
.hero h1 { margin: 16px 0 22px; font-size: 54px; font-weight: 700; line-height: 1.06; letter-spacing: -.045em; }
.hero h1 em { display: block; color: var(--cyan); font-style: normal; }
.hero-copy > p { max-width: 580px; color: #dbe5ef; font-size: 16px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; }

.trust-wrap { position: relative; z-index: 5; margin-top: -42px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 25px 28px; border: 1px solid rgba(35, 139, 245, .48); border-radius: var(--radius-md); background: linear-gradient(135deg, #08213e, #07172a); box-shadow: 0 15px 35px rgba(2, 18, 36, .25); color: #fff; }
.trust-grid article { display: flex; align-items: center; gap: 16px; padding: 0 26px; border-right: 1px solid rgba(255, 255, 255, .13); }
.trust-grid article:last-child { border: 0; }
.trust-grid svg { width: 40px; height: 40px; fill: none; stroke: var(--cyan); stroke-width: 1.5; }
.trust-grid strong, .trust-grid span { display: block; text-transform: uppercase; }
.trust-grid strong { font-size: 14px; }
.trust-grid span { margin-top: 2px; color: #aebed0; font-size: 10px; }

.section { padding: 70px 0; }
.section-heading { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-heading h2 { margin: 0 0 10px; font-size: 32px; font-weight: 700; line-height: 1.18; letter-spacing: -.035em; }
.section-heading h2::after { content: ""; display: block; width: 45px; height: 3px; margin: 12px auto; background: var(--blue); }
.section-heading p { margin: 0; color: var(--muted); font-size: 14px; }

.about { padding-top: 92px; background: #fff; }
.about-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(48px, 6vw, 86px); }
.about-founder { position: relative; width: min(100%, 430px); margin-inline: auto; padding-bottom: 62px; }
.about-portrait-ring { width: 100%; aspect-ratio: 1; padding: 5px; border-radius: 50%; background: conic-gradient(from 35deg, var(--blue) 0 52%, var(--navy) 52% 100%); box-shadow: 0 24px 56px rgba(5, 24, 49, .18); }
.about-portrait { width: 100%; height: 100%; border-radius: 50%; background: url("../images/team/dino-zimic.webp") center 42%/cover no-repeat; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .72); }
.founder-badge { position: absolute; bottom: 0; left: 50%; width: min(88%, 360px); padding: 15px 18px; border-left: 5px solid var(--blue); border-radius: 0 10px 10px 0; background: linear-gradient(90deg, rgba(232, 244, 255, .98), rgba(248, 251, 254, .94)); box-shadow: 0 14px 30px rgba(5, 24, 49, .12); color: var(--navy); text-align: left; transform: translateX(-50%); }
.founder-badge strong, .founder-badge span, .founder-badge small { display: block; }
.founder-badge strong { font-size: 17px; line-height: 1.25; }
.founder-badge span { margin-top: 3px; color: #304b6a; font-size: 12px; font-weight: 700; }
.founder-badge small { margin-top: 7px; color: #5f748c; font-size: 10px; line-height: 1.45; }
.about-story { max-width: 760px; }
.about-story h2 { margin: 12px 0 24px; font-size: 37px; line-height: 1.18; letter-spacing: -.045em; }
.about-story h2 em { color: var(--blue); font-style: normal; }
.about-story p { margin: 0 0 17px; color: #596b7f; font-size: 14px; line-height: 1.82; }
.about-story .about-lead { color: var(--ink); font-size: 16px; font-weight: 600; }
.about-principles { margin-top: 22px !important; padding: 15px 18px; border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; background: linear-gradient(90deg, #eef6ff, #f9fbfd); color: var(--navy) !important; }
.about-actions { display: flex; align-items: center; gap: 22px; margin-top: 22px; }
.text-link { color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.text-link:hover { text-decoration: underline; }

.services { padding-top: 92px; background: #f4f6f8; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.service-card { padding: 28px 16px; border: 1px solid #e7ecf1; border-radius: var(--radius-md); background: #fff; box-shadow: var(--soft-shadow); text-align: center; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.service-card:hover { border-color: #b8d9fa; box-shadow: var(--lift-shadow); transform: translateY(-5px); }
.service-card svg { width: 58px; height: 58px; fill: none; stroke: var(--blue); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { min-height: 42px; margin: 16px 0 8px; font-size: 13px; }
.service-card p { margin: 0; color: var(--muted); font-size: 11px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; }
.process-grid article { position: relative; padding: 12px 18px; text-align: center; }
.process-grid article:not(:last-child)::after { content: "→"; position: absolute; top: 65px; right: -28px; color: #c7d0da; font-size: 30px; font-weight: 300; }
.process-grid b { width: 28px; height: 28px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 12px; }
.process-grid svg { width: 58px; height: 58px; fill: none; stroke: var(--navy-2); stroke-width: 1.4; }
.process-grid h3 { margin: 12px 0 5px; font-size: 14px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 11px; }

.case-study { background: radial-gradient(circle at 15% 30%, #0b3a69, #06162a 55%); color: #fff; }
.case-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 62px; }
.case-copy h2 { margin: 8px 0; font-size: 35px; letter-spacing: -.035em; }
.case-copy > p { color: #b9c8d8; }
.case-copy .case-investment { margin-top: 14px; color: #d4e0ec; font-size: 12.5px; line-height: 1.72; }
.case-copy ul { margin: 24px 0 10px; padding: 0; list-style: none; }
.case-copy li { position: relative; padding: 6px 0 6px 28px; font-size: 13px; }
.case-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
.case-project-link { margin-top: 16px; }
.case-photos { height: 390px; display: grid; grid-template: 1fr 1fr / 1.45fr 1fr; gap: 10px; }
.case-photo { position: relative; overflow: hidden; margin: 0; border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius-md); background: #07172a; }
.case-photo.main { grid-row: 1 / 3; }
.case-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .5s ease; }
.case-photo:hover img { filter: saturate(1.04); transform: scale(1.025); }
.case-photo figcaption { position: absolute; right: 12px; bottom: 10px; left: 12px; padding: 8px 10px; border-radius: 7px; background: linear-gradient(90deg, rgba(4, 18, 34, .88), rgba(4, 18, 34, .58)); color: #fff; font-size: 11px; font-weight: 700; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }

.packages { background: #f6f8fb; }
.packages .section-heading { max-width: 980px; margin-bottom: 72px; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 36px 28px 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--soft-shadow); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.package-card:hover { box-shadow: var(--lift-shadow); transform: translateY(-5px); }
.package-card.featured { border: 2px solid var(--blue); transform: translateY(-8px); }
.package-card.featured:hover { transform: translateY(-11px); }
.popular { position: absolute; top: -31px; right: -2px; left: -2px; height: 31px; display: grid; place-items: center; border-radius: 8px 8px 0 0; background: var(--blue); color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.package-card h3 { margin: 0; color: var(--blue); font-size: 20px; text-align: center; }
.capacity { color: var(--muted); font-size: 11px; text-align: center; }
.package-card ul { flex: 1; margin: 18px 0; padding: 0; list-style: none; }
.package-card li { position: relative; padding: 7px 0 7px 20px; border-bottom: 1px solid #edf1f5; font-size: 12px; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

.brands { padding: 48px 0 42px; overflow: hidden; }
.brands .section-heading { margin-bottom: 34px; }
.brands .section-heading h2 { font-size: 22px; }
.brand-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.brand-track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.brand-track:hover { animation-play-state: paused; }
.brand-set { display: flex; align-items: center; gap: 48px; padding-right: 48px; }
.brand-set img { width: 115px; height: 52px; object-fit: contain; filter: grayscale(1); opacity: .72; }
.brand-set img[alt="TRING"] { width: 100px; }
.brand-set img.brand-logo-wordmark { width: auto; max-width: 150px; height: 38px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.contact { padding: 68px 0; background: linear-gradient(115deg, #06162a, #0b3158); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact h2 { margin: 10px 0; font-size: 34px; line-height: 1.15; letter-spacing: -.035em; }
.contact-copy > p { color: #b8c7d8; }
.contact-info { display: grid; gap: 10px; margin: 25px 0; color: #c7d4e1; font-size: 13px; }
.contact-info a:hover { color: #fff; }
.contact-actions { display: flex; gap: 10px; }
.whatsapp { border-color: #16a765; background: #16a765; }
.contact-form { display: grid; gap: 14px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 5px; color: #bdcad7; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px; border: 1px solid #2d4e6d; border-radius: var(--radius-sm); background: #102b48; color: #fff; font: inherit; resize: vertical; transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease); }
.contact-form input:hover, .contact-form textarea:hover { border-color: #42698e; background: #12304f; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--cyan); outline: 0; box-shadow: 0 0 0 3px rgba(19, 162, 255, .16); }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.form-status { min-height: 19px; margin: 0; color: #8fd0ff; font-size: 12px; }
.form-status.error { color: #ffb7b7; }
.float-call, .float-whatsapp { position: fixed; z-index: 70; right: 20px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-weight: 800; box-shadow: 0 8px 25px rgba(0, 0, 0, .24); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.float-call { bottom: 82px; background: var(--blue); }
.float-whatsapp { bottom: 23px; background: #19a966; }
.float-call:hover, .float-whatsapp:hover { box-shadow: 0 12px 28px rgba(0, 0, 0, .28); transform: translateY(-2px) scale(1.04); }

.site-footer { background: #040d18; color: #8695a7; font-size: 10px; }
.footer-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-inner img { width: 120px; height: 50px; object-fit: contain; }
.footer-inner nav { display: flex; gap: 18px; }
.footer-inner a:hover { color: #fff; }

.about-page-hero { padding: 76px 0; background: linear-gradient(120deg, #06162a, #0a3a69); color: #fff; }
.about-page-hero h1 { margin: 8px 0; font-size: 48px; letter-spacing: -.045em; }
.about-page-hero p { color: #bdcada; }
.about-page-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 75px; }
.about-page-founder { max-width: 420px; }
.about-page article h2 { margin: 0 0 24px; font-size: 32px; line-height: 1.2; letter-spacing: -.04em; }
.about-page article p, .legal-content p { margin: 0 0 18px; color: #596b7f; font-size: 14px; line-height: 1.85; }
.about-page article .btn, .legal-content .btn { margin-top: 10px; }
.legal-content { max-width: 820px; }
.legal-content h2 { margin: 28px 0 8px; font-size: 22px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content a:not(.btn) { color: var(--blue); text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(17px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .main-nav { gap: 10px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid article { padding-inline: 14px; }
  .brand-set { gap: 30px; padding-right: 30px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-founder { max-width: 400px; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 82px; right: 0; left: 0; display: none; max-height: calc(100vh - 82px); overflow-y: auto; padding: 14px 20px 20px; background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.btn) { padding: 12px; }
  .hero, .hero-inner { min-height: 540px; }
  .trust-wrap { margin-top: 0; background: var(--navy); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); border: 0; border-radius: 0; }
  .trust-grid article { margin: 8px 0; }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .service-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article::after { display: none; }
  .case-grid, .contact-grid, .about-page-grid { grid-template-columns: 1fr; }
  .case-photos { height: 330px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card.featured, .package-card.featured:hover { margin-top: 30px; transform: none; }
  .packages .section-heading { margin-bottom: 36px; }
  .hours { display: none; }
  .about-page-hero { padding: 55px 0; }
  .about-page-hero h1 { font-size: 38px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar-inner { gap: 12px; }
  .topbar-inner > :nth-child(2), .topbar-inner > :nth-child(3) { display: none; }
  .nav-wrap { height: 70px; }
  .brand img { width: 120px; height: 58px; }
  .main-nav { top: 70px; max-height: calc(100vh - 70px); }
  .hero, .hero-inner { min-height: 520px; }
  .hero { background-position: 63% center; }
  .hero::after { background: rgba(2, 12, 24, .8); }
  .hero h1 { font-size: 38px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions, .contact-actions, .about-actions { flex-direction: column; align-items: stretch; }
  .text-link { text-align: center; }
  .trust-grid, .service-grid, .process-grid { grid-template-columns: 1fr; }
  .trust-grid { padding: 15px; }
  .trust-grid article { margin: 0; padding: 13px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .section { padding: 54px 0; }
  .services, .about { padding-top: 58px; }
  .section-heading h2 { font-size: 27px; }
  .about-founder { max-width: 330px; padding-bottom: 76px; }
  .founder-badge { width: 94%; padding: 13px 14px; }
  .about-story h2 { font-size: 28px; }
  .about-story .about-lead { font-size: 15px; }
  .about-story p { font-size: 13px; }
  .case-photos { height: 380px; grid-template: 1.2fr .8fr / 1fr 1fr; }
  .case-photo.main { grid-row: auto; grid-column: 1 / 3; }
  .form-two { grid-template-columns: 1fr; }
  .contact h2 { font-size: 28px; }
  .footer-inner { padding: 22px 0; flex-direction: column; align-items: flex-start; }
  .brand-set img { width: 95px; }
  .brand-set img.brand-logo-wordmark { width: auto; max-width: 125px; height: 32px; }
  .float-call, .float-whatsapp { right: 14px; }
  .package-card { padding: 32px 22px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .brand-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}
