@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Marcellus&family=Gothic+A1:wght@300;400;500;600;700&display=fallback');
:root{
    --paper:#F8F6F0;
    --mist:#EFEBE0;
    --ink:#1B1B16;
    --ink-soft:#5C5B4E;
    --navy:#20302A;
    --navy-2:#2A3E36;
    --gold:#2E6B4F;
    --gold-deep:#23533D;
    --line:#DDD7C6;
    --line-soft:#E6E1D2;
    --white:#FFFFFF;
    --radius:10px;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:"Lora", serif;
    background:var(--paper);
    color:var(--ink);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  button{border:0;cursor:pointer;}
  .wrap{max-width:1260px;margin:0 auto;padding:0 32px;}
  h1,h2,h3,h4,h5,h6{font-family:"Gothic A1", sans-serif;font-weight:600;letter-spacing:-0.01em;color:var(--navy);line-height: 1.05;}
  h1{
		font-size: 50px;
	}
	h2{
		font-size: 40px;
	}
	h3{
		font-size: 30px;
	}
	h4{
		font-size: 20px;
	}
	h5{
		font-size: 18px;
	}
	h6{
		font-size: 16px;
	}
  .white{color: #fff;}
  .eyebrow{
    font-family:"Gothic A1", sans-serif;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold-deep);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{content:"";width:22px;height:1px;background:var(--gold-deep);}
  .eyebrow.double::after{content:"";width:22px;height:1px;background:var(--gold-deep);}
  section{padding:96px 0;}
	.inlineblock{display:inline-block}
	.strikethrough {
	  text-decoration: line-through;
	}
	
  /* ---------- HEADER ---------- */
  header{
    position:sticky;top:0;z-index:50;
    background:rgba(247,246,241,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .header-inner{
    display:flex;align-items:center;justify-content:space-between;position:relative;
    padding:18px 32px;max-width:1260px;margin:0 auto;
  }
  .logo{
    font-family:"Marcellus", serif;font-weight:600;font-size:21px;color:var(--navy);
    display:flex;align-items:baseline;gap:8px;letter-spacing:-0.01em;
  }
  .logo span{
    font-family:"Gothic A1", sans-serif;font-size:11px;color:var(--gold-deep);
    font-weight:600;letter-spacing:0.04em;
  }
  nav{display:flex;gap:34px;}
  nav a{
	font-family:"Gothic A1", sans-serif;
    font-size:14.5px;font-weight:500;color:var(--ink-soft);
    position:relative;padding:4px 0;
  }
  nav a:hover{color:var(--navy);}
  .header-right{display:flex;align-items:center;gap:28px;}
  .phone-badge{
    display:flex;align-items:center;gap:9px;font-size:14.5px;font-weight:600;color:var(--navy);
    font-family:"Gothic A1", sans-serif;
  }
  .phone-badge svg{width:16px;height:16px;stroke:var(--gold-deep);flex-shrink:0;}
  
	.nav-toggle{
	  display:none;
	  flex-direction:column;
	  justify-content:center;
	  gap:5px;
	  width:38px;
	  height:38px;
	  background:transparent;
	  border:1px solid var(--line);
	  border-radius:8px;
	  cursor:pointer;
	  padding:0;
	}
	.nav-toggle span{
	  display:block;
	  width:18px;
	  height:2px;
	  margin:0 auto;
	  background:var(--navy);
	  border-radius:2px;
	  transition:transform .3s ease, opacity .3s ease;
	}
	.nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
	.nav-toggle.active span:nth-child(2){opacity:0;}
	.nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

	@media (max-width:900px){
	  .nav-toggle{display:flex;}

	  nav{
		display:flex;
		flex-direction:column;
		position:absolute;
		top:100%;
		left:0;
		right:0;
		background:var(--paper);
		border-bottom:1px solid var(--line);
		gap:0;
		max-height:0;
		overflow:hidden;
		opacity:0;
		transition:max-height .4s ease, opacity .3s ease;
	  }
	  nav.active{
		max-height:400px;
		opacity:1;
	  }
	  nav a{
		padding:16px 32px;
		border-top:1px solid var(--line-soft);
		opacity:0;
		transform:translateY(-6px);
		transition:opacity .35s ease, transform .35s ease;
	  }
	  nav.active a{
		opacity:1;
		transform:translateY(0);
	  }
	  nav.active a:nth-child(1){transition-delay:.05s;}
	  nav.active a:nth-child(2){transition-delay:.1s;}
	  nav.active a:nth-child(3){transition-delay:.15s;}
	  nav.active a:nth-child(4){transition-delay:.2s;}
	  nav.active a:nth-child(5){transition-delay:.25s;}
	  nav.active a:nth-child(6){transition-delay:.3s;}
	}

  /* ---------- HERO ---------- */
  .hero{
    padding:50px 0 80px;
    position:relative;
    overflow:hidden;
  }
  .hero .wrap{position:relative;z-index:2;}
  .hero-tag{margin-bottom:26px;}
  .hero h1{
	font-family: "Gothic A1", sans-serif;
    font-size:70px;line-height:1.2;max-width:920px;color:var(--navy);
    font-weight:400;letter-spacing: -2px;
  }
  .hero h1 em{
    font-style:normal;color:var(--gold-deep);
    font-weight:600;
  }
  .hero .price-tag{
    font-family:"Gothic A1", sans-serif;
    background:var(--navy);color:var(--paper);
    padding:2px 10px;border-radius:6px;font-size:0.62em;
    white-space:nowrap;
  }
  .hero p.sub{
    margin-top:24px;font-size:18px;color:var(--ink-soft);max-width:760px;
  }
  .hero-cta{display:flex;gap:16px;margin-top:38px;flex-wrap:wrap;}
  .btn{
    font-family:"Gothic A1", sans-serif;font-weight:600;font-size:15px;
    padding:15px 30px;border-radius:100px;display:inline-flex;align-items:center;gap:8px;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn-primary{background:#000;color:var(--paper);}
  .btn-primary:hover{transform:translateY(-2px);}
  .btn-ghost{border:1px solid var(--line);color:#000;background:transparent;}
  .btn-ghost:hover{border-color:var(--navy);}
	.call-button {
		display: flex;
		align-items: center;
		gap: 18px;
		width: 100%;
		max-width: 360px;
		padding: 20px 20px;
		background: var(--navy);
		color: #fff;
		text-decoration: none;
		border-radius: 16px;
		font-family: "Gothic A1", sans-serif;
	}
	.call-button .call-icon {
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.18);
		border-radius: 16px;
		font-size: 30px;
	}
	.call-button .call-text {
		display: flex;
		flex-direction: column;
		line-height: 1;
	}
	.call-button .call-text small {
		margin-bottom: 5px;
		font-size: 13px;
		font-weight: 600;
	}
	.call-button .call-text strong {
		font-size: 28px;
		font-weight: 400;
		letter-spacing: 1px;
	}
	@media (max-width: 600px) {
		.call-button {
			max-width: 400px;
			padding: 16px;
			gap: 14px;
		}
		.call-button .call-icon {
			width: 58px;
			height: 58px;
			font-size: 20px;
		}
		.call-button .call-text strong {
			font-size: 24px;
		}
		.hero-cta{
			flex-direction:column;
		}
		.hero-cta .btn{
			width:100%;
			justify-content:center;
		}
	}
	@media (max-width: 350px) {
		.call-button .call-text strong {
			font-size: 20px;
		}
	}
	
	.hero-blob{
	  position:absolute;
	  top:-120px;
	  right:-140px;
	  width:520px;
	  height:520px;
	  border-radius:50%;
	  background:radial-gradient(circle at 30% 30%, var(--gold) 0%, var(--navy) 70%);
	  filter:blur(90px);
	  opacity:0.16;
	  z-index:0;
	  pointer-events:none;
	}
	.hero-ring{
	  position:absolute;
	  top:20px;
	  right:0px;
	  width:260px;
	  height:260px;
	  opacity:0.35;
	  z-index:1;
	  animation:ringSpin 26s linear infinite;
	  pointer-events:none;
	  display: none;
	}
	@keyframes ringSpin{
	  from{transform:rotate(0deg);}
	  to{transform:rotate(360deg);}
	}
	@media (prefers-reduced-motion: reduce){
	  .hero-ring{animation:none;}
	}
	@media (max-width:900px){
	  .hero-ring{top:-100px;right:20px;width:80px;height:80px;display: block;}
	}
	
	/* --- top row: text beside mockup --- */
	.hero-content > div:first-child{
	  /* this is your text block wrapper */
	}

	.hero-content{
	  display:flex;
	  flex-direction:column;
	  gap:40px;
	}
	.hero-content > div:first-of-type,
	.hero-mockup{
	  /* handled below via a wrapping row */
	  
	}
	/* Create a row for the first two children (text + mockup) */
	.hero-content{
	  display:grid;
	  grid-template-columns: 1.5fr 0.5fr;
	  grid-template-areas:
		"text  mockup"
		"timeline timeline";
	  align-items:center;
	  column-gap:0px;
	  row-gap:40px;
	}
	.hero-content > div:first-of-type{
	  grid-area: text;
	}
	.hero-mockup{
	  grid-area: mockup;
	  display:flex;
	  justify-content:center;
	}
	.build-timeline{
	  grid-area: timeline;
	}
	/* --- phone frame --- */
	.phone-frame{
	  position:relative;
	  width:260px;
	  height:540px;
	  background:var(--navy);
	  border-radius:36px;
	  padding:14px;
	  box-shadow:0 20px 50px rgba(0,0,0,.25);
	}
	.phone-notch{
	  position:absolute;
	  top:10px;
	  left:50%;
	  transform:translateX(-50%);
	  width:90px;
	  height:18px;
	  background:var(--navy);
	  border-radius:0 0 12px 12px;
	  z-index:2;
	}
	.phone-screen{
	  position:relative;
	  width:100%;
	  height:100%;
	  overflow:hidden;
	  border-radius:24px;
	  background:var(--navy);
	}
	.scroll-image{
	  position:absolute;
	  inset:0;
	  background-repeat:no-repeat;
	  background-size:100% auto;   /* fits width, keeps aspect ratio, lets it overflow vertically */
	  background-position:top center;
	  animation: scrollBg 40s ease-in-out infinite;
	}
	/* 
	  0%–8%   : hold at top
	  8%–58%  : scroll DOWN (slow — 50% of the loop)
	  58%–68% : hold at bottom
	  68%–100%: scroll UP (fast — 32% of the loop)
	*/
	@keyframes scrollBg{
	  0%   { background-position: top center; }
	  2%   { background-position: top center; }
	  68%  { background-position: bottom center; }
	  68%  { background-position: bottom center; }
	  100% { background-position: top center; }
	}
	/* --- responsive: stack on mobile --- */
	@media (max-width: 860px){
	  .hero-content{
		grid-template-columns: 1fr;
		grid-template-areas:
		  "text"
		  "mockup"
		  "timeline";
	  }
	  .phone-frame{
		margin-top: 50px;
		width:220px;
		height:460px;
	  }
	}
	
  /* signature: 3-day build timeline */
  .build-timeline{
    margin-top:64px;
    display:grid;grid-template-columns:repeat(3,1fr);
    border:1px solid var(--line);border-radius:14px;
    background:var(--white);overflow:hidden;
  }
  .build-step{
    padding:26px 28px;position:relative;
  }
  .build-step:not(:last-child){border-right:1px solid var(--line);}
  .build-step .day{
    font-family:"Gothic A1", sans-serif;font-size:12px;font-weight:600;
    color:var(--gold-deep);letter-spacing:0.08em;text-transform:uppercase;
  }
  .build-step h4{font-size:17px;margin-top:8px;color:var(--navy);}
  .build-step p{font-size:13.5px;color:var(--ink-soft);margin-top:6px;}
  .build-step .dot{
    position:absolute;top:26px;right:24px;width:8px;height:8px;border-radius:50%;
    background:var(--gold);
  }

  /* ---------- STATS ---------- */
  .stats{
    background:var(--navy);color:var(--paper);padding:56px 0;
  }
  .stats .wrap{
    display:grid;grid-template-columns:repeat(4,1fr);gap:32px;
  }
  .stat-num{
    font-family:"Gothic A1", sans-serif;font-size:48px;font-weight:600;color:var(--white);
  }
  .stat-label{
    font-size:14px;color:#B9C1D3;margin-top:6px;letter-spacing:0.02em;
  }

  /* ---------- SERVICES ---------- */
  .services-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px;
  }
  .service-card{
    background:var(--white);border:1px solid var(--line);border-radius:14px;
    padding:36px 32px;transition:border-color .15s ease;
  }
  .service-card:hover{border-color:var(--gold);}
  .service-num{
    font-family:"Gothic A1", sans-serif;font-size:12px;color:var(--gold-deep);
    font-weight:600;letter-spacing:0.06em;
  }
  .service-card h3{font-size:21px;margin-top:14px;color:var(--navy);}
  .service-card p{font-size:14.5px;color:var(--ink-soft);margin-top:12px;}
  .service-card ul{margin-top:18px;list-style:none;}
  .service-card li{
    font-size:13.5px;color:var(--ink-soft);padding:7px 0;border-top:1px solid var(--line-soft);
    display:flex;align-items:center;gap:10px;
  }
  .service-card li:first-child{border-top:none;}
  .service-card li::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--gold);flex-shrink:0;}

  /* ---------- CLIENTS ---------- */
  .clients{background:var(--mist);}
  .clients .wrap{text-align:center;}
  .clients h2{font-weight:500;font-family:"Gothic A1", sans-serif;letter-spacing:0.03em;margin-bottom:40px;}
  .client-row{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 30px;
	}
	.client-logo{
		width: 120px;
		height: 120px;
		background: #fff;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		border:1px solid var(--line);
		transition: all .3s ease;
		overflow: hidden;
	}
	.client-logo a{
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 18px;
	}
	.client-logo img{
		max-width: 100%;
		max-height: 55px;
		width: auto;
		height: auto;
		object-fit: contain;
		transition: transform .3s ease, filter .3s ease;
	}
	  .client-logo .roundedborder{
		border-radius:10px;
	  }
	.client-logo:hover{
		transform: translateY(-5px);
	}
	/*
	.client-logo:hover img{
		filter: grayscale(0%);
		transform: scale(1.05);
	}
	*/
  
  /* ---------- TESTIMONIALS ---------- */
  .testi-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px;
  }
  .testi-card{
    background:var(--white);border:1px solid var(--line);border-radius:14px;padding:32px;
    display:flex;flex-direction:column;justify-content:space-between;
  }
  .testi-quote{font-family:"Marcellus", serif;font-size:16px;line-height:0;color:var(--gold);display:block;margin-bottom:16px;}/*font-size:16px;*/
  .testi-card p.text{font-size:15px;color:var(--ink);margin-top:6px;}
  .testi-person{margin-top:24px;display:flex;align-items:center;gap:12px;}
  .avatar{
    width:40px;height:40px;border-radius:50%;background:var(--mist);
    display:flex;align-items:center;justify-content:center;
    font-family:"Gothic A1", sans-serif;font-weight:600;font-size:13px;color:var(--navy);
    flex-shrink:0;
  }
  .testi-person .name{font-size:14px;font-weight:600;color:var(--navy);}
  .testi-person .role{font-size:12.5px;color:var(--ink-soft);}

  /* ---------- PRICING ---------- */
  .pricing{background:var(--navy);color:var(--paper);}
  .pricing .eyebrow{color:#D9BE7C;}
  .pricing .eyebrow::before{background:#D9BE7C;}
  .pricing h2{color:var(--white);}
  .pricing-intro{color:#B9C1D3;max-width:520px;margin-top:16px;font-size:16px;}
  .pricing-grid{
		display:flex;
		flex-wrap:wrap;
		gap:24px;
		margin-top:52px;
	}
	.price-card{
		flex:0 0 calc((100% - 48px) / 3); /* 3 columns */
		background:var(--navy-2);
		border:1px solid rgba(255,255,255,.1);
		border-radius:14px;
		padding:34px 30px;
		display:flex;
		flex-direction:column;
		box-sizing:border-box;
	}
	.price-card:last-child:nth-child(3n+1){
		flex-basis:100%;
	}
	.price-card:nth-last-child(2):nth-child(3n+1),
	.price-card:last-child:nth-child(3n+2){
		flex-basis:calc((100% - 24px) / 2);
	}
	@media (max-width:991px){
		.price-card,
		.price-card:last-child:nth-child(3n+1),
		.price-card:nth-last-child(2):nth-child(3n+1),
		.price-card:last-child:nth-child(3n+2){
			flex-basis:calc((100% - 24px) / 2);
		}
	}
	@media (max-width:767px){
		.price-card,
		.price-card:last-child:nth-child(3n+1),
		.price-card:nth-last-child(2):nth-child(3n+1),
		.price-card:last-child:nth-child(3n+2){
			flex-basis:100%;
		}
	}
  .price-card.featured{
    border:2px solid var(--gold);position:relative;background:#243756;
  }
  
  .price-badge{
    position:absolute;top:-13px;left:30px;background:var(--gold);color:#fff;
    font-family:"Gothic A1", sans-serif;font-size:11px;font-weight:600;
    padding:4px 12px;border-radius:20px;letter-spacing:0.04em;
  }
  .price-card h3{font-family:"Gothic A1", sans-serif;color:var(--white);font-size:14px;font-weight:600;letter-spacing:0.03em;text-transform:uppercase;}
  .price-card .amount{
    font-family:"Gothic A1", sans-serif;font-size:38px;font-weight:600;color:var(--white);
    margin-top:16px;
  }
  .price-card .amount span{font-size:14px;color:#8E9AB3;font-weight:500;}
  .price-card .desc{font-size:13.5px;color:#AAB3C7;margin-top:10px;}
  .price-card ul{list-style:none;margin-top:26px;flex-grow:1;}
  .price-card li{
    font-size:14px;color:#D3D9E6;padding:10px 0;border-top:1px solid rgba(255,255,255,0.08);
    display:flex;align-items:flex-start;gap:10px;
  }
  .price-card li:first-child{border-top:none;}
  .price-card li::before{content:"✓";color:var(--gold);font-weight:700;flex-shrink:0;}
  .price-card .btn{margin-top:28px;text-align:center;justify-content:center;}
  .price-card .btn-primary{background:var(--gold);color:#fff;}
  .price-card .btn-ghost{border-color:rgba(255,255,255,0.25);color:var(--white);}

	.industry-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.industry-card {
		aspect-ratio: 640 / 426;
		overflow: hidden;
		border-radius: 12px;
		cursor: pointer;

		background-image:
			linear-gradient(to top, #000, transparent),
			var(--bg);
		background-size: cover;
		background-position: top center;

		transition: transform .15s ease;
	}
	.industry-card:hover {
		transform: translateY(-2px);
	}
	.industry-content {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;

		width: 100%;
		height: 100%;
		padding: 30px;

		box-sizing: border-box;
		color: #fff;
	}
	.industry-content span {
		font-size: 20px;
	}
	.industry-content small {
		margin-top: 5px;
		color: #ccc;
		font-size: 16px;
		line-height: 1.2;
	}
	@media (max-width: 768px) {
		.industry-grid {
			grid-template-columns: 1fr;
		}
	}

.table-container1 {
	width: 100%;
	overflow-x: auto;
}
.table-container1 table {
	width: 100%;
	border-collapse: collapse;
}
.table-container1 th,
.table-container1 td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: left;
}
.table-container1 th {
	color: #fff;
	background-color: var(--primary-color);
}
.table-container1 tr:nth-child(even) {
	background-color: #f9f9f9;
}
.table-container1 tr:nth-child(odd) {
	background-color: #ffffff;
}

  /* ---------- CTA STRIP ---------- */
  .cta-strip{
    background:var(--gold);color:var(--navy);
  }
  .cta-strip .wrap{
    display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:24px;padding-top:100px;padding-bottom:100px;color:#fff;
  }
  .cta-strip h2{color:#fff;font-size:54px;font-weight:400;}
  .cta-strip .btn-primary{font-family:"Gothic A1", sans-serif;font-size:20px;background:var(--navy);color:var(--paper);}

  /* ---------- FOOTER ---------- */
  footer{background:#111826;color:#AEB6C6;padding:64px 0 32px;}
  .footer-grid{
    display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;
  }
  .footer-logo{font-family:"Marcellus", serif;color:var(--white);font-size:21px;font-weight:400;}
  .footer-logo span{font-family:"Gothic A1", sans-serif;font-size:11px;color:#D9BE7C;display:block;margin-top:4px;font-weight:600;}
  .footer-grid p.tag{margin-top:16px;font-size:14px;color:#8B93A4;}
  footer h4{font-size:13px;color:var(--white);font-weight:600;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:16px;}
  footer ul{list-style:none;}
  footer li{margin-bottom:10px;font-size:14px;}
  footer li a:hover{color:var(--white);}
  .contact-line{display:flex;align-items:flex-start;gap:10px;font-size:14px;margin-bottom:12px;}
  .contact-line svg{width:15px;height:15px;stroke:#D9BE7C;flex-shrink:0;margin-top:2px;}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);margin-top:48px;padding-top:24px;
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:13px;color:#6D7588;
  }

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.social-icons a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}
  /* Wrapper positions everything: button, badge, tooltip, wave */
  .whatsapp-wrapper {
    position: fixed;
    z-index: 50;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
  }
  .whatsapp-btn {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
  }
  /* Expanding wave rings behind the button */
  .whatsapp-wrapper::before,
  .whatsapp-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: auto;
    right: 0px; /* aligns with button center since wrapper is at bottom:24px;right:24px and button is 56px wide -> center offset */
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    transform: translateY(-50%);
    animation: wave-pulse 2.2s ease-out infinite;
    z-index: 49;
    pointer-events: none;
  }
  .whatsapp-wrapper::after {
    animation-delay: 1.1s;
  }
  @keyframes wave-pulse {
    0% {
      transform: translateY(-50%) scale(1);
      opacity: 0.55;
    }
    100% {
      transform: translateY(-50%) scale(1.9);
      opacity: 0;
    }
  }
  /* Notification badge */
  .whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 50;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ff3b30;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
  }
  /* Tooltip to the left of the icon */
  .whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }
  .whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
  }
  /* Optional: hide tooltip on very small screens so it doesn't crowd the edge */
  @media (max-width: 320px) {
    .whatsapp-tooltip { display: none; }
  }
  
  /* ---------- CTA popup ---------- */
  .cta-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
	min-height: 100vh;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .cta-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .cta-popup {
    position: relative;
    width: 600px;
    max-width: 90vw;
    background: #fff;
    border-radius: 14px;
    padding: 24px 22px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    margin-bottom: 88px; /* sits above the floating whatsapp button */
  }
  .cta-overlay.visible .cta-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .cta-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 4px;
  }
  .cta-close:hover {
    color: #333;
  }
  .cta-heading {
    margin: 0 0 8px;
    font-size: 40px;
    font-weight: 400;
    color: #111;
    letter-spacing: -2px;
  }
  .cta-message {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
  }
  .cta-actions {
    display: flex;
    gap: 10px;
  }
  .cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  .cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .cta-btn.call {
    background: #243756;
    color: #fff;
  }
  .cta-btn.call:hover {
    background: #111826;
  }
  .cta-btn.whatsapp {
    background: #25D366;
    color: #fff;
  }
  .cta-btn.whatsapp:hover {
    background: #1ebc59;
  }
  
		.faq-container {
			width: 100%;
			max-width: 1200px;
			padding: 20px 20px;
			margin: 20px auto 20px;
			line-height: 1.5;
			background-color: #fff;
			border-radius: 16px;
			border:1px solid var(--line);
		}
		.faq-container .faq-item {
			margin-bottom: 10px;
			border-bottom: 1px solid var(--line);
		}
		.faq-container .faq-item:last-child {
			margin-bottom: 0px;
			border-bottom: 0px;
		}
		.faq-container .faq-question {
			font-size: 18px;
			font-weight: bold;
			padding: 15px 0;
			cursor: pointer;
			display: flex;
			justify-content: space-between;
			align-items: center;
			text-align: left;
		}
		.faq-container .faq-answer {
			display: none;
			padding: 0px 0 20px;
			font-size: 16px;
			color: #555;
			text-align: left;
		}
		.faq-container .toggle-icon {
			font-size: 20px;
			font-weight: bold;
			width: 40px;
			text-align: right;
		}
		
  @media (max-width:900px){
    .services-grid,.testi-grid,.pricing-grid{grid-template-columns:1fr;}
    .stats .wrap{grid-template-columns:repeat(2,1fr);gap:28px;}
    .build-timeline{grid-template-columns:1fr;}
    .build-step:not(:last-child){border-right:none;border-bottom:1px solid var(--line);}
	.hero{
		padding:50px 0 80px;
	  }
    .hero h1{font-size:38px;line-height:1.5;}
	.header-inner{
		padding:18px 20px;
	  }
    
    .client-row{justify-content:center;}
    .footer-grid{grid-template-columns:1fr;}
    section{padding:64px 0;}
    .wrap{padding:0 20px;}
	
	.cta-popup {
		position: relative;
		width: 320px;
	}
	  .cta-heading {
		font-size: 32px;
	  }
  }

/* =========================================
   SERVICES PAGE
========================================= */

.services-page {
    overflow: hidden;
}

.services-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HERO
========================================= */

.services-hero {
    padding: 50px 0 50px;
}

.services-eyebrow,
.services-section-intro > span,
.services-why-heading > span,
.services-cta-box > span {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -3px;
}

.services-hero h1 span {
    display: block;
    opacity: .55;
}

.services-hero-text {
    max-width: 680px;
    margin: 35px 0 35px;
    font-size: 18px;
    line-height: 1.7;
}

.services-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================================
   BUTTONS
========================================= */

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.services-btn-primary {
    background: #111;
    color: #fff;
}

.services-btn-primary:hover {
    transform: translateY(-2px);
}

.services-btn-secondary {
    border: 1px solid rgba(0,0,0,.2);
    color: #111;
}

.services-btn-secondary:hover {
    background: #111;
    color: #fff;
}


/* =========================================
   PROCESS
========================================= */

.services-process {
    padding: 50px 0;
    background: #f5f4f1;
}

.services-section-intro {
    max-width: 650px;
}

.services-section-intro h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -2px;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    border-top: 1px solid rgba(0,0,0,.15);
}

.services-process-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 35px 30px 20px 0;
    border-right: 1px solid rgba(0,0,0,.15);
}

.services-process-card:not(:first-child) {
    padding-left: 30px;
}

.services-process-card:last-child {
    border-right: 0;
}

.services-process-number {
    font-size: 14px;
    font-weight: 600;
}

.services-process-label,
.services-item-label {
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.services-process-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
    font-weight: 500;
}

.services-process-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    opacity: .7;
}


/* =========================================
   SERVICES
========================================= */

.services-list {
    padding: 50px 0 50px;
}

.services-section-intro-center {
    max-width: 850px;
    margin: 0 auto 100px;
    text-align: center;
}

.services-section-intro h2 em,
.services-why-heading h2 em,
.services-cta-box h2 em {
    font-style: normal;
    opacity: .5;
}

.services-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    padding: 90px 0;
    border-top: 1px solid rgba(0,0,0,.15);
}

.services-item:last-child {
    border-bottom: 0px solid rgba(0,0,0,.15);
}

.services-item-number {
    font-size: 16px;
    font-weight: 600;
}

.services-item-content {
    max-width: 850px;
}

.services-item-heading h3 {
    max-width: 750px;
    margin: 20px 0 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -2px;
}

.services-item-description {
    max-width: 700px;
    margin: 30px 0;
    font-size: 17px;
    line-height: 1.75;
    opacity: .75;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 0;
    max-width: 700px;
    margin: 35px 0;
    padding: 0;
    list-style: none;
}

.services-features li {
    position: relative;
    padding: 14px 0 14px 25px;
    border-top: 1px solid rgba(0,0,0,.12);
    font-size: 14px;
}

.services-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: .6;
}

.services-text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.services-text-link span {
    transition: transform .2s ease;
}

.services-text-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   WHY WORK WITH ME
========================================= */

.services-why {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.services-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.services-why-heading h2 {
    max-width: 500px;
    margin: 0;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.services-why-content {
    max-width: 560px;
}

.services-why-content p {
    margin: 0 0 25px;
    font-size: 17px;
    line-height: 1.75;
    opacity: .75;
}

.services-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.services-points div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px 20px 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.services-points div:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,.2);
}

.services-points strong {
    font-size: 12px;
    opacity: .5;
}

.services-points span {
    font-size: 15px;
}


/* =========================================
   CTA
========================================= */

.services-cta {
    padding: 100px 0;
}

.services-cta-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.services-cta-box h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.services-cta-box p {
    max-width: 550px;
    margin: 30px auto;
    font-size: 17px;
    line-height: 1.7;
    opacity: .7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .services-container {
        width: min(100% - 40px, 600px);
    }

    .services-hero {
        padding: 80px 0;
    }

    .services-hero h1 {
        font-size: clamp(44px, 12vw, 64px);
        letter-spacing: -2px;
    }

    .services-hero-text {
        font-size: 16px;
    }

    .services-process {
        padding: 80px 0;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .services-process-card,
    .services-process-card:not(:first-child) {
        grid-template-columns: 50px 1fr;
        padding: 30px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(0,0,0,.15);
    }

    .services-process-card:last-child {
        border-bottom: 0;
    }

    .services-list {
        padding: 90px 0 60px;
    }

    .services-section-intro-center {
        margin-bottom: 50px;
    }

    .services-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 60px 0;
    }

    .services-item-heading h3 {
        font-size: clamp(34px, 10vw, 50px);
        letter-spacing: -1.5px;
    }

    .services-item-description {
        font-size: 16px;
    }

    .services-features {
        grid-template-columns: 1fr;
    }

    .services-why {
        padding: 80px 0;
    }

    .services-why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-why-heading h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .services-cta {
        padding: 80px 0;
    }

    .services-cta-box h2 {
        font-size: clamp(40px, 11vw, 58px);
        letter-spacing: -1.5px;
    }

    .services-btn {
        width: 100%;
    }

    .services-hero-actions {
        flex-direction: column;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    overflow: hidden;
}

.contact-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.contact-eyebrow,
.contact-label {
    display: block;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================
   HERO
========================================= */

.contact-hero {
    padding: 120px 0 100px;
}

.contact-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(50px, 7vw, 88px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -3px;
}

.contact-hero h1 span {
    display: block;
    opacity: .5;
}

.contact-intro {
    max-width: 650px;
    margin: 35px 0 0;
    font-size: 18px;
    line-height: 1.75;
    opacity: .75;
}


/* =========================================
   MAIN CONTACT AREA
========================================= */

.contact-main {
    padding: 50px 0;
    background: #f5f4f1;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}


/* =========================================
   CONTACT INFO
========================================= */

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    max-width: 450px;
    margin: 0 0 25px;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.contact-info > p {
    max-width: 470px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    opacity: .7;
}

.contact-methods {
    margin-top: 55px;
    border-top: 1px solid rgba(0,0,0,.15);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.15);
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 50%;
    font-size: 17px;
    transition: .2s ease;
}

.contact-method:hover .contact-method-icon {
    background: #111;
    color: #fff;
    transform: translate(2px, -2px);
}

.contact-method small {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: .55;
}

.contact-method strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
}


/* =========================================
   FORM
========================================= */
form.form1 .errors{color:#d63649;font-size:14px; min-height:0px}
.toast {
    position:fixed; left:50%; transform:translateX(-50%) translateY(16px); bottom:45%;
    background:#0b1220; color:#fff; padding:12px 16px; border-radius:8px; box-shadow:0 10px 30px rgba(2,6,23,0.25);
    opacity:0; pointer-events:none; transition:opacity .18s, transform .18s;
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); pointer-events:auto; }

.contact-form-wrapper {
    padding: 45px;
    background: #fff;
    border-radius: 14px;
}

.contact-form-heading h2 {
    max-width: 550px;
    margin: 0 0 40px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    margin-bottom: 24px;
}

.contact-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 16px;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: 6px;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease;
}

.contact-field input,
.contact-field select {
    height: 50px;
}

.contact-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #111;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    opacity: .45;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 100px;
    background: #111;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
}

.contact-submit span {
    font-size: 18px;
}


/* =========================================
   WHAT HAPPENS NEXT
========================================= */

.contact-expectation {
    padding: 50px 0 100px;
}

.contact-expectation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-expectation h2 {
    max-width: 500px;
    margin: 0;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.contact-next-steps {
    border-top: 1px solid rgba(0,0,0,.15);
}

.contact-step {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,.15);
}

.contact-step > span {
    font-size: 12px;
    font-weight: 600;
    opacity: .5;
}

.contact-step h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 500;
}

.contact-step p {
    max-width: 450px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    opacity: .65;
}


/* =========================================
   CTA
========================================= */

.contact-cta {
    padding: 110px 0;
    background: #111;
    color: #fff;
}

.contact-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-inner h2 {
    margin: 0;
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.contact-cta-inner h2 em {
    font-style: normal;
    opacity: .5;
}

.contact-cta-inner p {
    max-width: 550px;
    margin: 30px auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: .7;
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 100px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.contact-whatsapp:hover {
    transform: translateY(-2px);
}

.contact-whatsapp span {
    font-size: 18px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-container {
        width: min(100% - 40px, 600px);
    }

    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero h1 {
        font-size: clamp(46px, 13vw, 64px);
        letter-spacing: -2px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-main {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 10px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-expectation {
        padding: 50px 0 100px;
    }

    .contact-expectation-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-expectation h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .contact-cta {
        padding: 80px 0;
    }

    .contact-cta-inner h2 {
        font-size: clamp(44px, 12vw, 60px);
    }

    .contact-whatsapp {
        width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================
   BUSINESS TOOLS PAGE
========================================= */

.tools-page {
    overflow: hidden;
}

.tools-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HERO
========================================= */

.tools-hero {
    padding: 120px 0 0px;
}

.tools-eyebrow,
.tools-category-heading small,
.tools-more span,
.tools-cta-inner > span {
    display: block;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tools-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(50px, 7vw, 88px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -3px;
}

.tools-hero h1 span {
    display: block;
    opacity: .5;
}

.tools-intro {
    max-width: 680px;
    margin: 35px 0 0;
    font-size: 18px;
    line-height: 1.75;
    opacity: .75;
}


/* =========================================
   TOOLS LIST
========================================= */

.tools-list {
    padding: 90px 0 120px;
    background: #f5f4f1;
}

.tools-category {
    padding: 90px 0;
    border-top: 1px solid rgba(0,0,0,.15);
}

.tools-category:first-child {
    border-top: 0;
}

.tools-category-heading {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.tools-category-heading > span {
    font-size: 13px;
    font-weight: 600;
    opacity: .5;
}

.tools-category-heading small {
    margin-bottom: 15px;
}

.tools-category-heading h2 {
    max-width: 750px;
    margin: 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -2px;
}

.tools-category-heading h2 em {
    font-style: normal;
    opacity: .45;
}


/* =========================================
   TOOL CARDS
========================================= */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(0,0,0,.15);
    border: 1px solid rgba(0,0,0,.15);
}

.tool-card {
    position: relative;
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    gap: 20px;
    min-height: 190px;
    padding: 30px;
    box-sizing: border-box;
    background: #f5f4f1;
    color: inherit;
    text-decoration: none;
    transition:
        background .2s ease,
        transform .2s ease;
}

.tool-card:hover {
    background: #fff;
}

.tool-card-number {
    font-size: 11px;
    font-weight: 600;
    opacity: .45;
}

.tool-card-content h3 {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 500;
}

.tool-card-content p {
    max-width: 430px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    opacity: .65;
}

.tool-card-arrow {
    align-self: start;
    justify-self: end;
    font-size: 20px;
    transition: transform .2s ease;
}

.tool-card:hover .tool-card-arrow {
    transform: translate(4px, -4px);
}


/* =========================================
   MORE TOOLS
========================================= */

.tools-more {
    padding: 60px 0 20px;
    text-align: center;
}

.tools-more span {
    margin-bottom: 10px;
    opacity: .5;
}

.tools-more p {
    margin: 0;
    font-size: 14px;
    opacity: .6;
}


/* =========================================
   CTA
========================================= */

.tools-cta {
    padding: 110px 0;
    background: #111;
    color: #fff;
}

.tools-cta-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.tools-cta-inner h2 {
    margin: 0;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.tools-cta-inner h2 em {
    font-style: normal;
    opacity: .5;
}

.tools-cta-inner p {
    max-width: 600px;
    margin: 30px auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: .7;
}

.tools-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 100px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.tools-cta-button:hover {
    transform: translateY(-2px);
}

.tools-cta-button span {
    font-size: 18px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .tools-container {
        width: min(100% - 40px, 600px);
    }

    .tools-hero {
        padding: 80px 0;
    }

    .tools-hero h1 {
        font-size: clamp(46px, 13vw, 64px);
        letter-spacing: -2px;
    }

    .tools-intro {
        font-size: 16px;
    }

    .tools-list {
        padding: 60px 0 80px;
    }

    .tools-category {
        padding: 65px 0;
    }

    .tools-category-heading {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }

    .tools-category-heading h2 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1.5px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .tool-card-content h3 {
        font-size: 19px;
    }

    .tools-cta {
        padding: 80px 0;
    }

    .tools-cta-inner h2 {
        font-size: clamp(42px, 11vw, 58px);
    }

    .tools-cta-button {
        width: 100%;
        box-sizing: border-box;
    }

}


/* =========================================
   GST CALCULATOR PAGE
========================================= */

.gst-page {
    overflow: hidden;
}

.gst-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HERO
========================================= */

.gst-hero {
    padding: 70px 0 90px;
    background: #f5f4f1;
}

.gst-hero-content {
    max-width: 720px;
    margin-bottom: 45px;
}

.gst-eyebrow,
.gst-section-label,
.gst-cta-inner > span {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gst-hero h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2.5px;
}

.gst-hero h1 span {
    display: block;
    opacity: .5;
}

.gst-hero-content > p {
    max-width: 620px;
    margin: 25px 0 0;
    font-size: 17px;
    line-height: 1.7;
    opacity: .7;
}


/* =========================================
   CALCULATOR
========================================= */

.gst-calculator {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
    overflow: hidden;
}

.gst-calculator-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.gst-calculator-header span {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: .5;
}

.gst-calculator-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
}

.gst-calculator-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    padding: 30px;
}

.gst-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 12px;
    font-weight: 600;
}

.gst-input-wrap {
    position: relative;
}

.gst-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    opacity: .6;
    pointer-events: none;
}

.gst-field input,
.gst-field select {
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    padding: 0 15px;
    border: 1px solid rgba(0,0,0,.17);
    border-radius: 6px;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease;
}

.gst-field input {
    padding-left: 40px;
}

.gst-field input:focus,
.gst-field select:focus {
    border-color: #111;
}


/* =========================================
   RESULTS
========================================= */

.gst-result {
    grid-column: 1 / -1;
    margin-top: 5px;
    border-top: 1px solid rgba(0,0,0,.12);
}

.gst-result-row,
.gst-result-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gst-result-row {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    font-size: 14px;
}

.gst-result-row span {
    opacity: .65;
}

.gst-result-row strong {
    font-weight: 500;
}

.gst-result-total {
    margin-top: 5px;
    padding: 20px;
    background: #f5f4f1;
    border-radius: 8px;
    font-size: 15px;
}

.gst-result-total strong {
    font-size: 21px;
    font-weight: 600;
}


/* =========================================
   INFORMATION
========================================= */

.gst-info {
    padding: 120px 0;
}

.gst-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.gst-info-grid h2 {
    max-width: 500px;
    margin: 0;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.gst-info-grid h2 em {
    display: block;
    font-style: normal;
    opacity: .5;
}

.gst-info-content {
    max-width: 560px;
}

.gst-info-content p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.75;
    opacity: .7;
}


/* =========================================
   EXAMPLES
========================================= */

.gst-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 90px;
    border-top: 1px solid rgba(0,0,0,.15);
}

.gst-example {
    padding: 35px 40px 20px 0;
    border-bottom: 1px solid rgba(0,0,0,.15);
}

.gst-example + .gst-example {
    padding-left: 40px;
    border-left: 1px solid rgba(0,0,0,.15);
}

.gst-example > span {
    display: block;
    margin-bottom: 18px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: .5;
}

.gst-example h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 500;
}

.gst-example p {
    max-width: 480px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    opacity: .65;
}


/* =========================================
   CTA
========================================= */

.gst-cta {
    padding: 110px 0;
    background: #111;
    color: #fff;
}

.gst-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gst-cta-inner h2 {
    margin: 0;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.gst-cta-inner h2 em {
    font-style: normal;
    opacity: .5;
}

.gst-cta-inner p {
    max-width: 550px;
    margin: 30px auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: .7;
}

.gst-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 100px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.gst-cta-button:hover {
    transform: translateY(-2px);
}

.gst-cta-button span {
    font-size: 18px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .gst-container {
        width: min(100% - 40px, 600px);
    }

    .gst-hero {
        padding: 55px 0 65px;
    }

    .gst-hero h1 {
        font-size: clamp(44px, 12vw, 60px);
        letter-spacing: -2px;
    }

    .gst-hero-content > p {
        font-size: 16px;
    }

    .gst-calculator-header {
        padding: 22px 20px;
    }

    .gst-calculator-body {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }

    .gst-result {
        grid-column: auto;
        margin-top: 5px;
    }

    .gst-info {
        padding: 80px 0;
    }

    .gst-info-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .gst-info-grid h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .gst-examples {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .gst-example {
        padding: 30px 0;
    }

    .gst-example + .gst-example {
        padding-left: 0;
        border-left: 0;
    }

    .gst-cta {
        padding: 80px 0;
    }

    .gst-cta-inner h2 {
        font-size: clamp(42px, 11vw, 58px);
    }

    .gst-cta-button {
        width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================
   INVOICE GENERATOR
========================================= */

.invoice-app {
    width: min(1180px, calc(100% - 40px));
    margin: 40px auto 80px;
}


/* =========================================
   TOOLBAR
========================================= */

.invoice-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.invoice-toolbar-left,
.invoice-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.invoice-tool-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    background: #fff;
    color: #222;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.invoice-tool-btn:hover {
    background: #f5f5f5;
}

.invoice-tool-btn-dark {
    background: #111;
    border-color: #111;
    color: #fff;
}

.invoice-tool-btn-dark:hover {
    background: #333;
}

.invoice-tool-btn-danger {
    color: #b42318;
}

.invoice-tool-btn input {
    display: none;
}


/* =========================================
   INVOICE PAPER
========================================= */

.invoice-paper {
    width: 100%;
    box-sizing: border-box;
    padding: 55px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}


/* =========================================
   INPUTS
========================================= */

.invoice-input {
    width: 100%;
    box-sizing: border-box;
    padding: 2px 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #555;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.55;
    resize: none;
}

.invoice-input:focus {
    color: #111;
}

.invoice-input::placeholder {
    color: #999;
}

textarea.invoice-input {
    min-height: 24px;
}


/* =========================================
   HEADER
========================================= */

.invoice-header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    min-height: 300px;
}

.invoice-company {
    display: flex;
    gap: 28px;
    width: 50%;
}

.invoice-logo-area {
    flex: 0 0 105px;
}

.invoice-logo,
.invoice-logo-placeholder {
    width: 105px;
    height: 85px;
    object-fit: contain;
}

.invoice-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #aaa;
    font-size: 10px;
    letter-spacing: 1px;
}

.invoice-company-details {
    flex: 1;
}

.invoice-company-name {
    color: #666;
}

.invoice-small-textarea {
    min-height: 48px;
}

.invoice-title-area {
    width: 50%;
    text-align: right;
}

.invoice-title-input {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #333;
    text-align: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 300;
}


/* =========================================
   BILL TO / META
========================================= */

.invoice-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 30px;
}

.invoice-bill-to {
    max-width: 500px;
}

.invoice-bill-to h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
}

.invoice-details {
    max-width: 420px;
    margin-left: auto;
}

.invoice-detail-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    min-height: 34px;
    gap: 15px;
}

.invoice-detail-row label {
    font-size: 13px;
    font-weight: 600;
}

.invoice-detail-input {
    color: #666;
}


/* =========================================
   PLACE OF SUPPLY
========================================= */

.invoice-supply {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 20px 0 30px;
    font-size: 13px;
}

.invoice-inline-input {
    width: 220px;
}


/* =========================================
   ITEMS TABLE
========================================= */

.invoice-items-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #ddd;
}

.invoice-items {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 13px;
}

.invoice-items th {
    padding: 11px 8px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: left;
}

.invoice-items td {
    padding: 8px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
}

.invoice-items th:nth-child(1),
.invoice-items td:nth-child(1) {
    width: 30px;
}

.invoice-items th:nth-child(2),
.invoice-items td:nth-child(2) {
    width: 210px;
}

.invoice-items th:nth-child(3),
.invoice-items td:nth-child(3) {
    width: 90px;
}

.invoice-items th:nth-child(4),
.invoice-items td:nth-child(4) {
    width: 55px;
}

.invoice-items th:nth-child(5),
.invoice-items td:nth-child(5) {
    width: 85px;
}

.invoice-items th:nth-child(6),
.invoice-items td:nth-child(6),
.invoice-items th:nth-child(7),
.invoice-items td:nth-child(7),
.invoice-items th:nth-child(8),
.invoice-items td:nth-child(8) {
    width: 65px;
}

.invoice-items th:nth-child(9),
.invoice-items td:nth-child(9) {
    width: 100px;
}

.invoice-items th:nth-child(10),
.invoice-items td:nth-child(10) {
    width: 35px;
}

.invoice-item-input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 3px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #333;
    font-family: inherit;
    font-size: 13px;
}

.invoice-item-input:focus {
    background: #fafafa;
}

.invoice-item-description {
    min-height: 45px;
    resize: vertical;
}

.invoice-item-tax {
    text-align: center;
}

.invoice-item-amount {
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

.invoice-delete-item {
    width: 25px;
    height: 25px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
}

.invoice-delete-item:hover {
    color: #c00;
}


/* =========================================
   ADD ITEM
========================================= */

.invoice-add-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 30px;
    padding: 5px 0;
    border: 0;
    background: transparent;
    color: #4a78a8;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
}

.invoice-add-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #4a78a8;
    color: #fff;
    font-size: 15px;
    line-height: 1;
}


/* =========================================
   BOTTOM
========================================= */

.invoice-bottom {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 70px;
    margin-top: 10px;
}

.invoice-notes {
    max-width: 500px;
}

.invoice-notes label {
    display: block;
    margin: 12px 0 5px;
    font-size: 13px;
    font-weight: 600;
}

.invoice-notes-input {
    min-height: 45px;
    border-bottom: 1px solid #eee;
}


/* =========================================
   TOTALS
========================================= */

.invoice-totals {
    margin-left: auto;
    width: 100%;
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 42px;
    gap: 20px;
    font-size: 14px;
}

.invoice-total-row span {
    color: #555;
}

.invoice-total-row strong {
    font-weight: 500;
}

.invoice-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding: 15px;
    background: #f7f7f8;
    gap: 20px;
}

.invoice-grand-total strong {
    font-size: 17px;
}


/* =========================================
   FOOTNOTE
========================================= */

.invoice-footer-note {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .invoice-app {
        width: calc(100% - 20px);
        margin: 20px auto 50px;
    }

    .invoice-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .invoice-toolbar-left,
    .invoice-toolbar-right {
        width: 100%;
    }

    .invoice-tool-btn {
        flex: 1;
    }

    .invoice-paper {
        padding: 25px 18px;
        border-radius: 6px;
    }

    .invoice-header {
        flex-direction: column;
        gap: 35px;
        min-height: 0;
    }

    .invoice-company {
        width: 100%;
        gap: 18px;
    }

    .invoice-logo-area {
        flex-basis: 80px;
    }

    .invoice-logo,
    .invoice-logo-placeholder {
        width: 80px;
        height: 65px;
    }

    .invoice-title-area {
        width: 100%;
        text-align: left;
    }

    .invoice-title-input {
        text-align: left;
        font-size: 38px;
    }

    .invoice-meta {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 45px;
    }

    .invoice-details {
        width: 100%;
        margin-left: 0;
    }

    .invoice-detail-row {
        grid-template-columns: 105px 1fr;
    }

    .invoice-supply {
        margin-top: 30px;
    }

    .invoice-inline-input {
        width: 180px;
    }

    .invoice-bottom {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .invoice-totals {
        width: 100%;
    }

    .invoice-footer-note {
        margin-top: 35px;
    }

}


/* =========================================
   PRINT
========================================= */

@media print {

    @page {
        size: A4;
        margin: 10mm;
    }

    body * {
        visibility: hidden;
    }

    .invoice-paper,
    .invoice-paper * {
        visibility: visible;
    }

    .invoice-paper {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 10mm;
        box-sizing: border-box;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: #fff;
    }

    .invoice-toolbar,
    .invoice-add-item,
    .invoice-delete-item {
        display: none !important;
    }

    .invoice-items-wrapper {
        overflow: visible;
    }

    .invoice-items {
        width: 100%;
        min-width: 0;
    }

    .invoice-input,
    .invoice-title-input,
    .invoice-item-input {
        color: #222 !important;
        background: transparent !important;
        border: 0 !important;
        outline: 0 !important;
    }

    textarea {
        resize: none !important;
    }

    .invoice-logo {
        display: block !important;
    }

    .invoice-items tr {
        break-inside: avoid;
    }

}

/* =========================================================
   NAGPUR SEO LANDING PAGE
   ========================================================= */
.nagpur-page {
    --np-bg: #ffffff;
    --np-bg-soft: #f7f7f5;
    --np-bg-dark: #111111;
    --np-text: #171717;
    --np-muted: #666666;
    --np-border: #deded9;
    --np-radius: 18px;
    --np-container: 1180px;

    color: var(--np-text);
    font-family: inherit;
    line-height: 1.6;
}
.nagpur-page h2,
.nagpur-page h3{
	font-weight: 400;
}

.nagpur-page img {
    max-width: 100%;
    display: block;
}

.np-container {
    width: min(calc(100% - 40px), 1180px);
    margin: 0 auto;
}

.np-narrow {
    max-width: 850px;
}

.np-center {
    text-align: center;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.np-section-label,
.np-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.np-section-label {
    margin-bottom: 18px;
    color: #777;
}

/* =========================================================
   INTRO
   ========================================================= */

.np-intro {
    padding: 100px 0;
    background: var(--np-bg);
}

.np-intro p {
    color: var(--np-muted);
    font-size: 18px;
}

.np-intro strong {
    color: var(--np-text);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.np-section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.np-section-heading p {
    margin-bottom: 0;
    color: var(--np-muted);
    font-size: 17px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.np-services {
    padding: 100px 0;
    background: var(--np-bg-soft);
}

.np-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--np-border);
    border: 1px solid var(--np-border);
}

.np-service-card {
    padding: 42px;
    background: var(--np-bg-soft);
}

.np-service-number {
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .12em;
    color: #888;
}

.np-service-card h3 {
    margin-bottom: 16px;
}

.np-service-card > p {
    margin-bottom: 26px;
    color: var(--np-muted);
}

.np-service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.np-service-card li {
    position: relative;
    padding: 9px 0 9px 20px;
    border-top: 1px solid var(--np-border);
    font-size: 14px;
}

.np-service-card li::before {
    content: "→";
    position: absolute;
    left: 0;
}


/* =========================================================
   WHY
   ========================================================= */

.np-why {
    padding: 100px 0;
    background: var(--np-bg);
}

.np-why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.np-why-content p {
    color: var(--np-muted);
    font-size: 17px;
}

.np-benefits {
    border-top: 1px solid var(--np-border);
}

.np-benefit {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--np-border);
}

.np-benefit > span {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.np-benefit h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.np-benefit p {
    margin-bottom: 0;
    color: var(--np-muted);
    font-size: 14px;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.np-projects {
    padding: 100px 0;
    background: var(--np-bg-soft);
}

.np-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.np-project {
    overflow: hidden;
    border: 1px solid var(--np-border);
    border-radius: var(--np-radius);
    background: var(--np-bg);
}

.np-project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e9e9e5;
	border-radius: 10px 10px 0 0;
}

.np-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s ease;
}

.np-project:hover .np-project-image img {
    transform: scale(1.025);
}

.np-project-info {
    padding: 28px;
}

.np-project-info > span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .13em;
    color: #888;
}

.np-project-info h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.np-project-info p {
    margin-bottom: 0;
    color: var(--np-muted);
    font-size: 14px;
}


/* =========================================================
   LOCAL BUSINESS
   ========================================================= */

.np-local {
    padding: 100px 0;
    background: var(--np-bg);
}

.np-local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.np-local-content p {
    color: var(--np-muted);
    font-size: 17px;
}

.np-local-content strong {
    color: var(--np-text);
}

.np-local-services {
    border-top: 1px solid var(--np-border);
}

.np-local-service {
    display: flex;
    flex-direction: column;
    padding: 22px 0;
    border-bottom: 1px solid var(--np-border);
}

.np-local-service strong {
    margin-bottom: 3px;
    font-size: 17px;
}

.np-local-service span {
    font-size: 14px;
    color: var(--np-muted);
}


/* =========================================================
   AREAS WE SERVE
   ========================================================= */

.np-areas {
    padding: 100px 0;
    background: var(--np-bg-soft);
}

.np-areas .np-section-heading {
    margin-right: auto;
    margin-left: auto;
}

.np-location-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    max-width: 1000px;
    margin: 0 auto;
}

.np-location-bubbles span,
.np-location-bubbles a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 17px;
    border: 1px solid var(--np-border);
    border-radius: 100px;
    background: var(--np-bg);
    color: #444;
    font-size: 13px;
    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.np-location-bubbles span:hover,
.np-location-bubbles a:hover {
    border-color: #999;
    background: #111;
    color: #fff;
}


/* =========================================================
   CTA
   ========================================================= */

.np-cta {
    padding: 100px 0;
    background: var(--np-bg-dark);
    color: #fff;
}

.np-cta-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.np-cta .np-section-label {
    color: rgba(255,255,255,.55);
}

.np-cta h2 {
    margin-bottom: 20px;
}

.np-cta p {
    margin-bottom: 20px;
    color: rgba(255,255,255,.65);
    font-size: 18px;
}

.np-cta-price {
    margin-bottom: 32px;
    font-size: 16px;
    color: rgba(255,255,255,.7);
}

.np-cta-price strong {
    color: #fff;
    font-size: 22px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .np-hero {
        padding: 100px 0;
    }

    .np-intro,
    .np-services,
    .np-why,
    .np-projects,
    .np-local,
    .np-areas {
        padding: 85px 0;
    }

    .np-why-grid,
    .np-local-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .np-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .np-container {
        width: min(calc(100% - 40px), 1000px);
    }

    .np-hero {
        padding: 75px 0 80px;
    }

    .np-eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
    }

    .np-hero-lead {
        font-size: 18px;
    }

    .np-hero-text {
        font-size: 15px;
    }

    .np-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .np-btn {
        width: 100%;
    }

    .np-intro,
    .np-services,
    .np-why,
    .np-projects,
    .np-local,
    .np-areas {
        padding: 70px 0;
    }

    .np-services-grid {
        grid-template-columns: 1fr;
    }

    .np-service-card {
        padding: 30px 25px;
    }

    .np-project-grid {
        grid-template-columns: 1fr;
    }

    .np-project-info {
        padding: 23px;
    }

    .np-why-grid,
    .np-local-grid {
        gap: 40px;
    }

    .np-location-bubbles {
        /* justify-content: flex-start; */
        gap: 7px;
    }

    .np-location-bubbles span {
        min-height: 36px;
        padding: 0 13px;
        font-size: 12px;
    }

    .np-cta {
        padding: 75px 0;
    }

}

  
  @media (max-width:420px){
	
  }
  @media (max-width:450px){
	.mobhide{display: none;}
  }
  @media (max-width:360px){
	.smallmobhide{display: none;}
  }