@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cyan:        #1A6B8A;
  --cyan-dim:    #145470;
  --cyan-pale:   rgba(26,107,138,.10);
  --cyan-light:  #5BA8C4;
  --amber:       #2ECC8A;
  --dark:        #0D2233;
  --dark-2:      #142E42;
  --mid:         #2A5068;
  --gray:        #6B8A99;
  --gray-light:  #E8F0F4;
  --white:       #FFFFFF;
  --white-off:   #F5FAFD;
  --white-dim:   rgba(255,255,255,.75);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius-sm:  4px;
  --radius-md:  12px;
  --radius-lg:  4px 28px 4px 28px;
  --shadow-sm:   0 2px 8px rgba(13,34,51,.06);
  --shadow-md:   0 8px 32px rgba(13,34,51,.12);
  --shadow-lg:   0 20px 60px rgba(13,34,51,.16);
  --transition: 0.26s cubic-bezier(0.4,0,0.2,1);
  --navbar-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.h1 { font-family: var(--font-display); font-size: clamp(2.3rem, 6vw, 4rem); line-height: 1.04; font-weight: 600; letter-spacing: -.01em; }
.h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.1; font-weight: 600; letter-spacing: -.01em; }
.lead { font-size: clamp(.95rem, 1.8vw, 1.08rem); font-weight: 400; line-height: 1.7; color: var(--gray); }
.label { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); }
.accent { color: var(--cyan); font-style: italic; }

.container { width: 100%; max-width: 1140px; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--gray-light); }
.text-center { text-align: center; }

.btn { display: inline-flex; align-items: center; gap: .55rem; padding: .95rem 1.9rem; border-radius: 3px 16px 3px 16px; font-family: var(--font-body); font-weight: 600; font-size: .92rem; transition: var(--transition); white-space: nowrap; }
.btn--primary { background: var(--cyan); color: var(--white); }
.btn--primary:hover { background: var(--cyan-dim); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border: 1.5px solid rgba(255,255,255,.5); color: var(--white-off); background: transparent; }
.btn--outline:hover { border-color: var(--white); color: var(--white); }
.btn--sm { padding: .65rem 1.3rem; font-size: .82rem; }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(13,34,51,.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.08); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: var(--navbar-h); }
.navbar__logo-fallback { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white-off); }
.navbar__links { display: none; align-items: center; gap: 2rem; }
.navbar__links a { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.7); transition: color var(--transition); }
.navbar__links a:hover { color: var(--cyan-light); }
.navbar__actions { display: flex; align-items: center; gap: .75rem; }
.navbar__cta { display: none; }
.navbar__burger { width: 42px; height: 42px; border-radius: var(--radius-sm); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: rgba(255,255,255,.08); }
.navbar__burger span { display: block; width: 20px; height: 2px; background: var(--white-off); border-radius: 2px; transition: var(--transition); }
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: var(--navbar-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-light); z-index: 99; padding: 1.5rem 1.25rem 2rem; flex-direction: column; gap: .25rem; box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: .85rem 1rem; border-radius: var(--radius-sm); font-weight: 500; color: var(--mid); }
.mobile-menu a:hover { background: var(--gray-light); color: var(--cyan); }
.mobile-menu__cta { margin-top: 1rem; }
.mobile-menu__cta .btn { width: 100%; justify-content: center; }

.hero { min-height: 580px; padding: calc(var(--navbar-h) + 1.75rem) 0 1.75rem; display: flex; align-items: center; background: var(--dark); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: url('https://images.pexels.com/photos/3845810/pexels-photo-3845810.jpeg?auto=compress&cs=tinysrgb&w=1400'); background-size: cover; background-position: center; opacity: 0.2; pointer-events: none; z-index: 0; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.08); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: .4rem; }
.hero__eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.hero__title { margin-bottom: .6rem; color: var(--white-off); }
.hero__subtitle { margin-bottom: 1.1rem; max-width: 480px; color: rgba(255,255,255,.7); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.1rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem 2rem; }
.hero__trust-item { display: flex; align-items: center; gap: .5rem; font-size: .83rem; font-weight: 500; color: rgba(255,255,255,.6); }
.hero__trust-item svg { color: var(--amber); flex-shrink: 0; }
.hero__visual { position: relative; }
.hero__img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--gray-light); }
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__float-card { position: absolute; bottom: -1.25rem; left: -1.25rem; background: var(--dark); color: var(--white-off); border-radius: 3px 14px 3px 14px; padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .85rem; z-index: 2; background-image: radial-gradient(circle at 0 50%, transparent 7px, var(--dark) 7.5px); background-position: -1px 0; }
.hero__float-icon { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--amber); flex-shrink: 0; }
.hero__float-card strong { font-family: var(--font-display); font-weight: 600; font-size: .95rem; display: block; line-height: 1.2; color: var(--white-off); }
.hero__float-card span { font-size: .73rem; color: rgba(255,255,255,.6); }

@media (max-width: 1023px) { .hero__visual { display: none; } .hero__grid { padding: 0; } }

.trust-bar { background: var(--cyan); padding: 1.1rem 0; }
.trust-bar__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2.5rem; }
.trust-bar__item { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.9); font-size: .83rem; font-weight: 600; }
.trust-bar__item svg { color: var(--white); flex-shrink: 0; }

.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 2.5rem; }
.service-card { position: relative; background: var(--white); border: 1px solid var(--gray-light); border-top: 3px solid var(--cyan); border-radius: 0 0 var(--radius-md) var(--radius-md); padding: 2rem 1.75rem 1.75rem; display: flex; flex-direction: column; gap: .65rem; transition: var(--transition); overflow: hidden; }
.service-card::before { content: attr(data-index); position: absolute; top: .5rem; right: 1.25rem; font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--gray-light); line-height: 1; z-index: 0; pointer-events: none; }
.service-card:hover { border-top-color: var(--amber); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card__icon { width: 44px; height: 44px; background: var(--cyan-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--cyan); position: relative; z-index: 1; }
.service-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--dark); position: relative; z-index: 1; }
.service-card__desc { font-size: .88rem; color: var(--gray); line-height: 1.65; flex: 1; position: relative; z-index: 1; }
.service-card__link { color: var(--cyan-dim); font-size: .83rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; transition: gap var(--transition); position: relative; z-index: 1; }
.service-card:hover .service-card__link { gap: .6rem; }

footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.08); padding: 3rem 0 1.5rem; color: rgba(255,255,255,.6); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand p { font-size: .87rem; margin-top: .75rem; line-height: 1.7; }
.footer__col-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white-off); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .87rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--cyan-light); }
.footer__contact-item { display: flex; align-items: center; gap: .6rem; font-size: .87rem; margin-bottom: .6rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; font-size: .79rem; text-align: center; }

@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .navbar__links { display: flex; } .navbar__cta { display: inline-flex; } .navbar__burger { display: none; } .hero__grid { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 1rem 0; } .hero__visual { display: block; } .services__grid { grid-template-columns: repeat(3, 1fr); } .footer__grid { grid-template-columns: 2fr 1fr 1fr; } .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }