
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --nav-bg: #0f172a;
  --nav-text: #ffffff;
  --nav-accent: #38bdf8;
  --nav-hover: rgba(255, 255, 255, 0.08);
}

/* ===== BODY ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafc;
}

/* ===== NAVBAR ===== */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--nav-text);
  text-decoration: none;
}

.nav-logo span {
  color: var(--nav-accent);
}

/* ===== MENU ===== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--nav-text);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: var(--nav-accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ===== CTA BUTTON ===== */
.nav-btn {
  padding: 8px 18px;
  background: var(--nav-accent);
  color: #000;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-btn:hover {
  opacity: 0.9;
}

/* ===== HAMBURGER ===== */
#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--nav-text);
  border-radius: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  #nav-toggle:checked ~ .nav-menu {
    display: flex;
  }

  .nav-btn {
    margin-top: 10px;
  }
}

/* ===== HERO SECTION ===== */
.gch-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 80px 20px;
}

.gch-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Badge */
.gch-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Heading */
.gch-hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Subtitle */
.gch-subtitle {
  font-size: 17px;
  color: #cbd5f5;
  margin-bottom: 22px;
}

/* Features */
.gch-features {
  list-style: none;
  margin-bottom: 28px;
}

.gch-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Buttons */
.gch-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.gch-btn-primary {
  background: #38bdf8;
  color: #020617;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.gch-btn-primary:hover {
  opacity: 0.9;
}

.gch-btn-secondary {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.gch-btn-secondary:hover {
  background: rgba(56, 189, 248, 0.1);
}

/* Disclaimer */
.gch-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  max-width: 520px;
}

/* Image */
.gch-hero-image img {
  max-width: 70%;
  animation: float 4s ease-in-out infinite;
}

/* Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gch-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gch-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gch-hero-content h1 {
    font-size: 32px;
  }
}

/* ===== PRODUCTS SECTION ===== */
.gch-products {
  padding: 80px 20px;
  background: #f8fafc;
}

.gch-products-container {
  max-width: 1200px;
  margin: auto;
}

.gch-products-header {
  text-align: center;
  margin-bottom: 50px;
}

.gch-products-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gch-products-header p {
  color: #64748b;
}

/* Grid */
.gch-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Card */
.gch-product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: 0.3s ease;
}

.gch-product-card:hover {
  transform: translateY(-6px);
}

/* Tags */
.gch-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #22c55e;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 12px;
}

.gch-tag.new {
  background: #3b82f6;
}

/* Image */
.gch-product-card img {
  width: 70px;
  margin-bottom: 16px;
}

/* Content */
.gch-product-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.gch-product-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.gch-product-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.gch-product-card ul li {
  font-size: 13px;
  margin-bottom: 6px;
}

/* Button */
.gch-buy-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: #0f172a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.gch-buy-btn:hover {
  background: #38bdf8;
  color: #020617;
}

/* Disclaimer */
.gch-products-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 40px;
}

/* ===== FAQ SECTION ===== */
.gch-faq {
  padding: 80px 20px;
  background: #ffffff;
}

.gch-faq-container {
  max-width: 900px;
  margin: auto;
}

.gch-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.gch-faq-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.gch-faq-header p {
  color: #64748b;
}

/* FAQ Item */
.gch-faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.gch-faq-question {
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.gch-faq-question span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Answer */
.gch-faq-answer {
  padding: 0 18px 18px;
  display: none;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Active */
.gch-faq-item.active .gch-faq-answer {
  display: block;
}

.gch-faq-item.active .gch-faq-question span {
  transform: rotate(45deg);
}

/* ===== TESTIMONIALS ===== */
.gch-testimonials {
  padding: 80px 20px;
  background: #f1f5f9;
}

.gch-testimonials-container {
  max-width: 1100px;
  margin: auto;
}

.gch-testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.gch-testimonials-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.gch-testimonials-header p {
  color: #64748b;
}

/* Grid */
.gch-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Card */
.gch-testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.gch-testimonial-card:hover {
  transform: translateY(-6px);
}

/* Rating */
.gch-rating {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 12px;
}

/* Review */
.gch-review {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* User */
.gch-user strong {
  display: block;
  font-size: 14px;
}

.gch-user span {
  font-size: 13px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 600px) {
  .gch-testimonials-header h2 {
    font-size: 28px;
  }
}

/* ===== FOOTER ===== */
.gch-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 70px 20px 30px;
  font-size: 14px;
}

.gch-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Columns */
.gch-footer-col h4 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 16px;
}

.gch-footer-col p {
  line-height: 1.6;
}

/* Logo */
.gch-footer-logo {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.gch-footer-logo span {
  color: #38bdf8;
}

/* Lists */
.gch-footer-col ul {
  list-style: none;
}

.gch-footer-col ul li {
  margin-bottom: 10px;
}

.gch-footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s ease;
}

.gch-footer-col ul li a:hover {
  color: #38bdf8;
}

/* Links */
.gch-footer a {
  color: #38bdf8;
  text-decoration: none;
}

/* Badge */
.gch-footer-badge {
  margin-top: 10px;
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* Bottom */
.gch-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
}

.gch-footer-bottom p {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.gch-footer-disclaimer {
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .gch-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gch-footer-container {
    grid-template-columns: 1fr;
  }

  .gch-footer {
    text-align: center;
  }
}
/* ===== ATTRACTIVE DISCLAIMER ===== */
.gch-disclaimer-highlight {
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.gch-disclaimer-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border-left: 4px solid #38bdf8;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.gch-disclaimer-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.gch-disclaimer-box p {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
}

.gch-disclaimer-box strong {
  color: #0f172a;
}

/* Responsive */
@media (max-width: 600px) {
  .gch-disclaimer-box {
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 4px solid #38bdf8;
  }
}

/* ===== PRODUCT HERO ===== */
.gch-product-hero {
  background: #f8fafc;
  padding: 90px 20px;
}

.gch-product-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.gch-product-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  text-align: center;
}

.gch-product-card img {
  width: 260px;
}

.gch-app-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.gch-app-icons span {
  width: 42px;
  height: 42px;
  background: #e2e8f0;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT */
.gch-use-badge {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

.gch-product-info h1 {
  font-size: 38px;
  margin-bottom: 12px;
  color: #0f172a;
}

.gch-rating {
  font-size: 15px;
  margin-bottom: 16px;
}

.gch-rating span {
  color: #64748b;
}

.gch-short-desc {
  color: #475569;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* PRICE */
.gch-price-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.gch-old-price {
  text-decoration: line-through;
  color: #94a3b8;
}

.gch-new-price {
  font-size: 36px;
  font-weight: 800;
  color: #2563eb;
}

.gch-license {
  color: #16a34a;
  font-size: 14px;
}

/* FEATURES */
.gch-product-features {
  list-style: none;
  margin-bottom: 26px;
}

.gch-product-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* CTA */
.gch-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gch-buy-now {
  background: #2563eb;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.gch-buy-now:hover {
  background: #1d4ed8;
}

.gch-secure {
  font-size: 13px;
  color: #64748b;
}

/* DISCLAIMER */
.gch-product-disclaimer {
  margin-top: 18px;
  font-size: 12px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gch-product-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gch-price-box,
  .gch-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== MICROSOFT 365 PRODUCT DESCRIPTION ===== */
.m365-desc-section {
  padding: 70px 20px;
  background: #f8fafc;
}

.m365-desc-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.m365-desc-container h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 20px;
}

.m365-desc-container h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 12px;
  color: #1e293b;
}

.m365-desc-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.m365-intro {
  font-size: 18px;
  color: #334155;
}

.m365-note {
  margin-top: 40px;
  padding: 18px 22px;
  background: #f1f5f9;
  border-left: 4px solid #3b82f6;
  border-radius: 10px;
  font-size: 14px;
  color: #334155;
}

/* Responsive */
@media (max-width: 768px) {
  .m365-desc-container {
    padding: 30px;
  }

  .m365-desc-container h2 {
    font-size: 26px;
  }

  .m365-desc-container h3 {
    font-size: 20px;
  }
}

.gch-about-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

.gch-about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.gch-about-content h2 {
  font-size: 36px;
  color: #0f172a;
  margin: 15px 0;
}

.gch-about-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.gch-about-intro {
  font-size: 18px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 15px;
}

.gch-about-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
}

.gch-about-features {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.gch-about-features li {
  margin-bottom: 10px;
  color: #0f172a;
  font-weight: 500;
}

/* RIGHT CARD */
.gch-about-visual {
  display: flex;
  justify-content: center;
}

.gch-about-card {
  background: #0f172a;
  color: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.gch-about-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.gch-about-card p {
  color: #cbd5f5;
  line-height: 1.6;
}

.gch-about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.gch-about-stats div {
  text-align: center;
}

.gch-about-stats strong {
  font-size: 26px;
  display: block;
  color: #38bdf8;
}

.gch-about-stats span {
  font-size: 14px;
  color: #e2e8f0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gch-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gch-about-content h2 {
    font-size: 30px;
  }

  .gch-about-card {
    padding: 30px;
  }
}

.gch-terms-section {
  padding: 80px 20px;
  background-color: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

.gch-terms-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.gch-terms-header {
  text-align: center;
  margin-bottom: 40px;
}

.gch-terms-header h1 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 10px;
}

.gch-terms-header p {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

/* CONTENT */
.gch-terms-content h2 {
  font-size: 22px;
  color: #0f172a;
  margin-top: 30px;
  margin-bottom: 10px;
}

.gch-terms-content p {
  color: #334155;
  line-height: 1.7;
  font-size: 15.5px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gch-terms-container {
    padding: 30px 20px;
  }

  .gch-terms-header h1 {
    font-size: 28px;
  }

  .gch-terms-content h2 {
    font-size: 20px;
  }
}

.gch-privacy-section {
  padding: 80px 20px;
  background-color: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

.gch-privacy-container {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.gch-privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.gch-privacy-header h1 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 10px;
}

.gch-privacy-header p {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

/* CONTENT */
.gch-privacy-content h2 {
  font-size: 22px;
  color: #0f172a;
  margin-top: 30px;
  margin-bottom: 10px;
}

.gch-privacy-content p {
  color: #334155;
  line-height: 1.7;
  font-size: 15.5px;
  margin-bottom: 10px;
}

.gch-privacy-list {
  margin: 10px 0 10px 20px;
  color: #334155;
}

.gch-privacy-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gch-privacy-container {
    padding: 30px 20px;
  }

  .gch-privacy-header h1 {
    font-size: 28px;
  }

  .gch-privacy-content h2 {
    font-size: 20px;
  }
}


.gch-contact-section {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

.gch-contact-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.gch-contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.gch-contact-header h1 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 10px;
}

.gch-contact-header p {
  color: #475569;
  font-size: 16px;
}

/* CONTENT GRID */
.gch-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* INFO */
.gch-contact-info h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0f172a;
}

.gch-contact-info p {
  color: #334155;
  line-height: 1.7;
  margin-bottom: 20px;
}

.gch-contact-list {
  list-style: none;
  padding: 0;
}

.gch-contact-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
}

/* FORM */
.gch-contact-form-box {
  background: #f9fafb;
  padding: 30px;
  border-radius: 14px;
}

.gch-form-group {
  margin-bottom: 18px;
}

.gch-form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #0f172a;
}

.gch-form-group input,
.gch-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  outline: none;
}

.gch-form-group input:focus,
.gch-form-group textarea:focus {
  border-color: #2563eb;
}

.gch-submit-btn {
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

.gch-submit-btn:hover {
  background: #1e40af;
}

.gch-form-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 12px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gch-contact-container {
    padding: 30px 20px;
  }

  .gch-contact-content {
    grid-template-columns: 1fr;
  }

  .gch-contact-header h1 {
    font-size: 28px;
  }
}

