/* ftservices.hu: original supplied artwork, navigation and responsive layout. */
:root {
  --navy:#091e30;
  --navy-light:#112e43;
  --ink:#eff7ff;
  --muted:#adc4d8;
  --cyan:#00caff;
  --teal:#48d6ff;
  --paper:#081d33;
  --line:#25455f;
  --radius:18px;
  --container:1180px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}

body {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#081c31;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

img {
  display:block;
  max-width:100%;
  height:auto;
}

a {
  color:inherit;
  text-underline-offset:4px;
}

button,input,textarea,select {
  font:inherit;
}

button,a {
  -webkit-tap-highlight-color:transparent;
}

button {
  cursor:pointer;
}

svg {
  flex-shrink:0;
}

h1,h2,h3,p {
  margin-top:0;
}

h1,h2,h3 {
  line-height:1.13;
  letter-spacing:-.035em;
}

h2 {
  font-size:clamp(1.9rem,3.2vw,2.7rem);
  font-weight:700;
}

h3 {
  font-size:1.4rem;
}

p {
  margin-bottom:20px;
}

a:focus-visible,button:focus-visible,summary:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible {
  outline:3px solid #36d5ff;
  outline-offset:5px;
}

.hero a:focus-visible,.site-footer a:focus-visible {
  outline-color:var(--cyan);
}

[hidden] {
  display:none!important;
}

.container {
  width:min(calc(100% - 64px),var(--container));
  margin-inline:auto;
}

.section {
  padding:94px 0;
}

.icon {
  width:23px;
  height:23px;
  vertical-align:middle;
}

.eyebrow {
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--teal);
  margin-bottom:20px;
}

.small,.form-note {
  font-size:.82rem;
  color:var(--muted);
}

.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  z-index:200;
  background:#0c2741;
  padding:12px 20px;
}

.skip-link:focus {
  top:10px;
}

.topbar {
  background:var(--navy);
  color:#cbdce6;
  font-size:.74rem;
}

.topbar .container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:34px;
}

.topbar span {
  display:flex;
  align-items:center;
  gap:7px;
}

.topbar .icon {
  width:14px;
  height:14px;
  color:var(--cyan);
}

.site-header {
  position:sticky;
  top:0;
  background:#081c31;
  z-index:50;
  border-bottom:1px solid var(--line);
}

.nav-shell {
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:84px;
  gap:25px;
}

.brand {
  display:inline-flex;
  flex-shrink:0;
  text-decoration:none;
}

.brand img {
  width:240px;
  height:48px;
}

.primary-nav {
  display:flex;
  gap:28px;
  align-items:center;
}

.primary-nav a {
  font-size:.86rem;
  text-decoration:none;
  font-weight:600;
  white-space:nowrap;
}

.primary-nav a:hover {
  color:var(--teal);
}

.primary-nav .nav-quote {
  display:flex;
  align-items:center;
  gap:20px;
  padding:12px 18px;
  background:var(--navy);
  color:#fff;
  border-radius:7px;
}

.nav-quote .icon {
  width:17px;
}

.nav-toggle {
  border:1px solid var(--line);
  background:var(--paper);
  border-radius:8px;
  width:46px;
  height:46px;
  padding:11px;
}

.nav-toggle span {
  display:block;
  height:2px;
  background:var(--ink);
  margin:5px 0;
}

.hero {
  background:var(--navy);
  color:white;
  position:relative;
  overflow:hidden;
}

.hero .eyebrow {
  color:#afc4d2;
  display:flex;
  align-items:center;
  gap:10px;
}

.hero h1 {
  font-size:clamp(3.1rem,5.1vw,4.65rem);
  line-height:1.035;
  margin:0 0 25px;
  letter-spacing:-.055em;
}

.hero h1 span {
  color:var(--cyan);
}

.actions {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.btn {
  min-height:48px;
  padding:13px 19px;
  border:1px solid transparent;
  border-radius:7px;
  font-size:.85rem;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-decoration:none;
  transition:background .2s,transform .2s;
}

.btn .icon {
  width:18px;
  height:18px;
}

.btn:hover {
  transform:translateY(-2px);
}

.btn-primary {
  background:var(--cyan);
  color:#092b38;
}

.btn-primary:hover {
  background:#80e6f0;
}

.btn-ghost {
  color:white;
  border-color:#476071;
  background:transparent;
}

.btn-ghost:hover {
  background:var(--navy-light);
}

.btn-outline {
  border-color:#a4b6c1;
  background:transparent;
  color:var(--ink);
}

.btn-outline:hover {
  background:#17425c;
}

.service-shortcuts {
  border-bottom:1px solid var(--line);
}

.service-shortcuts .container {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.service-shortcuts a {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  padding:27px 18px;
  border-right:1px solid var(--line);
  font-size:.8rem;
  font-weight:700;
}

.service-shortcuts a:first-child {
  padding-left:0;
}

.service-shortcuts a:last-child {
  border-right:0;
}

.service-shortcuts a>.icon:first-child {
  color:var(--teal);
}

.service-shortcuts a>.icon:last-child {
  width:15px;
  margin-left:auto;
  color:#a6c1d5;
}

.service-shortcuts a:hover {
  background:var(--paper);
}

.section-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:50px;
  margin-bottom:40px;
}

.section-heading h2 {
  margin-bottom:0;
}

.section-heading>p {
  max-width:360px;
  color:var(--muted);
  font-size:.92rem;
  margin:0;
}

.services {
  background:var(--paper);
}

.service-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.service-card {
  padding:32px;
  background:#081c31;
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  transition:border-color .2s,box-shadow .2s;
}

.service-card:hover {
  border-color:#99c9d2;
  box-shadow:0 12px 35px #092b3809;
}

.card-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:24px;
}

.card-number {
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.1em;
  color:#a6c1d5;
}

.service-card h3 {
  font-size:1.55rem;
  margin-bottom:8px;
}

.service-card .card-sub {
  color:var(--ink);
  font-weight:600;
  font-size:.9rem;
  margin-bottom:12px;
}

.service-card>p {
  color:var(--muted);
  font-size:.88rem;
}

.service-card ul {
  padding:0;
  list-style:none;
  margin:0 0 26px;
}

.service-card li {
  display:flex;
  gap:10px;
  font-size:.83rem;
  margin:8px 0;
}

.service-card li .icon {
  width:15px;
  height:20px;
  color:var(--teal);
}

.text-link {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:.84rem;
  text-decoration:none;
  color:var(--teal);
}

.text-link:hover {
  text-decoration:underline;
}

.text-link .icon {
  width:17px;
}

.service-card .text-link {
  border-top:1px solid var(--line);
  padding-top:20px;
  margin-top:auto;
}

.service-limit {
  margin:25px 0 0;
  font-size:.77rem;
  color:var(--muted);
}

.about-grid {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:100px;
  align-items:center;
}

.about-grid>div>p:not(.eyebrow) {
  color:var(--muted);
  font-size:.95rem;
}

.process {
  padding-top:0;
}

.process-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  border-top:1px solid var(--line);
  padding-top:28px;
}

.process-grid article>span {
  font-size:.78rem;
  color:var(--teal);
  font-weight:700;
}

.process-grid h3 {
  font-size:1.13rem;
  margin:19px 0 12px;
}

.process-grid p {
  font-size:.88rem;
  color:var(--muted);
  margin:0;
}

.area {
  background:#071b30;
}

.area-grid {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:90px;
  align-items:center;
}

.area-grid>div>p:not(.eyebrow) {
  color:var(--muted);
  font-size:.92rem;
}

.area-panel {
  background:#081c31;
  border:1px solid #275375;
  border-radius:var(--radius);
  padding:34px;
  position:relative;
}

.area-pin {
  float:right;
  border-radius:50%;
  background:#123b55;
  display:grid;
  place-items:center;
  width:55px;
  height:55px;
  color:var(--teal);
}

.area-pin .icon {
  width:28px;
  height:28px;
}

.area-panel .eyebrow {
  margin-bottom:9px;
  font-size:.65rem;
}

.area-panel h3 {
  font-size:2rem;
}

.area-panel h3 span {
  display:block;
  margin-top:8px;
  font-size:1rem;
  font-weight:400;
  letter-spacing:0;
  color:var(--muted);
}

.towns {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:25px 0;
}

.towns span {
  font-size:.8rem;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:6px;
  padding:6px 10px;
}

.area-panel>p:last-child {
  margin:0;
  border-top:1px solid var(--line);
  padding-top:20px;
}

.faq-grid {
  display:grid;
  grid-template-columns:.8fr 1.4fr;
  gap:80px;
}

.faq-grid>div>p:not(.eyebrow) {
  color:var(--muted);
  font-size:.9rem;
  max-width:290px;
}

.faq-list {
  border-top:1px solid var(--line);
}

details {
  border-bottom:1px solid var(--line);
}

summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  list-style:none;
  cursor:pointer;
  padding:21px 0;
  font-weight:600;
  font-size:.93rem;
}

summary::-webkit-details-marker {
  display:none;
}

summary span {
  color:var(--teal);
  font-size:1.4rem;
  font-weight:400;
  flex-shrink:0;
}

details[open] summary span {
  transform:rotate(45deg);
}

details p {
  font-size:.88rem;
  color:var(--muted);
  padding-right:20px;
  margin-bottom:23px;
}

.contact {
  background:var(--paper);
  border-top:1px solid var(--line);
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:85px;
  align-items:start;
}

.contact-grid>div>p:not(.eyebrow) {
  color:var(--muted);
}

.contact-link {
  display:flex;
  gap:18px;
  align-items:center;
  text-decoration:none;
  margin:28px 0;
}

.contact-link>.icon {
  width:25px;
  height:25px;
  color:var(--teal);
}

.contact-link small {
  display:block;
  font-size:.76rem;
  color:var(--muted);
}

.contact-link strong {
  font-size:clamp(1rem,2vw,1.5rem);
  letter-spacing:-.02em;
  overflow-wrap:anywhere;
}

.contact-link:hover strong {
  color:var(--teal);
}

.contact-note {
  background:var(--navy);
  color:white;
  border-radius:var(--radius);
  padding:40px;
}

.contact-note h3 {
  font-size:1.9rem;
  margin-bottom:22px;
}

.contact-note p {
  font-size:.9rem;
  color:#c3d3dd;
}

.contact-note .eyebrow {
  display:block;
  color:var(--cyan);
}

.contact-note .small {
  font-size:.73rem;
  margin:20px 0 0;
}

.quote-form {
  background:#0c2741;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  min-width:0;
}

.quote-form h2 {
  font-size:1.6rem;
}

.quote-form>p:not(.eyebrow) {
  color:var(--muted);
  font-size:.82rem;
}

.quote-form .eyebrow {
  margin-bottom:12px;
}

.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 18px;
}

label {
  display:block;
  font-size:.8rem;
  font-weight:600;
  margin-bottom:18px;
}

input,select,textarea {
  display:block;
  width:100%;
  min-width:0;
  border:1px solid #9cabb6;
  background:#081c31;
  color:var(--ink);
  padding:11px 12px;
  border-radius:6px;
  margin-top:6px;
  font-size:.94rem;
  min-height:46px;
}

textarea {
  resize:vertical;
}

input::placeholder,textarea::placeholder {
  color:#aac1d4;
}

#form-status {
  margin:15px 0 0;
  overflow-wrap:anywhere;
}

#message-fallback {
  margin-top:22px;
  border-top:1px solid var(--line);
  padding-top:20px;
}

.quote-form .btn {
  width:100%;
}

.quote-form .form-note {
  font-weight:400;
  line-height:1.6;
}

.site-footer {
  background:var(--navy);
  color:#b7cbd7;
  padding-top:58px;
  font-size:.84rem;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:70px;
  padding-bottom:48px;
}

.footer-grid>div:first-child>p {
  margin-top:22px;
  max-width:340px;
  line-height:1.8;
}

.footer-grid .small {
  color:#a9bdca;
}

.footer-grid h2 {
  color:#fff;
  font-size:.86rem;
  letter-spacing:0;
  margin:12px 0 20px;
}

.footer-grid>div>a:not(.brand) {
  display:block;
  text-decoration:none;
  margin:10px 0;
}

.footer-grid a:hover {
  color:var(--cyan);
}

.footer-bottom {
  border-top:1px solid #2b4356;
  display:flex;
  justify-content:space-between;
  padding-top:22px;
  padding-bottom:24px;
  gap:22px;
  font-size:.72rem;
}

.footer-bottom div {
  display:flex;
  gap:24px;
}

.footer-bottom a {
  text-decoration:none;
}

.mobile-contact {
  display:none;
}

.page-intro {
  padding-top:65px;
  padding-bottom:55px;
}

.page-intro h1,.legal h1,.error h1 {
  font-size:clamp(2.4rem,4.7vw,4rem);
}

.page-intro .eyebrow,.legal .eyebrow {
  margin-top:28px;
}

.page-intro p:last-child {
  color:var(--muted);
  margin-bottom:0;
}

.breadcrumb {
  display:inline-block;
  font-size:.8rem;
  color:var(--muted);
  margin-bottom:12px;
}

.legal {
  max-width:820px;
  padding-top:58px;
  padding-bottom:80px;
  overflow-wrap:anywhere;
}

.legal h2 {
  font-size:1.35rem;
  margin-top:36px;
  letter-spacing:-.02em;
}

.legal p {
  color:var(--muted);
}

.legal dl {
  border-top:1px solid var(--line);
  margin-top:30px;
}

.legal dt {
  font-size:.8rem;
  color:var(--muted);
  padding-top:18px;
}

.legal dd {
  margin:0;
  padding:5px 0 18px;
  border-bottom:1px solid var(--line);
}

.error {
  padding:95px 0 110px;
  max-width:820px;
}

.error p {
  max-width:560px;
}

.error .eyebrow {
  color:var(--teal);
}

@media(min-width:901px) {
  .nav-toggle {
    display:none;
  }

}

@media(max-width:1100px) {
  .primary-nav {
    gap:18px;
  }

  .hero .actions {
    align-items:stretch;
  }

  .hero .btn {
    font-size:.78rem;
    padding:12px;
  }

  .about-grid,.area-grid,.contact-grid {
    gap:50px;
  }

  .service-shortcuts a {
    padding:22px 12px;
    font-size:.74rem;
  }

  .service-shortcuts .icon {
    width:20px;
  }

  .footer-grid {
    gap:35px;
  }

}

@media(max-width:900px) {
  .container {
    width:calc(100% - 40px);
  }

  .nav-shell {
    min-height:76px;
    flex-wrap:wrap;
    gap:0;
  }

  .brand img {
    width:220px;
    height:auto;
  }

  .nav-toggle {
    display:block;
  }

  .primary-nav {
    width:100%;
    padding:14px 0 20px;
    gap:3px;
    flex-direction:column;
    align-items:stretch;
  }

  .primary-nav a {
    padding:12px;
  }

  .primary-nav .nav-quote {
    justify-content:space-between;
  }

  .js .primary-nav {
    display:none;
  }

  .js .primary-nav.is-open {
    display:flex;
  }

  .hero h1 {
    font-size:3.35rem;
  }

  .service-shortcuts .container {
    grid-template-columns:repeat(2,1fr);
  }

  .service-shortcuts a:nth-child(2) {
    border-right:0;
  }

  .service-shortcuts a:nth-child(3) {
    padding-left:0;
  }

  .service-shortcuts a:nth-child(-n+2) {
    border-bottom:1px solid var(--line);
  }

  .section {
    padding:70px 0;
  }

  .section-heading {
    gap:25px;
  }

  .section-heading>p {
    max-width:290px;
    font-size:.85rem;
  }

  .service-card {
    padding:25px;
  }

  .service-card h3 {
    font-size:1.4rem;
  }

  .about-grid,.area-grid,.contact-grid {
    gap:35px;
  }

  .process {
    padding-top:0;
  }

  .process-grid {
    gap:25px;
  }

  .faq-grid {
    gap:40px;
    grid-template-columns:.8fr 1.2fr;
  }

  .footer-grid {
    gap:25px;
    grid-template-columns:1.2fr 1fr 1fr;
  }

  .quote-form {
    padding:24px;
  }

  .form-grid {
    grid-template-columns:1fr;
  }

  .contact-note {
    padding:28px;
  }

}

@media(max-width:640px) {
  html {
    scroll-padding-top:93px;
  }

  .container {
    width:calc(100% - 36px);
  }

  body {
    padding-bottom:calc(66px + env(safe-area-inset-bottom));
  }

  .topbar {
    font-size:.63rem;
  }

  .topbar .container {
    min-height:31px;
    gap:7px;
  }

  .topbar .icon {
    display:none;
  }

  .nav-shell {
    min-height:70px;
  }

  .brand img {
    width:205px;
    height:auto;
  }

  .hero h1 {
    font-size:clamp(2.7rem,11.5vw,4rem);
  }

  .hero .eyebrow {
    font-size:.65rem;
    margin-bottom:22px;
  }

  .hero .actions {
    margin-top:25px;
    gap:10px;
  }

  .hero .btn {
    font-size:.86rem;
    min-height:49px;
  }

  .hero .btn-primary {
    width:100%;
  }

  .hero .btn-ghost {
    width:100%;
  }

  .service-shortcuts a {
    font-size:.73rem;
    padding:20px 8px;
    gap:8px;
  }

  .service-shortcuts a>.icon:last-child {
    display:none;
  }

  .service-shortcuts a>.icon:first-child {
    width:21px;
  }

  .section {
    padding:56px 0;
  }

  .section-heading {
    display:block;
    margin-bottom:28px;
  }

  .section-heading h2 {
    margin-bottom:20px;
  }

  .section-heading>p {
    max-width:none;
    font-size:.91rem;
  }

  .eyebrow {
    margin-bottom:16px;
    font-size:.68rem;
  }

  .service-grid {
    grid-template-columns:1fr;
    gap:16px;
  }

  .service-card {
    padding:25px;
  }

  .card-top {
    margin-bottom:21px;
  }

  .service-card h3 {
    font-size:1.5rem;
  }

  .service-card li {
    font-size:.85rem;
    margin:10px 0;
  }

  .service-limit {
    font-size:.76rem;
  }

  .about-grid,.area-grid,.contact-grid,.faq-grid {
    grid-template-columns:1fr;
    gap:30px;
  }

  .process {
    padding-top:0;
  }

  .process-grid {
    grid-template-columns:1fr;
    gap:24px;
  }

  .process-grid article {
    padding-bottom:24px;
    border-bottom:1px solid var(--line);
  }

  .process-grid article:last-child {
    border:0;
    padding-bottom:0;
  }

  .process-grid h3 {
    margin-top:10px;
  }

  .area-panel {
    padding:26px;
  }

  .faq-grid>div>p:not(.eyebrow) {
    max-width:none;
  }

  .faq-grid {
    gap:24px;
  }

  summary {
    font-size:.92rem;
    padding:20px 0;
  }

  .contact-link strong {
    font-size:1.3rem;
  }

  .contact-link {
    gap:15px;
  }

  .contact-note {
    padding:30px 25px;
  }

  .quote-form {
    padding:24px 20px;
  }

  .quote-form h2 {
    font-size:1.55rem;
  }

  .form-grid {
    grid-template-columns:1fr;
  }

  input,textarea,select {
    font-size:16px;
  }

  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:25px;
  }

  .footer-grid>div:first-child {
    grid-column:1/-1;
  }

  .footer-grid h2 {
    font-size:.8rem;
  }

  .footer-grid>div>a:not(.brand) {
    font-size:.8rem;
    overflow-wrap:anywhere;
    min-height:36px;
    display:flex;
    align-items:center;
  }

  .footer-grid>div>p {
    font-size:.8rem;
  }

  .footer-bottom {
    flex-direction:column;
    gap:15px;
  }

  .footer-bottom div {
    gap:24px;
    flex-wrap:wrap;
  }

  .footer-bottom a {
    padding:6px 0;
  }

  .mobile-contact {
    position:fixed;
    z-index:60;
    bottom:0;
    left:0;
    right:0;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:8px;
    background:#081c31;
    padding:9px 14px calc(9px + env(safe-area-inset-bottom));
    border-top:1px solid var(--line);
    box-shadow:0 -3px 18px #091e3010;
  }

  .mobile-contact a {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:46px;
    border-radius:7px;
    font-size:.85rem;
    font-weight:700;
    text-decoration:none;
    background:var(--navy);
    color:#fff;
  }

  .mobile-contact a:last-child {
    background:var(--cyan);
    color:var(--navy);
  }

  .mobile-contact .icon {
    width:18px;
  }

  .page-intro {
    padding-top:40px;
    padding-bottom:36px;
  }

  .page-intro h1,.legal h1,.error h1 {
    font-size:2.5rem;
  }

  .legal {
    padding-top:35px;
    padding-bottom:55px;
  }

  .legal h1 {
    overflow-wrap:normal;
    font-size:2.15rem;
  }

  .legal p {
    font-size:.93rem;
  }

  .error {
    padding:65px 0;
  }

  .error .actions {
    align-items:stretch;
    flex-direction:column;
  }

}

@media(max-width:640px) {
  .contact--form .quote-form {
    order:-1;
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }

  *,*:before,*:after {
    transition:none!important;
    animation:none!important;
  }

  .btn:hover {
    transform:none;
  }

}

@media print {
  .site-header,.topbar,.mobile-contact,.site-footer,.nav-toggle {
    display:none!important;
  }

  body {
    padding:0;
    background:#0c2741;
    color:black;
  }

  .section {
    padding:25px 0;
  }

  .container {
    width:100%;
  }

  .hero {
    background:#0c2741;
    color:black;
  }

  .hero h1 span,.hero p {
    color:black;
  }

  .service-card {
    break-inside:avoid;
  }

}

/* The uploaded FT emblem, original icon sheet and cinematic banner drive this theme. */
body { background:#06172b; }
.site-header { background:linear-gradient(110deg,#06172a,#10314e); border-bottom:1px solid #146ca0; }
.nav-shell { min-height:108px; }
.brand { align-items:center; gap:12px; }
.brand img { width:110px; height:76px; object-fit:contain; }
.brand>span { color:#fff; font-size:1.5rem; font-weight:800; font-style:italic; letter-spacing:-.05em; line-height:1.1; }
.brand small { display:block; margin-top:8px; font-size:.59rem; font-weight:400; font-style:normal; letter-spacing:.1em; text-transform:uppercase; color:#a7c9e1; }
.primary-nav .nav-quote { background:linear-gradient(135deg,#00bdeb,#0074db); box-shadow:0 0 18px #00afff25; }
.nav-toggle { border-color:#2c6b92; background:#0b2944; }
.nav-toggle span { background:#d9f6ff; }
.hero-reference { background:#03152a; border-bottom:1px solid #186292; }
.hero-artwork { max-width:1672px; margin:0 auto; }
.hero-artwork img { width:100%; height:auto; aspect-ratio:1672/941; }
.hero-caption { display:flex; align-items:center; justify-content:space-between; gap:44px; padding-top:32px; padding-bottom:35px; }
.hero-caption h1 { font-size:clamp(1.65rem,2.5vw,2.4rem); margin-bottom:14px; }
.hero-caption h1 span { color:#23d1ff; }
.hero-caption p:last-child { color:#bed6e8; margin-bottom:0; font-size:.9rem; }
.hero-caption .eyebrow { margin-bottom:14px; }
.hero-caption-actions { display:grid; gap:10px; min-width:240px; }
.hero-caption-actions>span { font-size:.73rem; color:#a4bfd4; text-align:center; }
.btn-primary { background:linear-gradient(135deg,#00c6f1,#0085ed); color:#fff; border:1px solid #47d7ff; box-shadow:0 5px 25px #0085ed20; }
.btn-primary:hover { background:#007abc; }
.btn-outline { border-color:#3d718e; }
.btn-ghost { color:#e6f7ff; }
.service-shortcuts { background:linear-gradient(180deg,#06182e,#0b2947); padding:30px 0 27px; border-bottom:1px solid #244f75; }
.service-shortcuts .container { gap:24px; }
.service-shortcuts a,.service-shortcuts a:first-child,.service-shortcuts a:nth-child(3) { display:flex; flex-direction:column; align-items:center; gap:8px; border:0; padding:0; }
.service-shortcuts a:hover { background:transparent; }
.service-art { display:block; width:100%; max-width:222px; height:auto; aspect-ratio:369/405; filter:drop-shadow(0 5px 13px #00bfff15); }
.service-shortcuts a:hover .service-art { filter:drop-shadow(0 0 16px #00bfff50); }
.shortcut-action { display:inline-flex; gap:8px; align-items:center; color:#b4daef; font-size:.76rem; }
.shortcut-action .icon { width:16px; }
.services { background:radial-gradient(ellipse at 100% 30%,#103554,transparent 65%),#071b30; }
.service-card { background:linear-gradient(150deg,#0e304e,#081c33); border:1px solid #245679; box-shadow:0 12px 40px #0002; }
.service-card:hover { border-color:#05bcf7; box-shadow:0 10px 30px #00aaff10; }
.card-top { align-items:start; margin-bottom:24px; }
.card-top .service-art { width:154px; }
.card-number { margin-top:15px; }
.reference-logo-panel { margin:0; padding:20px; border-radius:18px; background:white; box-shadow:0 0 36px #009aff15; }
.reference-logo-panel img { width:100%; height:auto; }
.about { background:linear-gradient(125deg,#06182c,#0a2945); }
.process { background:#06182c; }
.area { background:linear-gradient(110deg,#0a2741,#0c3555); }
.area-panel { background:#081f36; box-shadow:0 0 28px #008ee90c; }
.faq { background:#071b30; }
.contact { background:radial-gradient(ellipse at 0 0,#123b5a,transparent 60%),#061a30; }
.quote-form { background:#0b2842; }
input,select,textarea { border-color:#55748c; background:#061c32; }
.contact-note { background:linear-gradient(130deg,#103754,#06172c); border:1px solid #2d6488; }
.site-footer { background:#031326; }
.footer-grid .brand img { width:104px; height:70px; }
.footer-grid .brand>span { font-size:1.35rem; }
.mobile-contact { background:#061a2e; border-top-color:#1e74a5; }
.mobile-contact a:last-child { color:#fff; background:linear-gradient(135deg,#00a8df,#006aca); }
.legal,.page-intro,.error { color:#eff7ff; }
@media(max-width:1100px) {
  .brand img { width:90px; height:63px; }
  .brand>span { font-size:1.3rem; }
  .primary-nav { gap:17px; }
  .primary-nav a { font-size:.78rem; }
}
@media(max-width:900px) {
  .nav-shell { min-height:94px; }
  .hero-caption { gap:25px; }
  .hero-caption h1 { font-size:1.8rem; }
  .hero-caption-actions { min-width:215px; }
  .service-shortcuts .container { grid-template-columns:repeat(4,1fr); gap:10px; }
  .service-shortcuts a:nth-child(-n+2) { border:0; }
  .primary-nav a { font-size:.9rem; }
}
@media(max-width:640px) {
  .nav-shell { min-height:86px; }
  .brand { gap:8px; }
  .brand img { width:87px; height:60px; }
  .brand>span { font-size:1.28rem; }
  .brand small { font-size:.5rem; margin-top:6px; }
  .hero-caption { display:block; padding-top:28px; padding-bottom:27px; }
  .hero-caption h1 { font-size:1.8rem; }
  .hero-caption p:last-child { font-size:.87rem; }
  .hero-caption-actions { margin-top:24px; }
  .hero-caption-actions .btn { min-height:49px; }
  .service-shortcuts { padding:22px 0; }
  .service-shortcuts .container { grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px 14px; }
  .service-art { max-width:180px; }
  .card-top .service-art { width:142px; }
  .service-card { padding:24px; }
  .reference-logo-panel { padding:12px; }
  .footer-grid .brand img { width:108px; height:75px; }
}
