.gw-main { --gw-blue: #4285f4; --gw-red: #db4437; --gw-yellow: #f4b400; --gw-green: #0f9d58; --gw-text-dark: #202124; --gw-text-gray: #5f6368; --gw-bg-light: #f8f9fa; --gw-bg-white: #ffffff; --gw-radius: 12px; --gw-shadow: 0 4px 12px rgba(60, 64, 67, 0.15); --gw-shadow-hover: 0 8px 24px rgba(60, 64, 67, 0.2);

  font-family: "Firago", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--gw-text-dark);
  line-height: 1.6;
  background-color: var(--gw-bg-white);
  box-sizing: border-box;
  overflow-x: hidden;
}

.gw-main *, .gw-main *::before, .gw-main *::after {
  box-sizing: inherit;
}

/* --- LAYOUT UTILS --- */
.gw-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.gw-section {
  padding: 80px 0;
}

.gw-section--light {
  background-color: var(--gw-bg-light);
}

.gw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gw-grid--3-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- TYPOGRAPHY --- */
.gw-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gw-h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gw-text-dark);
}

.gw-h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.gw-text-lead {
  font-size: 1.125rem;
  color: var(--gw-text-gray);
  margin-bottom: 32px;
  max-width: 500px;
}

.gw-text-p {
  color: var(--gw-text-gray);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* --- BUTTONS --- */
.gw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.gw-btn--primary {
  background-color: var(--gw-blue);
  color: #fff;
}

.gw-btn--primary:hover {
  background-color: #3367d6; /* Darker blue */
  box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.gw-btn--secondary {
  background-color: transparent;
  color: var(--gw-blue);
  border-color: #dadce0;
}

.gw-btn--secondary:hover {
  background-color: rgba(66, 133, 244, 0.04);
  border-color: var(--gw-blue);
}

/* --- HERO SECTION --- */
.gw-hero {
  padding: 100px 0;
}

.gw-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gw-text-gray);
  margin-bottom: 16px;
  background: #f1f3f4;
  padding: 6px 12px;
  border-radius: 4px;
}

.gw-hero__logo span:nth-child(1) { color: var(--gw-blue); }
.gw-hero__logo span:nth-child(2) { color: var(--gw-red); }
.gw-hero__logo span:nth-child(3) { color: var(--gw-yellow); }
.gw-hero__logo span:nth-child(4) { color: var(--gw-blue); }
.gw-hero__logo span:nth-child(5) { color: var(--gw-green); }
.gw-hero__logo span:nth-child(6) { color: var(--gw-red); }

.gw-img-responsive {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
}

/* --- PRICING CARD --- */
.gw-pricing-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.gw-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--gw-shadow);
  max-width: 500px;
  width: 100%;
  border-top: 6px solid var(--gw-blue);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.gw-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gw-shadow-hover);
}

.gw-price-block {
  margin: 24px 0;
}

.gw-price-main {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gw-text-dark);
}

.gw-price-old {
  font-size: 1.25rem;
  color: var(--gw-text-gray);
  text-decoration: line-through;
  margin-left: 10px;
}

.gw-price-meta {
  display: block;
  font-size: 0.875rem;
  color: var(--gw-text-gray);
  margin-top: -5px;
}

.gw-card-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
}

.gw-features-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gw-features-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--gw-text-dark);
  font-size: 0.95rem;
}

.gw-features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gw-green);
  font-weight: bold;
}

/* --- FEATURES SECTIONS --- */
.gw-feature-text {
  padding-right: 20px;
}

.gw-feature-img-wrapper {
    position: relative;
}

.gw-feature-img-wrapper::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(66, 133, 244, 0.1);
    z-index: -1;
    border-radius: 50%;
}

/* --- GUARANTEE --- */
.gw-guarantee {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* --- WHY US / PROCESS --- */
.gw-info-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--gw-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  height: 100%;
}

.gw-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gw-blue);
}

/* --- FAQ --- */
.gw-faq {
  max-width: 800px;
  margin: 0 auto;
}

.gw-accordion__item {
  border-bottom: 1px solid #dadce0;
}

.gw-accordion__btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gw-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.gw-accordion__btn:hover {
  color: var(--gw-blue);
}

.gw-accordion__icon {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gw-text-gray);
}

.gw-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--gw-text-gray);
  line-height: 1.6;
}

.gw-accordion__content p {
    margin: 0 0 20px 0;
}

.gw-accordion__item.active .gw-accordion__content {
  max-height: 500px; /* arbitrary large number */
}

.gw-accordion__item.active .gw-accordion__icon {
  transform: rotate(45deg);
  color: var(--gw-blue);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .gw-h1 { font-size: 2.5rem; }
  .gw-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .gw-h1 { font-size: 2rem; }
  .gw-h2 { font-size: 1.75rem; }
  .gw-grid, .gw-grid--3-col {
    grid-template-columns: 1fr;
  }
  .gw-hero { padding: 40px 0; }
  .gw-order-mobile-2 { order: 2; } /* Useful for text/img swapping */
  .gw-order-mobile-1 { order: 1; }
  .gw-card-actions { flex-direction: column; }
}