@charset "utf-8";
/* CSS Document */

/* =========================
GST PAGE CSS
========================= */

.gst-hero{
  padding:120px 0 10px;
  background:#fff;
  position:relative;
  overflow:hidden;
}

.gst-hero::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:linear-gradient(135deg,#6d5dfc20,#00b89415);
  border-radius:50%;
  top:-250px;
  right:-180px;
  filter:blur(40px);
}

.gst-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#f3f4ff;
  color:#5b4bff;
  font-size:.82rem;
  font-weight:700;
  margin-bottom:22px;
}

.gst-hero h1{
  font-size:4rem;
  line-height:1.1;
  max-width:900px;
  margin-bottom:24px;
  color:#111827;
}

.gst-sub{
  
  font-size:1.1rem;
  color:#667085;
  line-height:1.9;
}

.gst-hero-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.gst-card{
  background:#fff;
  border:1px solid #ececec;
  padding:30px;
  border-radius:24px;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.gst-card:hover{
  transform:translateY(-6px);
}

.gst-card span{
  width:55px;
  height:55px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f6ff;
  font-size:1.4rem;
  margin-bottom:18px;
}

.gst-card h3{
  font-size:1.2rem;
  margin-bottom:10px;
  color:#111827;
}

.gst-card p{
  color:#667085;
  line-height:1.7;
}

.gst-section{
  padding:90px 0;
  background:#fff;
}

.gst-alt-section{
  padding:90px 0;
  background:#fafbff;
}

.sec-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 70px;
}

.sec-head span{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:#eef2ff;
  color:#5b4bff;
  font-size:.82rem;
  font-weight:700;
  margin-bottom:18px;
}

.sec-head h2{
  font-size:3rem;
  color:#111827;
  margin-bottom:18px;
}

.sec-head p{
  color:#667085;
  line-height:1.9;
  font-size:1.05rem;
}

.gst-info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}

.info-box{
  background:#fff;
  border:1px solid #ececec;
  border-radius:24px;
  padding:35px;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.info-box h3{
  margin-bottom:14px;
  font-size:1.3rem;
  color:#111827;
}

.info-box p{
  color:#667085;
  line-height:1.8;
}

.feature-wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.feature-box{
  background:#fff;
  border-radius:24px;
  padding:35px;
  border:1px solid #ececec;
  transition:.4s;
}

.feature-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.feature-icon{
  width:65px;
  height:65px;
  border-radius:18px;
  background:#f3f4ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  margin-bottom:22px;
}

.feature-box h3{
  font-size:1.25rem;
  margin-bottom:14px;
  color:#111827;
}

.feature-box p{
  color:#667085;
  line-height:1.8;
}

.timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.timeline-box{
  background:#fff;
  border:1px solid #ececec;
  border-radius:24px;
  padding:35px;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.timeline-box h3{
  margin-bottom:16px;
  color:#111827;
  font-size:1.25rem;
}

.timeline-box p{
  color:#667085;
  line-height:1.8;
}

.gst-cta{
  padding:0px 0;
  background:linear-gradient(135deg,#0f172a,#111827);
  text-align:center;
}

.gst-cta h2{
  color:#fff;
  font-size:3rem;
  margin-bottom:20px;
}

.gst-cta p{
  max-width:800px;
  margin:auto;
  color:#cbd5e1;
  line-height:1.9;
  font-size:1.05rem;
}

.cta-btns{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.btn-dark,
.btn-light{
  padding:16px 30px;
  border-radius:14px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.btn-dark{
  background:#fff;
  color:#111827;
}


.btn-light{
  background:transparent;
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
}

.btn-dark:hover,
.btn-light:hover{
  transform:translateY(-4px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .gst-hero h1{
    font-size:3rem;
  }

  .gst-hero-grid,
  .feature-wrap,
  .timeline{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .gst-hero{
    padding:90px 0 10px;
  }

  .gst-hero h1{
    font-size:2.2rem;
  }

  .sec-head h2{
    font-size:2rem;
  }

  .gst-hero-grid,
  .gst-info-grid,
  .feature-wrap,
  .timeline{
    grid-template-columns:1fr;
  }

  .gst-card,
  .feature-box,
  .timeline-box,
  .info-box{
    padding:28px;
  }

  .gst-cta h2{
    font-size:2rem;
  }

}
/* =========================
GST CONTENT SECTION
========================= */

.gst-content-section{
  padding:0px 0;
  background:#fff;
}

.section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.section-head span{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:#eef2ff;
  color:#5b4bff;
  font-size:.82rem;
  font-weight:700;
  margin-bottom:20px;
}

.section-head h2{
  font-size:3rem;
  color:#111827;
  margin-bottom:20px;
  line-height:1.2;
}

.section-head p{
  color:#667085;
  line-height:1.9;
  font-size:1.05rem;
}

/* TAKEAWAY BOX */

.takeaway-box{
  display:grid;
  grid-template-columns:1.5fr .9fr;
  gap:35px;
  margin-bottom:80px;
}

.takeaway-left{
  background:#fff;
  border:1px solid #ececec;
  border-radius:30px;
  padding:45px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.takeaway-left h3{
  font-size:2rem;
  margin-bottom:28px;
  color:#111827;
}

.takeaway-left ul{
  list-style:none;
  padding:0;
  margin:0;
}

.takeaway-left ul li{
  position:relative;
  padding-left:34px;
  margin-bottom:22px;
  color:#667085;
  line-height:1.9;
  font-size:1rem;
}

.takeaway-left ul li::before{
  content:'✔';
  position:absolute;
  left:0;
  top:0;
  color:#5b4bff;
  font-weight:700;
}

.takeaway-right{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.mini-card{
  background:#fafbff;
  border:1px solid #ececec;
  border-radius:24px;
  padding:30px;
}

.mini-card h4{
  font-size:1.2rem;
  color:#111827;
  margin-bottom:10px;
}

.mini-card p{
  color:#667085;
  line-height:1.8;
}

/* WHY GRID */

.gst-why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.why-box{
  background:#fff;
  border:1px solid #ececec;
  border-radius:26px;
  padding:35px;
  transition:.4s;
}

.why-box:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.why-icon{
  width:65px;
  height:65px;
  border-radius:18px;
  background:#f3f4ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  margin-bottom:24px;
}

.why-box h3{
  font-size:1.3rem;
  margin-bottom:14px;
  color:#111827;
}

.why-box p{
  color:#667085;
  line-height:1.9;
}

/* BOTTOM HIGHLIGHT */

.bottom-highlight{
  margin-top:80px;
  background:linear-gradient(135deg,#111827,#1f2937);
  border-radius:34px;
  padding:60px;
  text-align:center;
}

.bottom-highlight h3{
  color:#fff;
  font-size:2.3rem;
  margin-bottom:20px;
}

.bottom-highlight p{
  max-width:850px;
  margin:auto;
  color:#d1d5db;
  line-height:2;
  font-size:1.05rem;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .takeaway-box{
    grid-template-columns:1fr;
  }

  .gst-why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .section-head h2{
    font-size:2.4rem;
  }

}

@media(max-width:768px){

  .gst-content-section{
    padding:10px 0;
  }

  .section-head h2{
    font-size:2rem;
  }

  .gst-why-grid{
    grid-template-columns:1fr;
  }

  .takeaway-left{
    padding:30px;
  }

  .mini-card{
    padding:24px;
  }

  .bottom-highlight{
    padding:40px 25px;
  }

  .bottom-highlight h3{
    font-size:1.8rem;
  }

}
/* =========================================
   GST RISK SECTION
========================================= */

.gst-risk-section{
  padding:0px 0;
  background:#ffffff;
  position:relative;
}

.gst-risk-section .container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEAD */

.section-head{
  text-align:center;
  margin-bottom:50px;
}

.mini-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(15,23,42,.05);
  color:#0f172a;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.section-head h2{
  font-size:clamp(2rem,4vw,3.3rem);
  line-height:1.15;
  font-weight:800;
  color:#0f172a;
  margin-bottom:18px;
}

.section-head h2 span{
  background:linear-gradient(90deg,#2563eb,#7c3aed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-head p{
  max-width:850px;
  margin:auto;
  font-size:1.05rem;
  line-height:1.9;
  color:#475569;
}

/* TABLE */

.risk-table-wrap{
  overflow:auto;
  border-radius:28px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.risk-table{
  width:100%;
  border-collapse:collapse;
  min-width:700px;
}

.risk-table thead{
  background:linear-gradient(135deg,#0f172a,#1e293b);
}

.risk-table thead th{
  padding:24px;
  text-align:left;
  color:#fff;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.03em;
}

.risk-table tbody tr{
  transition:.3s ease;
}

.risk-table tbody tr:nth-child(even){
  background:#f8fafc;
}

.risk-table tbody tr:hover{
  background:#eef4ff;
}

.risk-table tbody td{
  padding:24px;
  border-top:1px solid rgba(15,23,42,.06);
  color:#334155;
  font-size:.98rem;
  line-height:1.7;
  vertical-align:top;
}

.issue-title{
  font-weight:700;
  color:#0f172a;
  font-size:1rem;
}

/* NOTE BOX */

.gst-note-box{
  margin-top:35px;
  display:flex;
  gap:20px;
  align-items:flex-start;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff7ed,#ffffff);
  border:1px solid rgba(251,146,60,.25);
}

.note-icon{
  width:60px;
  height:60px;
  min-width:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  background:#fff;
  box-shadow:0 10px 30px rgba(251,146,60,.15);
}

.gst-note-box h4{
  font-size:1.2rem;
  margin-bottom:10px;
  color:#0f172a;
}

.gst-note-box p{
  color:#475569;
  line-height:1.9;
  font-size:.97rem;
}

/* RESPONSIVE */

@media(max-width:768px){

  .gst-risk-section{
    padding:25px 0;
  }

  .section-head{
    margin-bottom:35px;
  }

  .risk-table{
    min-width:620px;
  }

  .risk-table thead th,
  .risk-table tbody td{
    padding:18px;
  }

  .gst-note-box{
    flex-direction:column;
  }

}
/* =========================================
   HOW BUSY HELPS SECTION
========================================= */

.busy-help-section{
  padding:0px 0;
  background:#fff;
  position:relative;
}

.busy-help-section .container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */

.section-header{
  text-align:center;
  margin-bottom:60px; padding-top:50px;
}

.section-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(37,99,235,.08);
  color:#2563eb;
  font-size:.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:20px;
}

.section-header h2{
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1.15;
  color:#0f172a;
  font-weight:800;
  margin-bottom:18px; 
}

.section-header h2 span{
  background:linear-gradient(90deg,#2563eb,#7c3aed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-header p{
  max-width:800px;
  margin:auto;
  color:#64748b;
  font-size:1.05rem;
  line-height:1.9;
}

/* GRID */

.help-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-bottom:80px;
}

/* CARD */

.help-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  padding:40px;
  transition:.35s ease;
  box-shadow:0 10px 40px rgba(15,23,42,.05);
}

.help-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 60px rgba(37,99,235,.12);
}

.help-icon{
  width:70px;
  height:70px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  margin-bottom:25px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
}

.help-card h3{
  font-size:1.5rem;
  margin-bottom:15px;
  color:#0f172a;
}

.help-card p{
  color:#64748b;
  line-height:1.9;
  margin-bottom:25px;
}

.help-card ul{
  display:grid;
  gap:14px;
  padding:0;
  margin:0;
  list-style:none;
}

.help-card ul li{
  position:relative;
  padding-left:28px;
  color:#334155;
  font-weight:500;
}

.help-card ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#2563eb;
  font-weight:700;
}

/* PROCESS */

.update-process{
  background:linear-gradient(135deg,#f8fafc,#ffffff);
  border:1px solid rgba(15,23,42,.08);
  border-radius:34px;
  padding:55px;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:50px;
  align-items:center;
}

/* LEFT */

.mini-title{
  display:inline-block;
  margin-bottom:16px;
  color:#2563eb;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.8rem;
}

.process-left h3{
  font-size:2.2rem;
  line-height:1.2;
  margin-bottom:20px;
  color:#0f172a;
}

.process-left p{
  color:#64748b;
  line-height:1.9;
}

/* STEPS */

.process-steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.step-box{
  background:#fff;
  border-radius:24px;
  padding:28px;
  border:1px solid rgba(15,23,42,.08);
  transition:.3s ease;
}

.step-box:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.step-box span{
  width:50px;
  height:50px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
}

.step-box h4{
  font-size:1.1rem;
  color:#0f172a;
  margin-bottom:10px;
}

.step-box p{
  color:#64748b;
  line-height:1.7;
  font-size:.95rem;
}

/* RESPONSIVE */

@media(max-width:991px){

  .help-grid{
    grid-template-columns:1fr;
  }

  .update-process{
    grid-template-columns:1fr;
    padding:35px;
  }

}

@media(max-width:768px){

  .busy-help-section{
    padding:25px 0;
  }

  .process-steps{
    grid-template-columns:1fr;
  }

  .help-card{
    padding:30px;
  }

  .update-process{
    padding:28px;
    border-radius:26px;
  }

  .process-left h3{
    font-size:1.8rem;
  }

}
/* =========================================
   GST FEATURES & UPDATES SECTION
========================================= */

.gst-features-section{
  padding:0px 0;
  background:#fff;
}

.gst-features-section .container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */

.gst-head{
  text-align:center;
  margin-bottom:60px; padding-top:50px;
}

.gst-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(37,99,235,.08);
  color:#2563eb;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:20px;
}

.gst-head h2{
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1.15;
  color:#0f172a;
  font-weight:800;
  margin-bottom:20px;
}

.gst-head h2 span{
  background:linear-gradient(90deg,#2563eb,#7c3aed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.gst-head p{
  max-width:820px;
  margin:auto;
  color:#64748b;
  line-height:1.9;
  font-size:1.05rem;
}

/* GRID */

.update-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-bottom:50px;
}

.update-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  padding:30px;
  transition:.35s ease;
  box-shadow:0 10px 35px rgba(15,23,42,.04);
}

.update-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(37,99,235,.10);
}

.u-icon{
  width:64px;
  height:64px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  margin-bottom:22px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
}

.update-card h3{
  font-size:1.15rem;
  color:#0f172a;
  margin-bottom:12px;
}

.update-card p{
  color:#64748b;
  line-height:1.8;
  font-size:.95rem;
}

/* IMPORTANT NOTE */

.important-note{
  margin-bottom:70px;
  display:flex;
  gap:20px;
  align-items:flex-start;
  padding:30px;
  border-radius:28px;
  background:linear-gradient(135deg,#fff7ed,#ffffff);
  border:1px solid rgba(251,146,60,.25);
}

.note-icon{
  width:65px;
  height:65px;
  min-width:65px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  font-size:1.7rem;
  box-shadow:0 12px 35px rgba(251,146,60,.15);
}

.important-note h4{
  font-size:1.3rem;
  margin-bottom:10px;
  color:#0f172a;
}

.important-note p{
  color:#64748b;
  line-height:1.9;
}

/* FEATURE WRAP */

.gst-feature-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  margin-bottom:80px;
}

.mini-label{
  display:inline-block;
  margin-bottom:16px;
  color:#2563eb;
  font-size:.8rem;
  letter-spacing:.08em;
  font-weight:700;
  text-transform:uppercase;
}

.feature-left h3{
  font-size:2.3rem;
  color:#0f172a;
  margin-bottom:18px;
}

.feature-left p{
  color:#64748b;
  line-height:1.9;
  margin-bottom:25px;
}

.feature-left ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:16px;
}

.feature-left ul li{
  position:relative;
  padding-left:30px;
  color:#334155;
  font-weight:500;
}

.feature-left ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#2563eb;
  font-weight:700;
}

/* INVOICE CARD */

.invoice-card{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  border-radius:34px;
  padding:40px;
  color:#fff;
  box-shadow:0 25px 60px rgba(15,23,42,.18);
}

.invoice-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}

.invoice-top span{
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#cbd5e1;
}

.live-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 15px #22c55e;
}

.invoice-card h4{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:18px; color:#FFFFFF;
}

.invoice-card p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:30px;
}

.invoice-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.invoice-list div{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  font-size:.95rem;
}

/* RULE CARDS */

.rule-change-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.rule-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  padding:35px;
  box-shadow:0 10px 35px rgba(15,23,42,.04);
}

.rule-year{
  display:inline-block;
  margin-bottom:18px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(37,99,235,.08);
  color:#2563eb;
  font-size:.8rem;
  font-weight:700;
}

.rule-card h3{
  font-size:1.5rem;
  line-height:1.3;
  margin-bottom:18px;
  color:#0f172a;
}

.rule-card p{
  color:#64748b;
  line-height:1.9;
  margin-bottom:22px;
}

.rule-highlight{
  padding:18px;
  border-radius:18px;
  background:#f8fafc;
  color:#0f172a;
  font-weight:600;
  border-left:4px solid #2563eb;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .update-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gst-feature-wrap{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .gst-features-section{
    padding:25px 0;
  }

  .update-grid,
  .rule-change-grid{
    grid-template-columns:1fr;
  }

  .invoice-list{
    grid-template-columns:1fr;
  }

  .important-note{
    flex-direction:column;
  }

  .feature-left h3{
    font-size:1.9rem;
  }

  .invoice-card{
    padding:30px;
  }

}
/* =========================
   GST ADVANCED SECTION
========================= */

.gst-advanced-section{
  padding:30px 0;
  background:#fff;
  position:relative;
}

.gst-advanced-section .container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */

.section-head{
  text-align:center;
  margin-bottom:70px; padding-top:50px;
}

.mini-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:100px;
  background:#eef4ff;
  color:#2563eb;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.section-head h2{
  font-size:clamp(2.2rem,5vw,4rem);
  line-height:1.15;
  font-weight:800;
  color:#0f172a;
  margin-bottom:18px;
}

.section-head h2 span{
  background:linear-gradient(90deg,#2563eb,#7c3aed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-head p{
  max-width:850px;
  margin:auto;
  color:#64748b;
  line-height:1.9;
  font-size:1.05rem;
}

/* CARD */

.gst-card{
  display:flex;
  align-items:center;
  gap:40px;
  padding:45px;
  border:1px solid #e5e7eb;
  border-radius:34px;
  background:#fff;
  margin-bottom:40px;
  box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.gst-card.reverse{
  flex-direction:row-reverse;
}

.icon-box{
  min-width:120px;
  height:120px;
  border-radius:30px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:3rem;
  color:#fff;
  box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.icon-box.big{
  width:150px;
  height:150px;
  font-size:4rem;
}

.gst-content h3{
  font-size:2rem;
  margin-bottom:18px;
  color:#0f172a;
}

.gst-content p{
  color:#64748b;
  line-height:1.9;
  margin-bottom:18px;
}

.list-title{
  font-weight:700;
  color:#111827 !important;
}

/* GRID */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:22px;
}

.feature-item{
  padding:16px 18px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  font-weight:600;
  color:#0f172a;
}

.update-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin:25px 0;
}

.update-list div{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  padding:15px 18px;
  border-radius:16px;
  font-weight:600;
}

/* HIGHLIGHT */

.gst-highlight-box{
  display:flex;
  gap:25px;
  padding:40px;
  border-radius:30px;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  margin:60px 0;
}

.highlight-icon{
  font-size:3rem;
}

.gst-highlight-box h3{
  font-size:2rem;
  margin-bottom:12px;
}

.gst-highlight-box p{
  color:rgba(255,255,255,.8);
  line-height:1.9;
}

/* TABLE */

.edition-wrap{
  margin-top:90px;
}

.section-mini{
  text-align:center;
  margin-bottom:35px;
}

.section-mini span{
  color:#2563eb;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
}

.section-mini h3{
  margin-top:12px;
  font-size:2.4rem;
  color:#0f172a;
}

.table-wrap{
  overflow:auto;
  border-radius:28px;
  border:1px solid #e5e7eb;
}

.gst-table{
  width:100%;
  border-collapse:collapse;
  min-width:850px;
}

.gst-table thead{
  background:#0f172a;
}

.gst-table thead th{
  color:#fff;
  padding:22px;
  text-align:left;
  font-size:.95rem;
}

.gst-table tbody tr{
  border-bottom:1px solid #e5e7eb;
}

.gst-table tbody td{
  padding:20px;
  color:#475569;
  font-weight:500;
}

/* FAQ */

.faq-section{
  margin-top:100px;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  margin-top:40px;
}

.faq-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.faq-card h4{
  font-size:1.2rem;
  margin-bottom:14px;
  color:#0f172a;
}

.faq-card p{
  color:#64748b;
  line-height:1.8;
}

/* CONCLUSION */

.gst-conclusion{
  margin-top:90px;
  text-align:center;
  padding:60px;
  border-radius:34px;
  background:linear-gradient(135deg,#eef4ff,#f8f5ff);
}

.gst-conclusion h3{
  font-size:2.5rem;
  color:#0f172a;
  margin-bottom:20px;
}

.gst-conclusion p{
  color:#64748b;
  line-height:1.9;
  max-width:850px;
  margin:0 auto 18px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .gst-card,
  .gst-card.reverse{
    flex-direction:column;
    text-align:center;
  }

  .feature-grid,
  .update-list,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .gst-highlight-box{
    flex-direction:column;
    text-align:center;
  }

}

@media(max-width:768px){

  .gst-card{
    padding:30px 24px;
  }

  .section-head h2{
    font-size:2.2rem;
  }

  .section-mini h3{
    font-size:2rem;
  }

  .gst-content h3{
    font-size:1.6rem;
  }

  .gst-highlight-box h3{
    font-size:1.7rem;
  }

  .gst-conclusion{
    padding:40px 24px;
  }

  .gst-conclusion h3{
    font-size:2rem;
  }

}


