/* ==========================================================
   PC PROSPECT
   BUYING GUIDE 2
========================================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter,Arial,sans-serif;
  background:#f5f7fb;
  color:#0f172a;
  line-height:1.6;
}

.G_main{
  width:min(1400px,92%);
  margin:auto;
  padding:36px 0 80px;
}

.G_main section{
  margin-bottom:76px;
}

/* ==========================================================
   HEADER TOP TEXT START
========================================================== */

.G_nav-area{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.G_header-top-text{
    font-size:12px;
    font-weight:800;
    color:#64748b;
    letter-spacing:.05em;
}
.G_header-top-text{

    font-size:15px;

    font-weight:900;
   
    font-family: Franklin Gothic Medium, "Arial Narrow", Arial, sans-serif;

    letter-spacing:.06em;

    text-transform:uppercase;

    color:#d1d1d1;

    text-shadow:0 2px 10px rgba(37,99,235,.12);

}
.G_header-top-text{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.G_header-top-icon{
    font-size:22px;
    line-height:1;
}

.G_header-top-label{
    font-size:16px;
    font-weight:900;
    color:#f97316;
    text-transform:uppercase;
    letter-spacing:.08em;
}
/* ==========================================================
   HEADER TOP TEXT END
========================================================== */

/* HEADER */

.G_header{
  background:#ffffff;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.G_header-inner{
  width:min(1400px,92%);
  height:100px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.G_logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.G_logo-icon{
    width:60px;
    height:50px;
    border-radius:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-family:"Inter",sans-serif;
    color:#ffffff;
    font-size:26px;
    font-weight:950;
    letter-spacing:-0.01em;

    background:linear-gradient(135deg,rgb(59,130,246),rgb(67,56,202));
    box-shadow:rgba(59,130,246,.22) 0 10px 24px;
}

.G_logo-text{
    color:#111827;
    font-family:"Inter",sans-serif;
    font-size:26px;
    font-weight:800;
    letter-spacing:-0.04em;
    line-height:1;
}
.G_nav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.G_nav a{
  text-decoration:none;
  color:#475569;
  font-weight:700;
  font-size:.95rem;
}

.G_nav a:hover{
  color:#2563eb;
}


/* ==========================================================
   HEADER DROPDOWN START
========================================================== */
.G_nav-dropdown {
  position: relative;
}

.G_nav-dropbtn {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #475569;
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
}

.G_nav-dropbtn:hover {
  color: #2563eb;
}

.G_guide-menu {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 50;

  width: 260px;
  padding: 10px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;

  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .14);

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s ease;
  max-height: 420px;
overflow-y: auto;
}

.G_nav-dropdown:hover .G_guide-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.G_guide-menu a {
  padding: 9px 11px;
  border-radius: 9px;
  font-size: .9rem;
  line-height: 1.3;
  white-space: nowrap;
}

.G_guide-menu a:hover {
  background: #f1f5f9;
}

/* ==========================================================
   HEADER DROPDOWN END
========================================================== */
/* HERO */

#G_heroContainer{
  margin-bottom:64px;
}

.G_hero{
  position:relative;
  overflow:hidden;
  min-height:530px;
  border-radius:38px;
  padding:56px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
/* Background comes from guide-data2.js */
}

.G_hero::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  right:-80px;
  top:-80px;
  background:var(--hero-circle-one);
}

.G_hero::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  left:45%;
  bottom:-70px;
  background:var(--hero-circle-two);
}

.G_hero-content{
  position:relative;
  z-index:2;
}

.G_hero-badge{
  display:inline-flex;
  padding:9px 15px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.G_hero-title{
  font-size:clamp(2.5rem,5vw,5.35rem);
  line-height:.95;
  letter-spacing:-.06em;
  margin-bottom:24px;
}

.G_hero-text{
  max-width:650px;
  font-size:1.15rem;
  color:rgba(255,255,255,.88);
  margin-bottom:30px;
}

.G_hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.G_hero-points span{
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:.92rem;
}

.G_hero-image-area{
  position:relative;
  z-index:2;
}

.G_hero-image-card{
  overflow:hidden;
  border-radius:34px;
  background:#ffffff;
  padding:12px;
  transform:rotate(2deg);
  box-shadow:0 28px 70px rgba(15,23,42,.35);
}

.G_hero-image-card img{
  width:100%;
  height:430px;
  display:block;
  object-fit:cover;
  border-radius:25px;
}

.G_hero-mini-card{
  position:absolute;
  left:-26px;
  bottom:34px;
  max-width:245px;
  padding:18px;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.22);
}

.G_hero-mini-card strong{
  display:block;
  font-size:1rem;
  color:#0f172a;
  margin-bottom:4px;
}

.G_hero-mini-card span{
  display:block;
  font-size:.9rem;
  color:#64748b;
}

/* QUICK NAV */

.G_quick-nav{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.G_quick-card{
  min-height:120px;
  padding:24px;
  border-radius:28px;
  background:#ffffff;
  text-decoration:none;
  color:#0f172a;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.06);
  transition:.25s ease;
}

.G_quick-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 65px rgba(15,23,42,.13);
}

.G_quick-card span{
  font-size:2rem;
}

.G_quick-card strong{
  font-size:1.05rem;
}

/* SHARED */

.G_section-label{
  display:inline-flex;
  padding:8px 13px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.G_block-head{
  max-width:760px;
  margin-bottom:28px;
}

.G_block-head h2,
.G_intro h2,
.G_article-content h2,
.G_mistakes h2{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1;
  letter-spacing:-.04em;
  margin-bottom:16px;
}

/* INTRO */

.G_intro{
  padding:42px;
  border-radius:34px;
  background:#ffffff;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  max-width:980px;
}

.G_intro p{
  max-width:850px;
  font-size:1.1rem;
  color:#475569;
}

/* STEPS */

.G_steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.G_step-card{
  padding:26px;
  border-radius:30px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.G_step-card span{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
background: linear-gradient(135deg,#7c3aed,#5b21b6);
color:#ffffff;
  font-weight:900;
  margin-bottom:20px;
}

.G_step-card h3{
  font-size:1.2rem;
  margin-bottom:8px;
}

.G_step-card p{
  color:#64748b;
}

/* ARTICLE SECTIONS */

.G_article-list{
  display:flex;
  flex-direction:column;
  gap:34px;
}

.G_article-section{
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:38px;
  align-items:center;
  padding:34px;
  border-radius:36px;
  background:#ffffff;
  box-shadow:0 22px 60px rgba(15,23,42,.09);
  border:1px solid rgba(15,23,42,.06);
}

.G_article-section.G_reverse{
  grid-template-columns:.92fr 1fr;
}

.G_article-section.G_reverse .G_article-content{
  order:2;
}

.G_article-section.G_reverse .G_article-image{
  order:1;
}

.G_article-content p{
  color:#475569;
  font-size:1.05rem;
  margin-bottom:20px;
}

.G_tip-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.G_tip-list span{
  padding:11px 14px;
  border-radius:16px;
  background:#f0fdf4;
  color:#166534;
  font-weight:800;
}

/* ==========================================================
   ARTICLE IMAGE START
========================================================== */

.G_article-image{
  overflow:hidden;
  border-radius:30px;
  height:320px;
}

.G_article-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* ==========================================================
   ARTICLE IMAGE END
========================================================== */

/* BUYING TIPS */

.G_tips-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.G_tip-card{
  padding:28px;
  border-radius:30px;
  background:#0f172a;
  color:#ffffff;
  box-shadow:0 22px 60px rgba(15,23,42,.15);
}

.G_tip-card span{
  font-size:2rem;
  display:block;
  margin-bottom:16px;
}

.G_tip-card h3{
  font-size:1.25rem;
  margin-bottom:8px;
}

.G_tip-card p{
  color:rgba(255,255,255,.75);
}


/* ==========================================================
   DEALS CTA
========================================================== */

.G_deals-cta{

    display:grid;

    grid-template-columns:1.3fr auto;

    gap:50px;

    align-items:center;

    padding:46px 48px;

    margin:70px 0;

    border-radius:34px;

    border:1px solid #bfd7ff;

    box-shadow:0 20px 60px rgba(15,23,42,.08);

}

.G_deals-cta-content h2{

    margin:10px 0 16px;

    font-size:clamp(2rem,4vw,3.4rem);

    line-height:1;

    letter-spacing:-.04em;

}

.G_deals-cta-content p{

    max-width:720px;

    color:#475569;

    font-size:1.15rem;

    line-height:1.8;

}

/* ==========================================================
   DEALS CTA BUTTON START
========================================================== */

.G_deals-cta-button{
    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    min-width:280px;
    height:62px;
    padding:0 30px;

    border-radius:999px;

    text-decoration:none;
    font-size:1.05rem;
    font-weight:950;
    letter-spacing:.04em;

    box-shadow:0 16px 35px rgba(34,197,94,.28);

    transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.G_deals-cta-button::after{
    content:"→";
    font-size:1.35rem;
    line-height:1;
    transition:transform .22s ease;
}

.G_deals-cta-button:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 50px rgba(34,197,94,.36);
    filter:brightness(1.05);
}

.G_deals-cta-button:hover::after{
    transform:translateX(5px);
}

.G_deals-cta-button:active{
    transform:translateY(-1px);
}

/* ==========================================================
   DEALS CTA BUTTON END
========================================================== */
@media(max-width:900px){

.G_deals-cta{

    grid-template-columns:1fr;

    text-align:center;

    padding:34px;

}

.G_deals-cta-content p{

    margin:auto;

}

.G_deals-cta-button{

    width:100%;

    min-width:0;

}

}


/* MISTAKES */

.G_mistakes{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
  padding:42px;
  border-radius:36px;
  background:linear-gradient(135deg,#fff7ed,#ffffff);
  border:1px solid rgba(249,115,22,.14);
  box-shadow:0 22px 60px rgba(15,23,42,.08);
}

.G_mistake-list{
  display:grid;
  gap:14px;
}

.G_mistake-list article{
  padding:20px;
  border-radius:22px;
  background:#ffffff;
  border:1px solid rgba(249,115,22,.16);
}

.G_mistake-list h3{
  margin-bottom:6px;
}

.G_mistake-list p{
  color:#64748b;
}

/* ==========================================================
   FAQ START
========================================================== */

.G_faq-list{
  display:grid;
  gap:16px;
}

.G_faq-item{
  position:relative;
  overflow:hidden;

  background:#ffffff;
  border-radius:24px;
  padding:0;

  border:1px solid rgba(15,23,42,.07);
  box-shadow:0 16px 40px rgba(15,23,42,.07);

  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.G_faq-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:5px;
  height:100%;
  background:linear-gradient(180deg,#2563eb,#22c55e);
  opacity:.85;
}

.G_faq-item:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 55px rgba(15,23,42,.10);
  border-color:rgba(37,99,235,.20);
}

.G_faq-item summary{
  cursor:pointer;
  list-style:none;

  padding:22px 28px 22px 34px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  font-weight:950;
  font-size:1.08rem;
  color:#0f172a;
}

.G_faq-item summary::-webkit-details-marker{
  display:none;
}

.G_faq-item summary::after{
  content:"+";

  width:34px;
  height:34px;
  flex-shrink:0;

  display:grid;
  place-items:center;

  border-radius:50%;
  background:#eff6ff;
  color:#2563eb;

  font-size:1.45rem;
  font-weight:900;

  transition:.22s ease;
}

.G_faq-item[open] summary::after{
  content:"−";
  background:#2563eb;
  color:#ffffff;
}

.G_faq-item p{
  margin:0;
  padding:0 34px 24px;

  color:#475569;
  font-size:1rem;
  line-height:1.75;
}

.G_faq-item[open]{
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
  border-color:rgba(37,99,235,.22);
}

/* ==========================================================
   FAQ END
========================================================== */
/* RESPONSIVE */

@media (max-width:1100px){

  .G_quick-nav,
  .G_steps-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .G_article-section,
  .G_article-section.G_reverse,
  .G_mistakes{
    grid-template-columns:1fr;
  }

  .G_article-section.G_reverse .G_article-content,
  .G_article-section.G_reverse .G_article-image{
    order:initial;
  }

}

@media (max-width:1000px){

  .G_hero{
    grid-template-columns:1fr;
    padding:38px;
  }

  .G_hero-image-card img{
    height:360px;
  }

}

@media (max-width:760px){

  .G_header-inner{
    height:auto;
    padding:18px 0;
    align-items:flex-start;
    flex-direction:column;
  }

  .G_nav{
    gap:14px;
  }

  .G_main{
    width:94%;
    padding-top:24px;
  }

  .G_main section{
    margin-bottom:54px;
  }

  .G_hero{
    min-height:auto;
    border-radius:28px;
    padding:28px;
  }

  .G_hero-title{
    font-size:2.5rem;
  }

  .G_hero-text{
    font-size:1rem;
  }

  .G_hero-image-card{
    transform:none;
  }

  .G_hero-image-card img{
    height:260px;
  }

  .G_hero-mini-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin-top:14px;
    max-width:none;
  }

  .G_quick-nav,
  .G_steps-grid,
  .G_tips-grid{
    grid-template-columns:1fr;
  }

  .G_intro,
  .G_article-section,
  .G_mistakes{
    padding:24px;
    border-radius:26px;
  }

  .G_article-image,
  .G_article-image img{
    min-height:240px;
  }

}



/* =========================================================
   GUIDE FOOTER START
========================================================= */

.G_footer{
  overflow:hidden;
}

.G_footer-inner{
  width:min(1180px,92%);
  margin:0 auto;
  padding:36px 0 20px;

  display:grid;
  grid-template-columns:1.2fr .9fr .9fr .9fr 1.15fr;
  gap:30px;
  align-items:start;
}

.G_footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin:6px 0 14px;
  text-decoration:none;
}

.G_footer-logo .G_logo-icon{
  width:48px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#3b82f6,#4338ca);
  color:#ffffff;
  font-size:22px;
  font-weight:950;
}

.G_footer-logo .G_logo-text{
  color:#ffffff;
  font-size:24px;
  font-weight:850;
  letter-spacing:-.04em;
}

.G_footer-brand p{
  margin:0;
  max-width:340px;
  font-size:14px;
  font-weight:650;
  line-height:1.6;
}
.G_footer-column h3,
.G_footer-newsletter h3{
  margin:0 0 14px;
  color:#ffffff;
  font-size:16px;
  font-weight:900;
}

.G_footer-column{
  display:grid;
  gap:10px;
}

.G_footer-column a,
.G_footer-column p{
  margin:0;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  line-height:1.5;
}

.G_footer-column a:hover{
  color:#ffffff !important;
}

.G_footer-column p{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.G_footer-column p::before{
  content:"✓";
  width:18px;
  height:18px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:1px;
  border-radius:50%;
  background:#22c55e;
  color:#ffffff;
  font-size:14px;
  font-weight:900;
}

.G_footer-newsletter{
  padding:14px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}

.G_footer-newsletter h3{
  margin-bottom:10px;
}

.G_footer-newsletter p{
  margin:0 0 12px;
  font-size:14px;
  font-weight:650;
  line-height:1.55;
}

.G_footer-newsletter form{
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#ffffff;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
}

.G_footer-newsletter input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  padding:12px 16px;
  background:transparent;
  color:#111827;
  font-size:14px;
  font-weight:700;
}

.G_footer-newsletter input::placeholder{
  color:#64748b;
}

.G_footer-newsletter button{
  width:48px;
  height:48px;
  flex-shrink:0;
  border:0;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:#ffffff;
  font-size:0;
  font-weight:900;
}

.G_footer-newsletter button::before{
  content:"➜";
  font-size:22px;
}

.G_footer-newsletter button:hover{
  filter:brightness(1.08);
}

.G_footer-bottom{
  width:min(1180px,92%);
  margin:28px auto 0;
  padding:18px 0 20px;
  text-align:center;
  font-size:14px;
  font-weight:700;
}

/* GUIDE FOOTER RESPONSIVE */

@media(max-width:1000px){

  .G_footer-inner{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:700px){

  .G_footer-inner{
    grid-template-columns:1fr;
  }

}

/* =========================================================
   GUIDE FOOTER END
========================================================= */