  :root {
    --navy: #1e3a6e;
    --navy-dark: #102040;
    --navy-mid: #2a4f8f;
    --sky: #29a8e0;
    --sky-light: #6ecbf0;
    --sky-pale: #dff3fc;
    --white: #ffffff;
    --off-white: #f4f8fc;
    --gray-light: #e8eef5;
    --gray-mid: #8fa4bc;
    --text-body: #2c3e50;
    --text-muted: #5a7a99;
    --accent: #f0a500;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(30,58,110,0.10);
    --shadow-hover: 0 8px 40px rgba(30,58,110,0.18);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
  }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes floatIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* ── NAV ── */
/*
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(255,255,255,0.96);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--gray-light);
display: flex; align-items: center; justify-content: space-between;
padding: 0 6%; height: 111px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 100px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
text-decoration: none; font-size: 14px; font-weight: 500;
color: var(--navy); letter-spacing: 0.02em;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--sky); }
.nav-cta {
background: var(--navy); color: var(--white);
padding: 10px 22px; border-radius: 8px;
font-size: 14px; font-weight: 600; text-decoration: none;
transition: background 0.2s, transform 0.15s;
white-space: nowrap;
}
.nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }
*/


/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 111px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
/*
  height: 100px;
  width: auto;
*/
  width: 114px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.dropdown-toggle {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: var(--sky);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 11px;
  line-height: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 255px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  margin: 16px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--gray-light);
}

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  margin: 6px 0;
  transition: transform 0.2s, opacity 0.2s;
}




/* ── HERO ── */
.hero {
min-height: 760px;
background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
display: flex; align-items: center;
padding: 100px 10% 60px;
position: relative; overflow: hidden;
}
.hero::before {
content: '';
position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180'%3E%3Cpath fill='%23f4f8fc' d='M0,120 C360,180 1080,40 1440,100 L1440,180 L0,180Z'/%3E%3Cpath fill='rgba(41,168,224,0.25)' d='M0,140 C480,80 960,160 1440,120 L1440,180 L0,180Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
}
.hero-bg-circles {
position: absolute; top: 0; right: 0; width: 50%; height: 100%; pointer-events: none;
overflow: hidden;
}
.hero-bg-circles::before {
content: ''; position: absolute; top: -100px; right: -100px;
width: 600px; height: 600px; border-radius: 50%;
border: 1px solid rgba(110,203,240,0.15);
}
.hero-bg-circles::after {
content: ''; position: absolute; top: 60px; right: 80px;
width: 400px; height: 400px; border-radius: 50%;
border: 1px solid rgba(110,203,240,0.10);
}
.hero-content {
max-width: 50%; position: relative; z-index: 2;
animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
display: inline-flex; align-items: center; gap: 8px;
background: rgba(41,168,224,0.18);
color: var(--sky-light); font-size: 13px; font-weight: 500;
letter-spacing: 0.08em; text-transform: uppercase;
padding: 6px 16px; border-radius: 50px;
border: 1px solid rgba(110,203,240,0.3);
margin-bottom: 28px;
}
.hero-eyebrow::before {
content: ''; width: 6px; height: 6px; border-radius: 50%;
background: var(--sky-light);
animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.4rem, 5vw, 3.8rem);
font-weight: 700; line-height: 1.15;
color: var(--white); margin-bottom: 24px;
}
.hero h1 em { color: var(--sky-light); font-style: normal; }
.hero-sub {
font-size: 1.1rem; line-height: 1.7; font-weight: 300;
color: rgba(255,255,255,0.75); max-width: 100%; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
background: var(--sky); color: var(--white);
padding: 14px 32px; border-radius: 10px;
font-size: 15px; font-weight: 600; text-decoration: none;
transition: all 0.2s; display: inline-block;
box-shadow: 0 4px 20px rgba(41,168,224,0.4);
}
.btn-primary:hover { background: var(--sky-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(41,168,224,0.5); }
.btn-outline {
border: 1.5px solid rgba(255,255,255,0.5); color: var(--white);
padding: 14px 32px; border-radius: 10px;
font-size: 15px; font-weight: 500; text-decoration: none;
transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-stats {
display: flex; gap: 40px; margin-top: 60px;
animation: fadeUp 1.1s 0.2s ease both;
}
.stat-item { color: var(--white); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--sky-light); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; margin-top: 2px; }	


  /* ── MAIN CONTENT ── */
  .main-content {
	  background: var(--off-white);
	  padding-top: 133px;
  
	  h1 {
	  	font-family: 'Playfair Display', serif;
	  	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	  	font-weight: 700; color: var(--navy); line-height: 1.2;
	  }	  
		
	  h2 {
	    font-family: 'Playfair Display', serif;
	    font-size: 1.5em;
	    font-weight: 700;
	    color: var(--navy);
	    line-height: 1.2;		  
	    margin: 1em 0;
	  }
	  
	  h3 {
			font-family: 'Playfair Display', serif;
			font-size: 1.2em;
			font-weight: 700;
		    color: var(--navy);
			line-height: 1.2;		  
		    margin: 1em 0;
	   }
	  
	  p {
	    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
		/*max-width: 560px;*/
		margin-top: 16px;
	  }
	  
	  li {
		font-size: 1rem; color: var(--text-muted); line-height: 1.7;
		margin-left: 20px;
		margin-top: 16px;  
	  }
  }
  


/* ── TRUST BAR ── */
.trust-bar {
background: var(--off-white);
padding: 24px 6%;
display: flex; align-items: center; justify-content: center; gap: 48px;
flex-wrap: wrap;
border-bottom: 1px solid var(--gray-light);
}
.trust-item {
display: flex; align-items: center; gap: 10px;
font-size: 13px; font-weight: 500; color: var(--navy);
}
.trust-icon {
width: 32px; height: 32px; border-radius: 50%;
background: var(--navy); display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 16px; height: 16px; fill: var(--white); }

/* ── SECTIONS ── */
section.main-content {padding: 133px 6% 90px;}
section {padding: 90px 6%;}
.section-label {
font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
text-transform: uppercase; color: var(--sky);
margin-bottom: 12px;
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: clamp(1.8rem, 3.5vw, 2.6rem);
font-weight: 700; color: var(--navy); line-height: 1.2;
}
.section-sub {
font-size: 1rem; color: var(--text-muted); line-height: 1.7;
/*max-width: 560px;*/
margin-top: 16px;
}
.section-header { margin-bottom: 56px; }



/* ── SERVICES ── */  
.services {
  background: var(--off-white);
  padding-top: 3%;
  
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;		  
    margin: 1em 0;
    text-align: center;
  }
  
  h3 {
		font-family: 'Playfair Display', serif;
		font-size: 1.2em;
		font-weight: 700;
	    color: var(--navy);
		line-height: 1.2;		  
	    margin: 1em 0;
   }
  
  p {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
	/*max-width: 560px;*/
	margin-top: 16px;
  }
  
  li {
	font-size: 1rem; color: var(--text-muted); line-height: 1.7;
	margin-left: 20px;
	margin-top: 16px;  
  }
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 24px;
}
.service-card {
background: var(--white);
border-radius: var(--radius-lg);
padding: 36px 32px;
border: 1px solid var(--gray-light);
transition: all 0.3s;
position: relative; overflow: hidden;
}
.service-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
background: linear-gradient(90deg, var(--navy), var(--sky));
transform: scaleX(0); transform-origin: left;
transition: transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
width: 56px; height: 56px; border-radius: 14px;
background: var(--sky-pale);
display: flex; align-items: center; justify-content: center;
margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--navy); }
.service-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.2rem; font-weight: 600; color: var(--navy);
margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; line-height: 1.65; color: var(--text-muted); }
.service-link {
display: inline-flex; align-items: center; gap: 6px;
font-size: 13px; font-weight: 600; color: var(--sky);
text-decoration: none; margin-top: 20px;
transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.svc-badge {
display: inline-block; font-size: 11px; font-weight: 600;
letter-spacing: 0.06em; text-transform: uppercase;
padding: 3px 10px; border-radius: 50px; margin-bottom: 14px;
}
.badge-new { background: rgba(41,168,224,0.1); color: var(--sky); border: 1px solid rgba(41,168,224,0.25); }
.annual-rows { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.annual-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.annual-row::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sky); flex-shrink: 0; margin-top: 4px; }	


/* ── WHY FILTER ── */
.why-filter { background: var(--navy-dark); padding: 90px 6%; }
.why-filter .section-label { color: var(--sky-light); }
.why-filter .section-title { color: var(--white); }
.why-filter .section-sub { color: rgba(255,255,255,0.6); }
.filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.fc { border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(255,255,255,0.1); }
.fc-danger { background: rgba(192,57,43,0.14); border-color: rgba(192,57,43,0.3); }
.fc-warn   { background: rgba(232,145,10,0.10); border-color: rgba(232,145,10,0.28); }
.fc-info   { background: rgba(41,168,224,0.09); border-color: rgba(41,168,224,0.22); }
.fc-neutral{ background: rgba(255,255,255,0.04); }
.fc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.fc-danger  .fc-icon { background: rgba(192,57,43,0.22); }
.fc-warn    .fc-icon { background: rgba(232,145,10,0.18); }
.fc-info    .fc-icon { background: rgba(41,168,224,0.16); }
.fc-neutral .fc-icon { background: rgba(255,255,255,0.08); }
.fc-icon svg { width: 24px; height: 24px; }
.fc h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.fc-danger  h3 { color: #e8837a; }
.fc-warn    h3 { color: #f0c060; }
.fc-info    h3 { color: var(--sky-light); }
.fc-neutral h3 { color: var(--white); }
.fc p { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.58); }
.big-stat { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin: 14px 0 6px; }
.fc-danger  .big-stat { color: #e8837a; }
.fc-warn    .big-stat { color: #f0c060; }
.fc-info    .big-stat { color: var(--sky-light); }
.src { font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 12px; font-style: italic; }
.fc-list { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.fc-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.45; }
.fc-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.fc-warn    .fc-item::before { background: #f0c060; }
.fc-info    .fc-item::before { background: var(--sky-light); }
.fc-neutral .fc-item::before { background: var(--sky-light); }
.hl-warn { color: #f0c060; font-weight: 600; }
.hl-info { color: var(--sky-light); font-weight: 600; }
.filter-cta-bar {
margin-top: 40px; background: rgba(41,168,224,0.10);
border: 1px solid rgba(41,168,224,0.22); border-radius: var(--radius-lg);
padding: 28px 36px; display: flex; align-items: center;
justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.filter-cta-bar p { color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 500; max-width: 560px; }
.filter-cta-bar a {
background: var(--sky); color: var(--white);
padding: 12px 28px; border-radius: 8px;
font-size: 14px; font-weight: 600; text-decoration: none;
white-space: nowrap; transition: background 0.2s; flex-shrink: 0;
}
.filter-cta-bar a:hover { background: var(--sky-light); }


/* ── WHY US ── */
.why-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
align-items: center;
}
.why-visual {
background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
border-radius: var(--radius-lg); padding: 48px;
position: relative; overflow: hidden;
}
.why-visual-inner { position: relative; z-index: 2; }
.why-visual::after {
content: ''; position: absolute; bottom: -60px; right: -60px;
width: 240px; height: 240px; border-radius: 50%;
background: rgba(41,168,224,0.12);
}
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.benefit-item {
display: flex; align-items: flex-start; gap: 16px;
padding: 20px; border-radius: var(--radius);
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.1);
}
.benefit-num {
width: 36px; height: 36px; border-radius: 8px;
background: var(--sky); color: var(--white);
font-weight: 700; font-size: 14px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.benefit-item h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.benefit-item p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; align-items: flex-start; gap: 16px; }
.why-check {
width: 24px; height: 24px; border-radius: 50%;
background: var(--sky-pale); flex-shrink: 0;
display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.why-check svg { width: 12px; height: 12px; stroke: var(--sky); fill: none; stroke-width: 2.5; }
.why-point h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why-point p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }	


/* ── PROCESS ── */
.process { background: var(--off-white); }
.process-steps {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
position: relative;
}
.process-steps::before {
content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
background: linear-gradient(90deg, var(--sky), var(--navy));
z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
width: 56px; height: 56px; border-radius: 50%;
background: var(--white); border: 3px solid var(--sky);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 20px;
font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
color: var(--navy);
box-shadow: 0 0 0 8px var(--off-white);
}
.process-step h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }


/* ── TESTIMONIALS ── */
.testimonials-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.testimonial-card {
background: var(--white); border-radius: var(--radius-lg);
border: 1px solid var(--gray-light);
padding: 32px; transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-body); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
width: 44px; height: 44px; border-radius: 50%;
background: linear-gradient(135deg, var(--navy), var(--sky));
display: flex; align-items: center; justify-content: center;
font-weight: 700; font-size: 14px; color: var(--white);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.author-loc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }	



/* ── SERVICE AREA ── */
.service-area {
background: linear-gradient(160deg, var(--navy-dark), var(--navy));
color: var(--white); text-align: center;
}
.service-area .section-label { color: var(--sky-light); }
.service-area .section-title { color: var(--white); }
.service-area .section-sub { color: rgba(255,255,255,0.65); margin: 16px auto 0; }
.area-tags {
display: flex; flex-wrap: wrap; gap: 12px;
justify-content: center; margin-top: 40px;
}
.area-tag {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
color: var(--white); font-size: 14px; font-weight: 500;
padding: 10px 20px; border-radius: 50px;
}	



/* ── CTA ── */
.cta-section { background: var(--sky-pale); text-align: center; }
.cta-section .section-title { color: var(--navy); }
.cta-section .section-sub { margin: 16px auto 0; }
.cta-card {
max-width: 680px; margin: 48px auto 0;
background: var(--white); border-radius: var(--radius-lg);
padding: 48px; box-shadow: var(--shadow-hover);
border: 1px solid var(--gray-light);
}
/*.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }*/
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
padding: 12px 16px; border-radius: 8px;
border: 1.5px solid var(--gray-light);
font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-body);
transition: border-color 0.2s, box-shadow 0.2s;
outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
border-color: var(--sky);
box-shadow: 0 0 0 3px rgba(41,168,224,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-full { grid-column: 1 / -1; }
.form-submit {
width: 100%; padding: 14px;
background: var(--navy); color: var(--white);
border: none; border-radius: 10px; cursor: pointer;
font-family: 'DM Sans', sans-serif;
font-size: 15px; font-weight: 600;
transition: background 0.2s, transform 0.15s;
margin-top: 8px;
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }	



/* ── FOOTER ── */
footer {
background: var(--navy-dark); color: var(--white);
padding: 60px 6% 32px;
}
.footer-grid {
display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
margin-bottom: 48px;
}
.footer-brand img { height: 123px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-col h5 {
font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
text-transform: uppercase; color: var(--sky-light); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--sky); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 24px;
display: flex; align-items: center; justify-content: space-between;
font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* ── FLOATING CTA ── */
.float-cta {
position: fixed; bottom: 28px; right: 28px; z-index: 99;
background: var(--sky); color: var(--white);
padding: 14px 24px; border-radius: 50px;
font-size: 14px; font-weight: 600; text-decoration: none;
box-shadow: 0 6px 28px rgba(41,168,224,0.45);
display: flex; align-items: center; gap: 8px;
transition: transform 0.2s, box-shadow 0.2s;
animation: floatIn 1s 1.5s ease both;
}
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(41,168,224,0.55); }
.float-cta::before { content: '📞'; font-size: 15px; }	



/* RESPONSIVE */

  @media (max-width: 960px) {
    .filter-grid { grid-template-columns: 1fr; }
    .annual-split { grid-template-columns: 1fr !important; }
    .filter-cta-bar { flex-direction: column; text-align: center; }
  }
  @media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 4%; }
    .nav-links { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .float-cta {
	    font-size: 22px;
    }
    
    a.nav-cta {
	    font-size: 20px;
    }
    
    .main-content {
	    width: 100%;
    }
    
    .services {
	    padding-top: 33%;
    }
    
	.hero {
	    padding-top: 7%;
	    min-height: 900px;
	    .hero-bg-circles {
		    display: none !important;
	    }
	    .hero-content {
		    max-width: 100%;
		    width: 100%;
		    .hero-actions {
			    width: 100%;
			    a.btn-primary {
					width: 100%;
					text-align: center;
					font-size: 20px;				    
			    }
			    a.btn-outline {
					width: 100%;
					text-align: center;
					font-size: 20px;				    				    
			    }
		    }
	    }
    }
    
    .service-card {
	    width: 90%;
    }
    
    .cta-card {
	    padding: 20px 5%;
	    form {
		    width: 90%;
	    }
	    .form-group {
		    width: 100%;
	    }
	    button {
		    margin-top: 2em;
	    }
    }
    
    .hero-stats { gap: 24px; }
    .trust-bar { gap: 20px; }        
    
    footer {
	    width: 100%;
    }
  }


/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  nav.site-nav {
    height: 86px;
    padding: 0 5%;
    width: 100%;
  }

  .nav-logo img {
    height: 76px;
    width: 87px;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 102;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    padding: 10px 6% 18px;
    width: 100%;
  }

  .site-nav.menu-open .nav-links {
    display: flex;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links > li:last-child {
    border-bottom: none;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 15px;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 8px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 0;
    font-size: 14px;
    color: var(--navy-mid);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--sky);
  }

  .nav-cta {
    display: none;
  }

  .site-nav.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-nav.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}