html {
    scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: #d97706;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  background-color: #f59e0b;
  color: #0f172a;
  font-weight: 700;
}

.hero {
  padding: 96px 0;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  margin-top: 24px;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    align-items: center;
}

.primary-btn {
    background: #F59E0B;
    color: #0F172A;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #d97706;
}

.secondary-btn {
    border: 2px solid #0F172A;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: #0F172A;
    color: white;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

.hero-content {
    min-width: 0;
    max-width: 650px;
}

.hero-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    display: block;
    width: 100%;
    max-width: 780px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
  padding: 32px 0 96px;
}

.trust-label {
    margin-bottom: 24px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  min-height: 220px;
  padding: 28px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.trust-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background-color: #fef3c7;
  border-radius: 12px;
  color: #92400e;
  font-weight: 800;
}

.trust-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.trust-card p {
  color: #64748b;
  line-height: 1.65;
}
.services{
    padding:100px 0;
}

.section-tag{
    color:#f59e0b;
    font-weight:700;
    letter-spacing:2px;
    text-align:center;
    margin-bottom:15px;
}

.services h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.service-card{

    background:white;

    border-radius:18px;

    padding:35px;

    border:1px solid #e5e7eb;

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.service-card h3{

    margin-bottom:15px;

}

.service-card p{

    color:#64748b;

    line-height:1.8;

}
.process-section {
  padding: 100px 0;
  background-color: #0f172a;
  color: #ffffff;
}

.process-section h2 {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 42px;
}

.section-intro {
  max-width: 680px;
  margin: 20px auto 55px;
  color: #cbd5e1;
  text-align: center;
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  min-height: 260px;
  padding: 30px;
  background-color: #172033;
  border: 1px solid #334155;
  border-radius: 18px;
}

.process-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background-color: #f59e0b;
  border-radius: 12px;
  color: #0f172a;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.process-card p {
  color: #cbd5e1;
  line-height: 1.7;
}
.why-section {
  padding: 110px 0;
  background-color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.why-content h2 {
  margin-bottom: 22px;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.why-content .section-tag {
  text-align: left;
}

.why-intro {
  max-width: 520px;
  margin-bottom: 32px;
  color: #64748b;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  min-height: 230px;
  padding: 30px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
}

.benefit-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background-color: #fef3c7;
  border-radius: 12px;
  color: #92400e;
  font-weight: 800;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.7;
}
.testimonials-section {
  padding: 110px 0;
  background-color: #f8fafc;
}

.testimonials-section h2 {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.testimonials-intro {
  margin-bottom: 56px;
  color: #64748b;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
}

.testimonial-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 34px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.09);
}

.featured-testimonial {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.testimonial-stars {
  margin-bottom: 28px;
  color: #f59e0b;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  margin: 0 0 36px;
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.author-avatar {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: #fef3c7;
  border-radius: 50%;
  color: #92400e;
  font-weight: 800;
}

.testimonial-author h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.testimonial-author p {
  color: #64748b;
  font-size: 0.9rem;
}

.featured-testimonial .testimonial-author p {
  color: #cbd5e1;
}

.testimonial-note {
  margin-top: 24px;
  color: #64748b;
  font-size: 0.8rem;
  text-align: center;
}
.faq-section{
padding:110px 0;
background:#fff;
}

.faq-section h2{
font-size:46px;
text-align:center;
margin-bottom:20px;
}

.faq-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.faq-item{
padding:35px;
border:1px solid #e2e8f0;
border-radius:18px;
background:#fff;
transition:.3s;
}

.faq-item:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.faq-item h3{
margin-bottom:15px;
font-size:22px;
}

.faq-item p{
color:#64748b;
line-height:1.8;
}
.contact-section {
  padding: 110px 0;
  background-color: #0f172a;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.contact-content .section-tag {
  text-align: left;
}

.contact-content h2 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.contact-intro {
  max-width: 620px;
  color: #cbd5e1;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 42px 0;
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid #334155;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: #f59e0b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item p {
  color: #ffffff;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-section .secondary-btn {
  border-color: #ffffff;
  color: #ffffff;
}

.contact-section .secondary-btn:hover {
  background-color: #ffffff;
  color: #0f172a;
}

.contact-panel {
  padding: 42px;
  background-color: #ffffff;
  border-radius: 24px;
  color: #0f172a;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.contact-panel-tag {
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-panel h3 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.contact-panel > p {
  color: #64748b;
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 650;
}

.contact-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #f59e0b;
  font-weight: 900;
}

.contact-panel-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
  background-color: #f59e0b;
  border-radius: 10px;
  font-weight: 800;
}
.site-footer {
  padding: 80px 0 28px;
  background-color: #08111f;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 56px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-brand p {
  max-width: 360px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-column a,
.footer-column p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #f59e0b;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid #1e293b;
}

.footer-bottom p,
.footer-legal a {
  color: #64748b;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: #f59e0b;
}
/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 992px) {

    .hero-content,
    .why-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features-grid,
    .services-grid,
    .steps-grid,
    .why-cards,
    .testimonial-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}
@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        width: 92%;
    }

    .features-grid,
    .services-grid,
    .steps-grid,
    .why-cards,
    .testimonial-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

}
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .trust-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-content .section-tag,
  .contact-content .section-tag {
    text-align: center;
  }

  .why-content,
  .contact-content {
    text-align: center;
  }

  .why-intro,
  .contact-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-actions {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-image img {
    height: 360px;
  }

  .hero-buttons,
  .contact-actions {
    flex-direction: column;
  }

  .hero-buttons a,
  .contact-actions a {
    width: 100%;
    text-align: center;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .benefits-grid,
  .testimonials-grid,
  .faq-grid,
  .contact-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar {
    flex-direction: column;
    padding: 18px 0;
  }

  .footer-bottom,
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    min-height: 68px;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
  }

  .quote-button {
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  .quote-button.is-open {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  .site-header {
    position: relative;
    z-index: 1000;
  }

  .navbar {
    position: relative;
    z-index: 1001;
  }

  .nav-links {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;

  width: 100%;
  height: 100dvh;

  padding: 80px 24px 120px;
  background: #fff;
  overflow-y: auto;
}

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.15rem;
    text-align: left;
  }

  .quote-button {
    position: fixed;
    right: 24px;
    bottom: 28px;
    left: 24px;
    z-index: 1002;
    display: none;
    width: auto;
    min-height: 52px;
    margin: 0;
  }

  .quote-button.is-open {
    display: inline-flex;
  }

  .logo,
  .menu-toggle {
    position: relative;
    z-index: 1003;
  }

  body.menu-open {
    overflow: hidden;
  }
}
/* ========================================
   CONTACT PAGE
======================================== */

.contact-hero{
padding:120px 20px 70px;
background:#f8fafc;
text-align:center;
}

.contact-container{
max-width:1200px;
margin:auto;
}

.contact-hero h1{
font-size:48px;
margin:12px 0;
}

.contact-hero-text{
max-width:700px;
margin:auto;
color:#64748b;
line-height:1.7;
}

.contact-section{
padding:70px 20px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:24px;
margin-bottom:60px;
}

.contact-card{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.contact-card:hover{
transform:translateY(-6px);
}

.contact-card-icon{
font-size:40px;
margin-bottom:16px;
}

.contact-card h2{
margin-bottom:10px;
}

.contact-card p{
color:#64748b;
line-height:1.7;
margin-bottom:15px;
}

.contact-card a{
color:#2563eb;
font-weight:600;
text-decoration:none;
}

.contact-hours{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
background:#fff;
padding:40px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
margin-bottom:60px;
}

.contact-hours-details p{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}

.contact-form-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
margin-bottom:60px;
}

.contact-form{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
margin-bottom:8px;
font-weight:600;
}

.form-group input,
.form-group textarea{
width:100%;
padding:14px;
border:1px solid #dbe2ea;
border-radius:10px;
font-size:15px;
}

.primary-button{
padding:14px 28px;
background:#2563eb;
color:#fff;
border:none;
border-radius:10px;
cursor:pointer;
font-size:16px;
font-weight:600;
}

.primary-button:hover{
background:#1d4ed8;
}

.contact-status{
margin-top:15px;
font-weight:600;
}

.contact-map iframe{
width:100%;
height:450px;
border:none;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.site-footer{
background:#0f172a;
color:#fff;
padding:60px 20px 20px;
margin-top:80px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer-container h3,
.footer-container h4{
margin-bottom:15px;
}

.footer-container p,
.footer-container a{
color:#cbd5e1;
text-decoration:none;
display:block;
margin-bottom:10px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:20px;
text-align:center;
color:#94a3b8;
}

.floating-whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
color:#fff;
box-shadow:0 10px 25px rgba(0,0,0,.25);
z-index:9999;
transition:.3s;
}

.floating-whatsapp:hover{
transform:scale(1.1);
}

@media(max-width:900px){

.contact-hours,
.contact-form-wrapper,
.footer-container,
.form-row{

grid-template-columns:1fr;

}

.contact-hero h1{

font-size:36px;

}

}
.site-logo-image {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}
.hero-image {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}
/* FINAL TRUST LABEL FIX */

.trust-section .trust-label {
    display: block;
    width: 100%;
    margin: 0 0 26px;
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    line-height: 1.4;
    text-align: center !important;
    text-transform: uppercase !important;
}
/* ========================================
   FINAL SERVICES SECTION
======================================== */

.services {
    padding: 110px 0;
    background: #f8fafc;
}

.services-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.services .section-tag {
    margin: 0 0 14px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-heading h2 {
    margin: 0 0 20px;
    color: #0f172a;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.services-intro {
    max-width: 680px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    min-height: 260px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #f59e0b;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #fef3c7;
    border-radius: 12px;
    color: #92400e;
    font-size: 21px;
    font-weight: 800;
}

.service-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
}

.service-card p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 45px;
}

.services-cta .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.services-link {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.services-link:hover {
    color: #f59e0b;
}


/* TABLET */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-heading h2 {
        font-size: 36px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .services {
        padding: 75px 0;
    }

    .services-heading {
        margin-bottom: 38px;
    }

    .services-heading h2 {
        font-size: 30px;
    }

    .services-intro {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .services-cta {
        flex-direction: column;
        gap: 18px;
    }
}
/* ========================================
   FINAL HOW IT WORKS SECTION
======================================== */

.process-section {
    padding: 105px 0 110px;
    background: #0f172a;
    color: #ffffff;
}

.process-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.process-section .section-tag {
    margin: 0 0 14px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-heading h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.process-section .section-intro {
    max-width: 680px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    min-height: 270px;
    padding: 30px 28px;
    background: #172033;
    border: 1px solid #334155;
    border-radius: 18px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: #f59e0b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.process-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f59e0b;
    border-radius: 12px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.process-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 22px;
    font-weight: 800;
}

.process-card h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 1000px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .process-section {
        padding: 75px 0;
    }

    .process-heading {
        margin-bottom: 38px;
    }

    .process-heading h2 {
        font-size: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }
}
/* ========================================
   WHO WE SUPPORT
======================================== */

.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-section h2 {
    max-width: 700px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 42px;
    line-height: 1.15;
}

.testimonials-intro {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
    color: #64748b;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    min-height: 0;
    padding: 36px 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.testimonial-card .author-avatar {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #fef3c7;
    border-radius: 14px;
    color: #92400e;
    font-size: 16px;
    font-weight: 800;
}

.testimonial-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.3;
}

.testimonial-card > p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-card.featured-testimonial {
    background: #0f172a;
    border-color: #0f172a;
}

.testimonial-card.featured-testimonial h3 {
    color: #ffffff;
}

.testimonial-card.featured-testimonial > p {
    color: #cbd5e1;
}

.testimonial-card.featured-testimonial .author-avatar {
    background: #fef3c7;
    color: #92400e;
}


/* TABLET */

@media (max-width: 900px) {

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section h2 {
        font-size: 36px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .testimonials-section {
        padding: 70px 0;
    }

    .testimonials-section h2 {
        font-size: 30px;
    }

    .testimonials-intro {
        margin-bottom: 35px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

}