/* Header Container */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0d0d1a;
  padding: 12px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Section */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo img {
  height: 45px;
  width: 45px;
  filter: brightness(0) invert(1); 
}

.site-name {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  
}

/* Center Menu */
nav {
  display: flex;
  gap: 35px;
  font-family: sans-serif;
  
}

nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  
}

/* White Underline on Hover */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a:focus::after {
  width: 100%;
}
/* Header Container */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0d0d1a;
  padding: 12px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Section */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo img {
  height: 45px;
  width: 45px;
  filter: brightness(0) invert(1);
}

.site-name {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Center Menu */
nav {
  display: flex;
  gap: 35px;
  font-family: sans-serif;
}

nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a:focus::after {
  width: 100%;
}

/* ===== Responsive Styles ===== */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #0d0d1a;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* Footer */
/* Footer Styling */
footer {
  background-color: #0d0d1a;
  color: #ffffff;
  padding: 10px 60px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

/* Left Side */
.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 40px;
  width: 40px;
  filter: brightness(0) invert(1);
}

.footer-site-name {
  font-size: 22px;
  font-weight: 700;
}

.footer-desc {
  margin: 15px 0;
  line-height: 1.6;
  color: #cccccc;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a2e;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(138, 108, 255, 0);
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #8a6cff, #5b4bff);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(138, 108, 255, 0.6);
}


/* Subscribe form */
.subscribe-form {
  margin-top: 15px;
  display: flex;
  background: #1a1a2e;
  border-radius: 8px;
  overflow: hidden;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: transparent;
  color: white;
}

.subscribe-form button {
  background: linear-gradient(90deg, #8a6cff, #5b4bff);
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

/* Right Side Columns */
.footer-columns {
  display: flex;
  flex: 2;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}



/* Privacy  & Termof use & Return Policy*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.left-panel {
    width: 25%;
    background-color: #0d0d1a;;
    color: white;
    padding: 20px;
}

.left-panel h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.left-panel ul {
    list-style-type: none;
    padding: 0;
}

.left-panel li {
    margin: 10px 0;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
}

.left-panel li:hover {
    background-color: #155ab6;
}

.left-panel li.active {
    background-color: #0f3d82;
}

.right-panel {
    width: 75%;
    padding: 30px;
}

.right-panel h2 {
    color:black;
    margin-bottom: 15px;
}

.right-panel p {
    margin: 12px 0;
    line-height: 1.6;
    color:black;
}



/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }
  nav {
    margin-top: 10px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-name {
    font-size: 20px;
  }
}

/* Image- Gallery */


.gallery-section {
  text-align: center;
  padding: 60px 40px;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay h2 {
  font-size: 1.5rem;
  margin: 5px 0;
}

.overlay h3 {
  font-size: 1rem;
  font-weight: normal;
  margin: 5px 0;
}

.overlay button {
  margin-top: 15px;
  padding: 8px 15px;
  font-size: 1rem;
  background: #5b4bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  transition: background 0.3s ease;
}

.overlay button:hover {
  background: #5b4bff;
}

.image-card:hover .overlay {
  opacity: 1;
}

/* form */
.quote-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0d0d1a;
  min-height: 100vh;
  padding: 30px;
  box-sizing: border-box;
  gap: 30px;
}

/* Left Form Section */
.quote-form {
  flex: 1;
  max-width: 500px;
  background-color: #5b4bff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-form h1 {
  margin-bottom: 5px;
  color: #fff;
}

.quote-form p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #f1f1f1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px; 
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

form label {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 4px;
}

form input,
form select,
form textarea {
  padding: 8px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

form textarea {
  resize: none;
}

form button {
  background-color: #fff;
  color: #5b4bff;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #f4f4f4;
}

/* Right Image Section */
.quote-image {
  flex: 1;
  max-width: 550px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.quote-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* ——— Process section ——— */
.process{background:#F2F6FA;padding:56px 20px}
.process .wrap{max-width:1120px;margin:auto}
.proc-head{text-align:center;margin-bottom:18px}
.proc-head h2{margin:8px 0 6px;font-size:clamp(28px,4vw,40px);color:#0f172a}
.proc-head .sub{margin:0;color:#5d6b7c}

/* chip (same style as before) */
.tag-lite{
  display:inline-block;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;
  color:#1F6E97;border:1px solid #74A4C2;background:rgba(116,164,194,.18)
}

/* grid: 5 → 3 → 2 → 1 */
.proc-grid{
  display:grid;gap:18px;grid-template-columns:repeat(5,1fr)
}
@media (max-width:1100px){.proc-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:800px){.proc-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.proc-grid{grid-template-columns:1fr}}

/* card */
.proc-card{
  position:relative;background:#fff;border:1px solid #e6edf4;border-radius:18px;
  padding:22px 18px;box-shadow:0 10px 24px rgba(9,28,53,.06);
  transition:.25s ease;text-align:center;color:#0f172a
}
.proc-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(9,28,53,.12)}
.proc-card h3{margin:10px 0 6px;font-size:1.05rem}
.proc-card p{margin:0;color:#5d6b7c}

/* number badge sitting on the top-left edge */
.step-badge{
  position:absolute;top:-10px;left:-10px;background:#fff;border:1px solid #e6edf4;
  width:24px;height:24px;border-radius:999px;display:grid;place-items:center;
  font:700 12px/1 system-ui;color:#0f172a;box-shadow:0 4px 12px rgba(9,28,53,.06)
}

/* dark icon puck */
.step-ico{
  width:56px;height:56px;border-radius:50%;margin:2px auto 8px;
  background:#0f172a;display:grid;place-items:center
}
.step-ico svg{width:28px;height:28px;fill:#fff}
.step-ico svg path[stroke]{stroke:#fff}



/* testimonial */
.testimonial-section {
  max-width: 1100px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
  position: relative;
  background: #5b4bff;
  color: #fff;
  border-radius: 12px;
}

.testimonial-section h2 {
  margin-bottom: 15px; 
  font-size: 1.5rem;
}

/* Slider container only for testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  height: 250px; 
  margin-top: 10px; 
}

.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 100%;
}

.testimonial.active {
  display: flex;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  border: 2px solid #fff;
}

.testimonial h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.testimonial p {
  font-size: 0.85rem;
  line-height: 1.3;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  color:white;
}

.slider-controls {
  margin-top: 15px;
}

.slider-controls button {
  background: #fff;
  color: #007BFF;
  border: none;
  padding: 6px 12px;
  margin: 0 10px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.slider-controls button:hover {
  background: #f1f1f1;
}

/* hero */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.hero-section {
  display: flex;
  gap: 4px;
  padding: 50px;
  background-color: #f4f4f4;
  align-items: stretch; 
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-left h4 {
  color: #007BFF;
  font-weight: 600;
  margin: 0 0 5px 0;     
  line-height: 1.2;
}

.hero-left h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;    
  line-height: 1.2;
}

.hero-left p {
  font-size: 1rem;
  margin: 0 0 10px 0;   
  line-height: 1.25;
}

.services {
  margin: 0 0 5px 0;     
}

.services span {
  background: #007BFF;
  color: #fff;
  padding: 4px 10px;
  margin-right: 6px;
  border-radius: 5px;
  font-size: 0.85rem;
}

.ratings {
  margin: 0 0 5px 0;      
  line-height: 1.1;
}

.ratings span:first-child {
  color: gold;
  font-size: 1.2rem;
  margin-right: 5px;      
}

.ratings span:last-child {
  font-size: 0.9rem;
}

.stats {
  display: flex;
  gap: 15px;              
}

.stats div h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #007BFF;
}

.stats div p {
  margin: 0;
  font-size: 0.85rem;
  color: #333;
}

/* Right Image */
.hero-right {
  flex: 1;
  display: flex;
}

.hero-right img {
  width: 100%;      
  height: 100%;    
  object-fit: cover; 
  border-radius: 12px;
}
.services {
  margin-bottom: 1px; 
}

.ratings {
  margin-top: 1px;   
  margin-bottom: 1px; 
  line-height: 1.1;
}










/* tyagi */
body {
  margin: 0;
  font: 16px/1.5 system-ui;
  background: #fff;
  color: #0f172a;
}

/* ---------- HERO ---------- */
.hero {
  padding: 50px 20px;
}
.hero-grid {
  display: grid;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  grid-template-columns: 1fr 1fr;
}
.chips {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.chip {
  padding: 5px 10px;
  border-radius: 20px;
  background: #74A4C2;
  color: #fff;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 700;
}
h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
}
p {
  margin: 0 0 16px;
  color: #5d6b7c;
}
ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.check {
  width: 18px;
  height: 18px;
  background: #1F6E97;
  border-radius: 4px;
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 4px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg, #0E5C85, #1F6E97);
  color: #fff;
  border: 0;
}
.btn.ghost {
  border: 1px solid #1F6E97;
  color: #1F6E97;
}
.btn.full {
  width: 100%;
}
.hero-img img {
  width: 100%;
  border-radius: 14px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.stats div {
  text-align: center;
  border: 1px solid #e6edf4;
  border-radius: 12px;
  padding: 20px;
}
.stats h3 {
  margin: 0;
  font-size: 28px;
  color: #0E5C85;
}
.stats p {
  margin: 6px 0 0;
  color: #5d6b7c;
}

/* ---------- MODAL ---------- */
.modal[aria-hidden="true"] {
  display: none;
}
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 50;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}
.modal-box {
  background: #fff;
  z-index: 1;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 92%;
}
.close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
form {
  display: grid;
  gap: 12px;
}
input,
select,
textarea {
  padding: 10px;
  border: 1px solid #e6edf4;
  border-radius: 8px;
  font: inherit;
}

/* ---------- SERVICES ---------- */
.services {
  background: #F2F6FA; 
  padding: 48px 20px;
}
.services .wrap {
  max-width: 1120px;
  margin: auto;
}
.services-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 22px;
}
.tag-lite {
  display: inline-block;
  background: rgba(116, 164, 194, .25);
  color: #1F6E97;
  border: 1px solid #74A4C2;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.services-head h2 {
  margin: 8px 0 6px;
  font-size: clamp(26px, 4vw, 40px);
}
.services-head p {
  margin: 0;
  color: #59667a;
}
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(9, 28, 53, .06);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(9, 28, 53, .12);
  transition: .25s ease;
}
.card h3 {
  margin: 6px 0 6px;
  font-size: 20px;
}
.card p {
  margin: 0 0 12px;
  color: #5b6a7d;
}
.ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0E5C85, #74A4C2);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #0E5C85;
  background: #f7fbff;
  border: 1px solid #e6edf4;
}

/* ---------- SYSTEM ---------- */
.system {
  padding: 60px 20px;
  background: #fff;
}
.sys-grid {
  display: grid;
  gap: 40px;
  max-width: 1120px;
  margin: auto;
  grid-template-columns: 1fr 1fr;
}
.system h2 {
  margin: 10px 0;
  font-size: clamp(26px, 4vw, 38px);
}
.system .sub {
  color: #5d6b7c;
  margin: 0 0 20px;
}
.system .cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.system .card.dark {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(9, 28, 53, .05);
  transition: .25s ease;
}
.system .card.dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(9, 28, 53, .12);
}
.system .card.dark h3 {
  margin: 6px 0;
}
.system .card.dark p {
  margin: 0;
  color: #5b6a7d;
  font-size: .95rem;
}
.system .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0E5C85, #74A4C2);
  color: #fff;
  margin-bottom: 6px;
}
.tools {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}
.tool {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(9, 28, 53, .04);
  font-weight: 600;
  color: #0f172a;
  transition: .25s ease;
}
.tool:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(9, 28, 53, .1);
}

/* ---------- SERP PREVIEW ---------- */
.serp {
  background: #F2F6FA; 
  padding: 56px 20px;
}
.serp-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.serp .card {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(9, 28, 53, .06);
  padding: 18px;
}
.serp h2 {
  margin: 6px 0;
}
.serp .sub {
  color: #5d6b7c;
  margin: 0 0 16px;
}
.field {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}
.field input,
.field textarea,
.field select {
  padding: 11px 12px;
  border: 1px solid #e6edf4;
  border-radius: 10px;
  font: inherit;
}
.field small {
  color: #6c7a8a;
}
.p-title {
  display: inline-block;
  color: #1a0dab;
  text-decoration: none;
  font-weight: 600;
}
.p-url {
  color: #0f7b5f;
  margin: 4px 0 8px;
}
.p-desc {
  color: #333;
  margin: 0 0 10px;
}
.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badges .ok {
  background: #0a8f3f;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.badges .warn {
  background: #f59e0b;
  color: #111;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.badges .bad {
  background: #ef4444;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.serp-preview.mobile {
  max-width: 420px;
}

/* ---------- SERP HEADING ---------- */
.serp-head {
  background: #F2F6FA; 
  font-family: sans-serif;
  padding: 50px 20px;
  text-align: center;
}
.serp-head h2 {
  margin: 8px 0 6px;
  font-size: clamp(26px, 4vw, 40px);
}
.serp-head .sub {
  color: #5d6b7c;
  margin: 0;
  font-size: 1.05rem;
  font-family: sans-serif;
}

/* ---------- CASE STUDIES ---------- */
.cases {
  padding: 56px 20px;
  background: #fff;
}
.cases-head {
  text-align: center;
  margin-bottom: 18px;
}
.cases-head h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 4vw, 40px);
}
.case-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.case {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(9, 28, 53, .06);
  transition: .25s ease;
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(9, 28, 53, .12);
}
.case img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.case-body {
  padding: 16px;
}
.case-body h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.case-body p {
  margin: 10px 0 0;
  color: #5b6a7d;
}

/* ---------- PRICING ---------- */
.pricing {
  background: #F2F6FA; 
  padding: 56px 20px;
}
.price-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(9, 28, 53, .06);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: .25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(9, 28, 53, .12);
}
.price-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.price {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #111;
  font-family: sans-serif;
}
.price span {
  font-size: .9rem;
  font-weight: 600;
  color: #6b7686;
}
.price-card .sub {
  color: #5d6b7c;
  margin: 0 0 4px;
  font-family: sans-serif;
}
.ticks {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ticks li {
  position: relative;
  padding-left: 26px;
  color: #405064;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #15a657;
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}
/* Featured (middle) */
.price-card.featured {
  border: 2px solid #223248; 
  box-shadow: 0 10px 26px rgba(9, 28, 53, .10);
}
.price-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}
.price-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 56px 20px;
  background: #fff;
}
.faq .wrap {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.faq h2 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 4vw, 40px);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 12px;
  margin: 10px 0;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(9, 28, 53, .05);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a8797;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-body {
  padding: 0 18px 16px;
  color: #5d6b7c;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(9, 28, 53, .10);
  transition: .2s ease;
}

/* ---------- CTA + CHECKLIST ---------- */
.cta-check {
  background: #F2F6FA; 
  padding: 54px 20px;
}
.cta-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr .9fr;
}
.cta-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 4rem;
}
.cta-copy p {
  margin: 0 0 16px;
  color: #5d6b7c;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.btn.primary {
  background: linear-gradient(135deg, #0E5C85, #1F6E97);
  color: #fff;
  border: 0;
}
.btn.ghost {
  border: 1px solid #0E5C85;
  color: #0E5C85;
  background: #fff;
}
.checklist {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(9, 28, 53, .06);
}
.cl-head {
  padding: 14px 16px;
  border-bottom: 1px solid #e6edf4;
}
.cl-head h3 {
  margin: 0;
  font-size: 1.05rem;
}
.cl-table {
  display: grid;
}
.cl-row {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 12px;
  padding: 12px 16px;
}
.cl-headrow {
  background: #fbfdff;
  font-weight: 700;
  color: #38475a;
}
.cl-row:not(.cl-headrow) {
  border-top: 1px solid #e6edf4;
}
.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.tag-plan {
  background: #e7f1fb;
  color: #0E5C85;
  border: 1px solid #74A4C2;
}
.tag-opt {
  background: #fff4e5;
  color: #8a5c00;
  border: 1px solid #ffe3b5;
}
.tag-cond {
  background: #e8f7ee;
  color: #136b3a;
  border: 1px solid #c7ecd3;
}
/* Multi-platform execution */
.platforms {
  background: #fff;
  padding: 56px 20px;
}
.platforms .wrap {
  max-width: 1120px;
  margin: auto;
}
.platforms-head {
  text-align: center;
  margin-bottom: 18px;
}
.platforms-head h2 {
  margin: 8px 0 6px;
  font-size: clamp(28px, 4vw, 40px);
}
.platforms-head .sub {
  margin: 0;
  color: #5d6b7c;
}

/* Grid */
.plat-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Card */
.plat-card {
  display: grid;
  place-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 6px 16px rgba(9, 28, 53, .05);
  transition: .25s ease;
}
.plat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(9, 28, 53, .12);
}

/* Icons */
.plat-ico svg {
  width: 28px;
  height: 28px;
  stroke: #0f172a;
  fill: none;
  stroke-width: 1.8;
}
.plat-ico svg rect,
.plat-ico svg circle,
.plat-ico svg path,
.plat-ico svg polygon {
  stroke: currentColor;
}
.plat-card span {
  font-weight: 600;
}
/* ===== Week in your calendar — palette-true ===== */
.calendar{background:#fff;padding:56px 20px}
.wrap{max-width:1120px;margin:auto}
.cal-head{text-align:center;margin-bottom:18px}
.cal-head h2{margin:8px 0 6px;font-size:clamp(28px,4vw,40px);color:#0f172a}
.cal-head .sub{margin:0;color:#5d6b7c}
.tag-lite{
  display:inline-block;padding:6px 10px;border-radius:999px;font-weight:800;font-size:12px;
  color:#1F6E97;border:1px solid #74A4C2;background:rgba(116,164,194,.18)
}

/* grid: exactly 3 columns on desktop */
.week-grid{display:grid;gap:18px;grid-template-columns:repeat(3,1fr)}

/* card */
.day-card{
  background:#fff;border:1px solid #e6edf4;border-radius:16px;padding:16px;
  box-shadow:0 8px 18px rgba(9,28,53,.06);min-height:320px;color:#0f172a
}
.day-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.chips{display:flex;gap:8px;align-items:center}
.day-card{ transition:.25s ease; }
.day-card:hover{ transform:translateY(-4px); box-shadow:0 12px 24px rgba(9,28,53,.12); }


/* small chips */
.chip{
  padding:6px 10px;border:1px solid #e6edf4;border-radius:999px;
  background:#fbfdff;font-weight:700;font-size:12px;color:#0f172a
}
.chip-day{background:#0f172a;color:#fff;border-color:#0f172a}
.chip.ghost{background:#fff;color:#38475a}

.dot-ico{width:10px;height:10px;border-radius:50%;display:inline-block;background:#0E5C85;margin-right:6px}

.calendar h3{margin:6px 0 2px;font-size:1.05rem}
.muted{color:#5d6b7c}
.muter{color:#8a97a8}

/* feature pills */
.pills{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0}
.pill{
  padding:6px 10px;border-radius:999px;font-size:12px;font-weight:700;
  color:#0E5C85;background:#f7fbff;border:1px solid #e6edf4
}

/* meta + save */
.meta{display:flex;justify-content:space-between;align-items:center;margin:6px 0 10px}
.clock{color:#38475a}
.save{display:flex;align-items:center;gap:6px;color:#3b7352}
.dot{width:8px;height:8px;border-radius:50%;display:inline-block}
.dot-ok{background:#0a8f3f}

/* progress */
.prog-wrap{margin:2px 0 10px}
.prog{height:8px;border-radius:10px;background:#edf3f8;overflow:hidden}
.bar{height:100%;background:#0E5C85}

/* steps row */
.steps{
  display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:10px 0 12px;
  padding:0;list-style:none;color:#38475a
}
.steps li{position:relative;padding-left:18px;font-size:.92rem}
.steps li::before{
  content:"";position:absolute;left:0;top:.45em;width:10px;height:10px;border-radius:50%;
  background:#b9c6d6
}
.steps .is-done{font-weight:700;color:#0f172a}
.steps .is-done::before{background:#0E5C85}

/* actions */
.actions{display:flex;gap:10px;flex-wrap:wrap}
.btn-sm{padding:8px 12px;border-radius:10px;font-weight:700;cursor:pointer}
.btn-sm.dark{
  background:linear-gradient(135deg,#0E5C85,#1F6E97);color:#fff;border:0
}
.btn-sm.outline{background:#fff;border:1px solid #cfd8e3;color:#38475a}
/* Section shell */
.kpis{background:#F2F6FA;padding:56px 20px}
.wrap{max-width:1120px;margin:auto}
.kpis-head{text-align:center;margin-bottom:18px}
.kpis-head h2{margin:8px 0 6px;font-size:clamp(28px,4vw,40px);color:#0f172a}
.kpis-head .sub{margin:0;color:#5d6b7c}

/* Chip (same style you’ve been using) */
.tag-lite{
  display:inline-block;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;
  color:#1F6E97;border:1px solid #74A4C2;background:rgba(116,164,194,.18)
}

/* Card + table */
.kpi-card{
  background:#fff;border:1px solid #e6edf4;border-radius:18px;
  box-shadow:0 10px 24px rgba(9,28,53,.06);overflow:hidden
}
.kpi-scroll{overflow:auto}
.kpi-table{width:100%;border-collapse:separate;border-spacing:0;color:#0f172a}
.kpi-table thead th{
  text-align:left;font-weight:800;background:#fff;padding:16px 18px;
  border-bottom:1px solid #e6edf4
}
.kpi-table td{
  padding:16px 18px;border-top:1px solid #e6edf4;color:#38475a
}

/* subtle hover like the site (optional) */
.kpi-card{transition:.25s ease}
.kpi-card:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(9,28,53,.12)}

/* Mobile polish */
@media (max-width:640px){
  .kpis-head .sub{font-size:.98rem}
  .kpi-table td,.kpi-table th{padding:14px 16px}
}
/* Marketers who trust us */
.trust{background:#fff;padding:56px 20px}
.trust .wrap{max-width:1120px;margin:auto}
.trust-head{text-align:center;margin-bottom:18px}
.trust-head h2{margin:8px 0 6px;font-size:clamp(28px,4vw,40px);color:#0f172a}

/* same chip style you’ve been using */
.tag-lite{
  display:inline-block;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;
  color:#1F6E97;border:1px solid #74A4C2;background:rgba(116,164,194,.18)
}

/* grid */
.trust-grid{
  display:grid;gap:18px;
  grid-template-columns:repeat(3,1fr);
}
@media (max-width:1000px){.trust-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.trust-grid{grid-template-columns:1fr}}

/* cards */
.t-card{
  background:#fff;border:1px solid #e6edf4;border-radius:16px;
  padding:20px;box-shadow:0 8px 18px rgba(9,28,53,.06);
  transition:.25s ease
}
.t-card:hover{transform:translateY(-4px);box-shadow:0 12px 24px rgba(9,28,53,.12)}

.t-card blockquote{
  margin:0 0 12px;color:#38475a;line-height:1.65;position:relative
}
.t-card blockquote::before{
  content:"“"; position:absolute; left:-6px; top:-8px;
  font-size:28px; line-height:1; color:#74A4C2; opacity:.8
}
.t-card figcaption{color:#5d6b7c}
.t-card figcaption strong{color:#0f172a}
/* ——— Process section ——— */
.process{background:#F2F6FA;padding:56px 20px}
.process .wrap{max-width:1120px;margin:auto}
.proc-head{text-align:center;margin-bottom:18px}
.proc-head h2{margin:8px 0 6px;font-size:clamp(28px,4vw,40px);color:#0f172a}
.proc-head .sub{margin:0;color:#5d6b7c}

/* chip (same style as before) */
.tag-lite{
  display:inline-block;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;
  color:#1F6E97;border:1px solid #74A4C2;background:rgba(116,164,194,.18)
}

/* grid: 5 → 3 → 2 → 1 */
.proc-grid{
  display:grid;gap:18px;grid-template-columns:repeat(5,1fr)
}
/* card */
.proc-card{
  position:relative;background:#fff;border:1px solid #e6edf4;border-radius:18px;
  padding:22px 18px;box-shadow:0 10px 24px rgba(9,28,53,.06);
  transition:.25s ease;text-align:center;color:#0f172a
}
.proc-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(9,28,53,.12)}
.proc-card h3{margin:10px 0 6px;font-size:1.05rem}
.proc-card p{margin:0;color:#5d6b7c}

/* number badge sitting on the top-left edge */
.step-badge{
  position:absolute;top:-10px;left:-10px;background:#fff;border:1px solid #e6edf4;
  width:24px;height:24px;border-radius:999px;display:grid;place-items:center;
  font:700 12px/1 system-ui;color:#0f172a;box-shadow:0 4px 12px rgba(9,28,53,.06)
}

/* dark icon puck */
.step-ico{
  width:56px;height:56px;border-radius:50%;margin:2px auto 8px;
  background:#0f172a;display:grid;place-items:center
}
.step-ico svg{width:28px;height:28px;fill:#fff}
.step-ico svg path[stroke]{stroke:#fff}

/responsive/
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .system .cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sys-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .serp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cl-row { grid-template-columns: 1fr; }
}
/* responsive: 2 cols tablet, 1 col mobile */
@media (max-width:1000px){.week-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){
  .week-grid{grid-template-columns:1fr}
  .meta{flex-direction:column;align-items:flex-start;gap:6px}
}
@media (max-width:1100px){.proc-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:800px){.proc-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.proc-grid{grid-template-columns:1fr}}



<meta name="viewport" content="width=device-width, initial-scale=1.0">
/* Make full section clickable */
.clickable-section {
  display: block;
  text-decoration: none;
  color: inherit; /* keeps text color same */
}
