*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

:root{
  --section-x:4%;
}

/* .navbar{
  padding:16px var(--section-x);
} */
html{
  scroll-behavior:smooth;
}

body{
  color:#222;
  padding-top:84px;
}

img{
  max-width:100%;
  display:block;
}

button{
  cursor:pointer;
}

/* Header */
.navbar{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  padding:16px var(--section-x);
  background:#fff;
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  box-shadow:0 2px 12px rgba(15,23,42,.08);
  z-index:1000;
}

.nav-left{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo-mark{
  height:38px;
  width:auto;
  object-fit:contain;
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  z-index:1002;
}

.hamburger,
.hamburger::before,
.hamburger::after{
  width:24px;
  height:2px;
  background:#111827;
  display:block;
  position:relative;
  transition:.25s ease;
}

.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
}

.hamburger::before{
  top:-7px;
}

.hamburger::after{
  top:7px;
}

.navbar.mobile-open .hamburger{
  background:transparent;
}

.navbar.mobile-open .hamburger::before{
  top:0;
  transform:rotate(45deg);
}

.navbar.mobile-open .hamburger::after{
  top:0;
  transform:rotate(-45deg);
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#111827;
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 0;
}

.nav-links a:hover,
.login-link:hover{
  color:#2563eb;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.login-link{
  color:#111827;
  text-decoration:none;
  font-weight:500;
}

/* Buttons */
.btn,
.btn-outline,
.btn-outline-ghost,
.btn-primary-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  border:none;
  transition:.2s ease;
}

.btn{
  background:#2563eb;
  color:#fff;
}

.btn-primary{
  background:#2563eb;
  color:#fff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(37,99,235,.12);
}

.btn-outline{
  background:transparent;
  color:#2563eb;
  border:2px solid #2563eb;
}

.btn-outline-ghost{
  background:transparent;
  color:#2563eb;
  border:1px solid #2563eb;
}

.btn-primary-pill{
  background:#2563eb;
  color:#fff;
}

.btn:hover,
.btn-outline:hover,
.btn-outline-ghost:hover,
.btn-primary-pill:hover{
  transform:translateY(-2px);
}

/* Hero */
.hero-feature{
  width:100%;
  display:flex;
  align-items:center;
  gap:40px;
  padding:80px var(--section-x);
  margin:0 auto;
  color:#ffffff;
}

.hero-feature__content{
  flex:1;
  min-width:280px;
}

.eyebrow{
  color:#000;
  font-weight:600;
  margin-bottom:12px;
}

.hero-feature h1{
  font-size:clamp(32px,4.8vw,40px);
  line-height:1.06;
  margin:20px 0 18px;
  color:#0b1220;
}

.lead{
  color:#4b5563;
  font-size:16px;
  margin-top:10px;
  margin-bottom:18px;
}

.feat-list{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  gap:10px;
}

.feat-list li{
  position:relative;
  padding-left:25px;
  color:#000;
}

.feat-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:blue;
  font-weight:800;
  line-height:1.7;
}

.hero-ctas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.price-block{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.price{
  font-size:36px;
  font-weight:800;
  color:#0b1220;
}

.price .per{
  font-size:16px;
  font-weight:600;
  margin-left:6px;
  color:#6b7280;
}

.price .gst{
  font-size:16px;
  color:#6b7280;
  margin-left:10px;
  font-weight:600;
}

.hero-feature__visual{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  min-width:300px;
}

.visual-frame{
  position:relative;
  width:100%;
  max-width:520px;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(180deg,#f3f7ff 0%,#ffffff 100%);
  padding:24px;
  box-shadow:0 20px 60px rgba(2,6,23,.08);
}

.visual-frame img{
  width:100%;
  height:auto;
  border-radius:12px;
}

/* Pricing + FAQ Same Width As Hero */
.pricing,
.faq,
.features,
.industry,
.testimonial{
  width:100%;
  padding:40px 40px var(--section-x);
} 

/* About Page */
.about-page{
  width:100%;
  padding:80px var(--section-x) 100px;
}

.about-hero{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
  padding:20px 0 40px;
}

.about-hero h1{
  font-size:clamp(32px,4.2vw,44px);
  line-height:1.1;
  margin:8px 0 16px;
  color:#0f172a;
}

.about-hero .lead{
  max-width:640px;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:24px;
}

.stat-card{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:18px 20px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.stat-card strong{
  font-size:22px;
  color:#0f172a;
}

.stat-card span{
  color:#475569;
  font-size:14px;
}

.about-panel{
  background:linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border:1px solid #dbeafe;
  border-radius:24px;
  padding:24px;
  box-shadow:0 24px 60px rgba(15,23,42,.08);
}

.about-panel img{
  border-radius:18px;
}

.about-section{
  padding:24px 0 0;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.about-grid--values{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.about-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.about-card h2,
.about-card h3{
  margin-bottom:10px;
  color:#0f172a;
}

.about-card p{
  color:#475569;
  line-height:1.7;
}

.about-cta{
  margin-top:36px;
  text-align:center;
  background:linear-gradient(90deg, #eff6ff 0%, #f8fafc 100%);
  border:1px solid #dbeafe;
  border-radius:24px;
  padding:40px 24px;
}

.about-cta h2{
  font-size:clamp(24px,3vw,32px);
  color:#0f172a;
  margin-bottom:10px;
}

.about-cta p{
  color:#475569;
  max-width:700px;
  margin:0 auto 20px;
}

@media (max-width: 900px){
  .about-hero,
  .about-grid,
  .about-grid--values{
    grid-template-columns:1fr;
  }

  .about-hero{
    gap:24px;
  }
}

@media (max-width: 600px){
  .about-page{
    padding:60px var(--section-x) 80px;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

  .about-card,
  .about-panel,
  .about-cta{
    padding:20px;
  }
}

/* Signup Page */
.signup-page{
  width:100%;
  min-height:calc(100vh - 84px);
  padding:80px var(--section-x);
  background:#f8fafc;
}

.signup-hero{
  display:flex;
  justify-content:center;
  max-width:600px;
  margin:0 auto;
}

.signup-form-card{
  width:100%;
  background:#fff;
  border-radius:28px;
  padding:48px;
  box-shadow:0 30px 60px rgba(15,23,42,.08);
}

.form-heading{
  max-width:420px;
  margin-bottom:24px;
}

.form-heading h1{
  margin:18px 0 0;
  font-size:clamp(34px,4vw,38px);
  line-height:1.05;
  color:#0b1220;
}

.form-intro{
  margin:0 0 32px;
  color:#4b5563;
  line-height:1.75;
  max-width:520px;
}

.signup-form{
  display:grid;
  gap:22px;
}

.form-label{
  display:block;
  color:#0f172a;
  font-weight:600;
  margin-bottom:-15px;
}

.phone-input-group{
  display:flex;
  gap:0;
  border:1px solid #d1d5db;
  border-radius:12px;
  overflow:hidden;
}

.phone-prefix{
  display:flex;
  align-items:center;
  padding:0 16px;
  background:#f8fafc;
  color:#334155;
  font-weight:600;
}

.phone-input-group input{
  width:100%;
  border:0;
  padding:16px 14px;
  font-size:1rem;
  outline:none;
}

.arrange{
  font-size:20px;
}
.signup-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.signup-note{
  margin-top:10px;
  color:#64748b;
  font-size:.95rem;
  line-height:1.6;
}

.signup-note a{
  color:#2563eb;
  text-decoration:none;
}

.signup-note a:hover{
  text-decoration:underline;
}

.back-link{
  display:inline-block;
  margin-top:24px;
  color:#0b1220;
  text-decoration:none;
  font-weight:600;
}

.back-link:hover{
  color:#2563eb;
}

@media(max-width:960px){
  .signup-hero{
    grid-template-columns:1fr;
  }

  .signup-visual{
    min-height:520px;
  }
}

@media(max-width:640px){
  .signup-page{
    padding:40px 20px;
  }

  .feature-node{
    width:100px;
    min-height:100px;
    padding:14px;
  }

  .signup-form-card{
    padding:30px;
  }
}


.pricing{
  background:#f7f7f7;
}

.pricing-header{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

h2{
  text-align:center;
  margin-bottom:10px;
  font-size:clamp(30px,4vw,40px);
  line-height:40px;
  font-weight:500;
}

.eyebrow--accent{
  display:inline-flex;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-size:.88rem;
  font-weight:700;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  margin-top:40px;
}
.price-card,
.faq-item{
  background:#fff;
  border-radius:28px;
  box-shadow:0 15px 45px rgba(15,23,42,.08);
  margin-top: 30px;
  margin-bottom: 30px;
}

.price-card{
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:22px;
  min-height:580px;
  transition:all 0.35s ease;
  position:relative;
  cursor:pointer;
}

.price-card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
}

.price-card__tag,
.price-card__discount,
.price-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}

.price-card__tag{
  background:#eef2ff;
  color:#1d4ed8;
}

.price-card__price-group{
  display:flex;
  align-items:flex-end;
  gap:8px;
}

.price-card__price{
  font-size:2rem;
  font-weight:700;
  line-height:1;
}

.price-card__period{
  color:#6b7280;
  font-size:1rem;
  font-weight:600;
  margin-bottom:4px;
}

.price-card__subtitle{
  color:#000;
  font-size:1rem;
  line-height:1.8;
}

.price-card__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.price-card__list li{
  position:relative;
  padding-left:30px;
  color:#334155;
  font-size:.96rem;
}

.price-card__list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:blue;
  font-weight:700;
}

.price-card button{
  width:100%;
}

.price-card.featured{
  border:2px solid rgba(37,99,235,.18);
}
.price-card{
  transition: all 0.35s ease;
  position: relative;
}

.price-card:hover{
  transform: scale(1.06);
  box-shadow: 0 25px 60px rgba(37,99,235,.25);
  border: 2px solid #2563eb;
  z-index: 10;
}

.price-card:hover .btn,
.price-card:hover button{
  background:#FE8301;
  border-color:#FE8301;
  color:#ffffff;
}


/* Features Section */
.features{
  padding:80px var(--section-x);
  background:#ffffff;
}

.features-header{
  max-width:760px;
  margin:0 auto 56px;
  text-align:center;
}

.features-header h2{
  font-size:clamp(28px,4vw,42px);
  margin-bottom:16px;
  color:#0b1220;
}

.features-header p{
  color:#4b5563;
  font-size:1rem;
  line-height:1.75;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  max-width:1200px;
  margin:0 auto;
}

.feature-card{
  background:#fff;
  border-radius:24px;
  padding:36px 28px;
  text-align:center;
  box-shadow:0 8px 24px rgba(15,23,42,.08);
  transition:.3s ease;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.feature-card:hover{
  /* transform:translateY(-2px); */
  /* box-shadow:0 12px 36px rgba(37,99,235,.12); */
  border:1px solid blue;
}

.feature-icon{
  display:flex;
  justify-content:center;
  align-items:center;
  width:72px;
  height:72px;
  background:#dbeafe;
  border-radius:16px;
  margin:0 auto;
}

.industry{
  width:100%;
  padding:80px var(--section-x);
  background:#f7f7f7;
  max-width:100%;
}

.industry-header{
  margin:0 auto 42px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.industry-header h2{
  font-size:clamp(30px,4vw,40px);
  line-height:1.1;
  margin-top:10px;
}

.industry-header .btn{
  padding:12px 28px;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  max-width:1200px;
  margin:0 auto;
}

.industry-more{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.industry-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height:320px;
  border-top:4px solid transparent;
  box-shadow:0 16px 40px rgba(15,23,42,.08);
}

.industry-card__top{
  display:flex;
  align-items:center;
  gap:18px;
}

.industry-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef2ff;
  color:#2563eb;
}

.industry-card h3{
  margin:0;
  font-size:1.1rem;
  line-height:1.3;
}

.industry-card p{
  color:#475569;
  line-height:1.75;
  margin:0;
  flex:1;
}

.industry-card .btn{
  width:max-content;
}

.industry-card--blue{border-top-color:#4338ca;}
.industry-card--green{border-top-color:#059669;}
.industry-card--orange{border-top-color:#c2410c;}
.industry-card--purple{border-top-color:#8b5cf6;}

.testimonial{
  width:100%;
  padding:80px var(--section-x);
  background:#f7f7f7;
}

.testimonial-header{
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
}

.testimonial-header h2{
  font-size:clamp(30px,4vw,40px);
  line-height:1.1;
  margin-top:10px;
}

.testimonial-slider{
  position:relative;
  margin:0 auto;
  max-width:1200px;
}

.testimonial-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:24px;
  padding-bottom:8px;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}

.testimonial-track::-webkit-scrollbar{
  display:none;
}

.testimonial-track{
  -ms-overflow-style:none;
  scrollbar-width:none;
}

.testimonial-card{
  min-width:320px;
  flex:0 0 320px;
  scroll-snap-align:center;
  padding:30px;
  border-radius:24px;
  box-shadow:0 16px 40px rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
}

.testimonial-card p{
  color:#334155;
  line-height:1.8;
  margin:0;
}

.testimonial-rating{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
}

.testimonial-rating span{
  color:#f59e0b;
  display:flex;
  gap:6px;
}

.testimonial-rating strong{
  color:#0b1220;
  font-size:.95rem;
}

.testimonial-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.testimonial-meta strong{
  color:#0b1220;
}

.testimonial-meta span{
  color:#64748b;
  font-size:.95rem;
}

.testimonial-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:#fff;
  color:#2563eb;
  width:42px;
  height:42px;
  border-radius:50%;
  box-shadow:0 10px 25px rgba(15,23,42,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s ease;
}

.testimonial-nav:hover{
  transform:translateY(-50%) scale(1.05);
}

.testimonial-prev{
  left:-18px;
}

.testimonial-next{
  right:-18px;
}

@media(max-width:768px){
  .industry{
    padding:60px 5%;
  }

  .testimonial{
    padding:60px 5%;
  }

  .testimonial-card{
    min-width:260px;
    flex:0 0 260px;
  }

  .testimonial-nav{
    display:none;
  }
}

.feature-icon svg{
  width:48px;
  height:48px;
}

.feature-card h3{
  font-size:1.05rem;
  font-weight:600;
  color:#0b1220;
  line-height:1;  
  margin:0;
}

.feature-card p{
  color:#4b5563;
  font-size:.95rem;
  line-height:1.5;
  margin:0;
}

/* FAQ */
.faq-item{
  margin-bottom:15px;
  overflow:hidden;
  background-color: #f5f5f5;
}

.faq-question{
  width:100%;
  padding:20px;
  border:none;
  text-align:left;
  font-size:16px;
  font-weight:600;
  background:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
}

.faq-question::after{
  content:'+';
  font-size:20px;
  color:#2563eb;
  transition:transform .2s ease;
}

.faq-item.active .faq-question::after{
  content:'-';
  transform:rotate(0deg);
}

.faq-answer{
  display:none;
  padding:20px;
  border-top:1px solid ;
  color:#000000;
  background-color:#ffffff;
}

.faq-item.active .faq-answer{
  display:block;
}

/* Footer Same Width As Hero */
.site-footer{
  width:100%;
  background:#01091E;
  color:#e6eef8;
  padding:56px var(--section-x) 30px;
  margin-top:50px;
}

.footer-inner{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:150px;
  align-items:flex-start;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
}

.app-download {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.app-download a {
    display: inline-block;
}

.app-download img {
    height: 50px;
    width: auto;
    display: block;
}

.social-follow{
    margin-top:5px;
    margin-left:-10px;
}

.social-follow h4{
    display:inline-block;
    /* background:#29405c; */
    color:#fff;
    padding:8px 12px;
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.social-follow{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
}

.social-follow h4{
    width:100%;

}

.social{
    width:40px;
    height:40px;
    margin-top:-20px;
    margin-left:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:26px;
    transition:0.3s;
    border-radius:8px;
}


.facebook{
    background:#4267B2;
}

.instagram{
    background:#F56040;
}

.linkedin{
    background:#0077B5;
}

.twitter{
    background:#1DA1F2;
}

.youtube{
    background:#FF0000;
}
/* .app-download img:hover {
    transform: translateY(-3px);
} */
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.footer-logo{
  height:42px;
  width:auto;
  margin-bottom:8px;
  object-fit:contain;
}

.footer-contact h2{
  color:#fff;
  font-size:2rem;
  margin:0;
  text-align:left;
}

.contact-item{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.contact-label{
  color:#94a3b8;
  font-size:.95rem;
  font-weight:600;
}

.contact-phone,
.footer-contact a{
  color:#fff;
  text-decoration:none;
  font-size:1rem;
}

.contact-phone:hover,
.footer-contact a:hover{
  color:#60a5fa;
}

.contact-meta{
  color:#94a3b8;
  font-size:.93rem;
  margin:0;
}

.social-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.social-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:#15233f;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
}

.social-icon:hover{
  transform:translateY(-2px);
  background:#2563eb;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(250px,1fr));
  gap:48px;
}

.footer-col h4{
  margin-bottom:18px;
  color:#f8fafc;
  font-size:1.05rem;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.footer-col a{
  color:#cbd5e1;
  text-decoration:none;
  opacity:.92;
  transition:.2s ease;
}

.footer-col a:hover{
  opacity:1;
  color:#fff;
}

.divider-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.3);
    margin-top:40px;
    margin-bottom:20px;
    padding:0;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

@media(max-width:768px){
    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

/* .footer-bottom-left p,
.footer-bottom-right p{
  margin:0;
  
} */
.footer-bottom-left a{
  color:#ffffff;
  text-decoration:none;
}

.footer-bottom-right a{
  color:#ffffff;
  text-decoration:none;
  transition:0.2s ease;
}

/* .footer-bottom-right a:hover{
  color:#fff;
  text-decoration:underline;
} */

/* Tablet */
@media(max-width:1000px){

  body{
    padding-top:76px;
  }

  .navbar{
    grid-template-columns:auto auto;
    justify-content:space-between;
    padding:14px 5%;
  }

  .nav-toggle{
    display:flex;
  }

  .nav-links,
  .nav-actions{
    display:none;
  }

  .navbar.mobile-open .nav-links,
  .navbar.mobile-open .nav-actions{
    display:flex;
  }

  .nav-links{
    grid-column:1 / -1;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    width:100%;
    padding:16px 0;
    border-top:1px solid #e5e7eb;
  }

  .nav-links a{
    width:100%;
    padding:14px 12px;
    border-radius:12px;
  }

  .nav-links a:hover{
    background:#f3f4f6;
  }

  .nav-actions{
    grid-column:1 / -1;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding:0 0 16px;
  }

  .nav-actions a,
  .nav-actions button{
    width:100%;
    text-align:center;
  }

  .hero-feature,
  .pricing,
  .faq,
  .site-footer{
    padding-left:5%;
    padding-right:5%;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .price-card{
    min-height:auto;
  }
}

/* Mobile */
@media(max-width:768px){

  body{
    padding-top:72px;
  }

  .hero-feature{
    flex-direction:column;
    text-align:center;
    padding-top:48px;
    padding-bottom:48px;
  }

  .hero-feature__visual{
    order:-1;
    margin-bottom:20px;
  }

  .hero-ctas,
  .price-block{
    justify-content:center;
  }

  .pricing,
  .faq{
    padding-top:60px;
    padding-bottom:60px;
  }

  .price-card{
    padding:24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}

/* Small Mobile */
@media(max-width:480px){

  .navbar{
    padding:12px 4%;
  }

  .logo-mark{
    height:32px;
  }

  .hero-feature,
  .pricing,
  .faq,
  .site-footer{
    padding-left:4%;
    padding-right:4%;
  }

  .hero-feature h1{
    font-size:32px;
  }

  .lead{
    font-size:16px;
  }

  .price{
    font-size:30px;
  }

  .btn,
  .btn-outline,
  .btn-outline-ghost,
  .btn-primary-pill{
    padding:11px 18px;
    font-size:14px;
  }


  .footer-logo{
    height:48px;
    width:50px;
  }
}
/* ===================================
   FULL WIDTH UPDATE
   Add at end of CSS
=================================== */

html,
body{
    width:100%;
    overflow-x:hidden;
}

/* All Sections Same Width */
.site-header,
.navbar,
.hero-feature,
.pricing,
.features,
.industry,
.testimonial,
.faq,
.site-footer{
    width:100%;
    max-width:100%;
}

/* Inner Containers */
.pricing-grid,
.features-grid,
.industry-grid,
.testimonial-slider,
.footer-inner,
.footer-bottom{
    width:100%;
    max-width:100%;
}

/* Remove 1200px limitation */
.features-grid,
.industry-grid,
.testimonial-slider{
    max-width:none;
}

/* Hero Image */
.hero-feature__visual{
    width:100%;
}

.hero-feature__visual img{
    width:100%;
    height:auto;
    display:block;
}

/* FAQ */
.faq-item{
    width:100%;
}

/* Footer */
.footer-inner{
    gap:60px;
}

/* Desktop Large Screens */
@media (min-width:1400px){

    .hero-feature,
    .pricing,
    .features,
    .industry,
    .testimonial,
    .faq,
    .site-footer{
        padding-left:4%;
        padding-right:4%;
    }
}

/* Tablet */
@media(max-width:1000px){

    .hero-feature,
    .pricing,
    .features,
    .industry,
    .testimonial,
    .faq,
    .site-footer{
        padding-left:5%;
        padding-right:5%;
    }
}

/* Mobile */
@media(max-width:768px){

    .hero-feature,
    .pricing,
    .features,
    .industry,
    .testimonial,
    .faq,
    .site-footer{
        padding-left:5%;
        padding-right:5%;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
        padding-top:18px;
    }
}/* ==========================
   SUPPORT SECTION
========================== */

.support-section{
    width:100%;
    padding:80px var(--section-3x);
    background:#ffffff;
    margin:50px 0;
}

.support-body{
    max-width:1200px;
    margin:0 auto;
}

.support-intro{
    max-width:780px;
    margin:0 auto 40px;
    text-align:center;
}

.support-intro .eyebrow{
    display:inline-flex;
    margin-bottom:14px;
}

.support-intro h2{
    font-size:clamp(32px,4vw,46px);
    line-height:1.05;
    color:#111827;
    margin-bottom:18px;
}

.support-intro p{
    color:#475569;
    font-size:18px;
    line-height:1.8;
}

.support-panels{
    display:grid;
    grid-template-columns:repeat(3,minmax(260px,1fr));
    gap:26px;
}

.support-panel{
    background:#ffffff;
    border-radius:32px;
    padding:36px;
    box-shadow:0 24px 55px rgba(15,23,42,.08);
    border:1px solid rgba(15,23,42,.06);
    transition:transform .3s ease, border-color .3s ease;
    display:flex;
    flex-direction:column;
    gap:20px;
    min-height:390px;
}

.support-panel:hover{
    transform:translateY(-6px);
    border-color:rgba(37,99,235,.2);
}

.support-panel--highlight{
    background:linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
    color:#ffffff;
    border-color:rgba(255,255,255,.25);
}

.support-panel--highlight h3,
.support-panel--highlight p,
.support-panel--highlight .btn{
    color:#ffffff;
}

.panel-icon,
.panel-ring{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:24px;
}

.panel-icon{
    background:#dbeafe;
    color:#1d4ed8;
}

.support-panel--highlight .panel-icon{
    background:rgba(255,255,255,.18);
    color:#ffffff;
}

.panel-ring{
    border:2px solid rgba(255,255,255,.4);
    background:rgba(255,255,255,.12);
    color:#ffffff;
    width:72px;
    height:72px;
    border-radius:22px;
    font-size:28px;
}

.support-panel h3{
    font-size:1.6rem;
    color:#111827;
    line-height:1.2;
}

.support-panel--highlight h3{
    color:#ffffff;
}

.support-panel p{
    color:#475569;
    line-height:1.8;
}

.support-panel--highlight p{
    color:rgba(255,255,255,.9);
}

.support-cta{
    margin-top:auto;
    width:max-content;
}

/* Days Calendar */

.days-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:30px;
}

.days-grid span{
    background:#f8fafc;
    border:3px solid #e2e8f0;
    border-radius:8px;
    text-align:center;
    padding:12px 6px;
    font-weight:700;
    color:blue;
    font-size:14px;
}

/* Listening Card */

.support-illustration{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.person-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#e8ddd2;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#0f172a;
}

.chat-bubble{
    background:blue;
    color:white;
    font-weight:700;
    padding:12px 18px;
    border-radius:6px;
    font-size:20px;
}

/* Talk To Human */

.desk-illustration{
    position:relative;
    height:120px;
    margin-top:40px;
}

.headset{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    font-size:55px;
}

.laptop{
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:140px;
    height:80px;
    background:#d6cec4;
    border-radius:8px;
}

.laptop::after{
    content:'';
    position:absolute;
    bottom:-10px;
    left:-50px;
    width:240px;
    height:8px;
    background:#1f2937;
    border-radius:20px;
}

.support-section{
    width:100%;
    padding:80px var(--section-3x);
    background:#ffffff;
    margin:50px 0;
}

.support-body{
    max-width:1200px;
    margin:0 auto;
}

.support-intro{
    max-width:780px;
    margin:0 auto 40px;
    text-align:center;
}

.support-intro .eyebrow{
    display:inline-flex;
    margin-bottom:14px;
}

.support-intro h2{
    font-size:clamp(32px,4vw,46px);
    line-height:1.05;
    color:#111827;
    margin-bottom:18px;
}

.support-intro p{
    color:#475569;
    font-size:18px;
    line-height:1.8;
}

.support-panels{
    display:grid;
    grid-template-columns:repeat(3,minmax(260px,1fr));
    gap:26px;
}

.support-panel{
    background:#ffffff;
    border-radius:32px;
    padding:36px;
    box-shadow:0 24px 55px rgba(15,23,42,.08);
    border:1px solid rgba(15,23,42,.06);
    transition:transform .3s ease, border-color .3s ease;
    display:flex;
    flex-direction:column;
    gap:20px;
    min-height:390px;
}

.support-panel:hover{
    transform:translateY(-6px);
    border-color:rgba(37,99,235,.2);
}

.support-panel--highlight{
    background:linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
    color:#ffffff;
    border-color:rgba(255,255,255,.25);
}

.support-panel--highlight h3,
.support-panel--highlight p,
.support-panel--highlight .btn{
    color:#ffffff;
}

.panel-icon,
.panel-ring{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:24px;
}

.panel-icon{
    background:#dbeafe;
    color:#1d4ed8;
}

.support-panel--highlight .panel-icon{
    background:rgba(255,255,255,.18);
    color:#ffffff;
}

.panel-ring{
    border:2px solid rgba(255,255,255,.4);
    background:rgba(255,255,255,.12);
    color:#ffffff;
    width:72px;
    height:72px;
    border-radius:22px;
    font-size:28px;
}

.support-panel h3{
    font-size:1.6rem;
    color:#111827;
    line-height:1.2;
}

.support-panel--highlight h3{
    color:#ffffff;
}

.support-panel p{
    color:#475569;
    line-height:1.8;
}

.support-panel--highlight p{
    color:rgba(255,255,255,.9);
}

.support-cta{
    margin-top:auto;
    width:max-content;
}

.days-pill-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:20px;
}

.days-pill-grid span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 12px;
    border-radius:999px;
    background:#f0f9ff;
    color:#0f172a;
    font-weight:700;
    border:1px solid #dbeafe;
    font-size:14px;
}

.support-panel--highlight .days-pill-grid span{
    background:rgba(255,255,255,.18);
    color:#ffffff;
    border-color:rgba(255,255,255,.25);
}

.panel-media{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:auto;
}

.panel-media-shape{
    width:110px;
    height:110px;
    border-radius:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,#d1fae5 0%,#10b981 100%);
    color:#065f46;
    box-shadow:0 14px 35px rgba(16,185,129,.22);
    font-size:32px;
}

@media(max-width:1100px){
    .support-panels{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:820px){
    .support-section{
        padding:60px 5%;
    }

    .support-panels{
        grid-template-columns:1fr;
    }

    .support-panel{
        min-height:auto;
    }
}

/* Responsive */

@media(max-width:1000px){

    .support-grid{
        grid-template-columns:1fr;
        max-width:650px;
    }

    .support-card{
        min-height:auto;
    }
}

@media(max-width:768px){

    .support-section{
        padding:60px 5%;
    }

    .support-header h2{
        font-size:32px;
    }

    .support-grid{
        gap:20px;
    }
}