* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #76B900; --green-light: #8DD100; --green-dark: #5A9000;
  --dark: #111111; --dark2: #1A1A1A; --dark3: #222222;
  --white: #FFFFFF; --gray: #999999;
}
body, html { font-family: 'Inter', sans-serif; color: var(--white); background: var(--dark); scroll-behavior: smooth; }

.gc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px; background: rgba(17,17,17,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(118,185,0,0.15);
}
.gc-nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.gc-nav-logo img { height: 40px; border-radius: 8px; }
.gc-nav-logo span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: var(--green); letter-spacing: 2px; }
.gc-nav-links { display: flex; gap: 32px; align-items: center; }
.gc-nav-anchor-links { display: flex; gap: 32px; align-items: center; }
.gc-nav-links a { color: var(--gray); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; letter-spacing: 0.5px; cursor: pointer; }
.gc-nav-links a:hover { color: var(--green); }
.gc-lang-btn {
  background: transparent; border: 1px solid var(--green); color: var(--green);
  padding: 6px 16px; border-radius: 6px; cursor: pointer; font-size: 13px;
  font-weight: 600; font-family: 'Space Grotesk', sans-serif; letter-spacing: 1px; transition: all 0.2s;
}
.gc-lang-btn:hover { background: var(--green); color: var(--dark); }

.gc-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 30px; height: 24px; background: none; border: none; cursor: pointer; padding: 0;
}
.gc-hamburger span {
  display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.gc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gc-hamburger.open span:nth-child(2) { opacity: 0; }
.gc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.gc-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 80px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(118,185,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(118,185,0,0.04) 0%, transparent 50%), var(--dark);
}
.gc-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(118,185,0,0.06) 0%, transparent 70%);
}
.gc-hero-content { position: relative; z-index: 1; max-width: 800px; }
.gc-hero-tagline { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 4px; margin-bottom: 24px; }
.gc-hero h1 {
  font-family: 'Space Grotesk', sans-serif; font-size: 72px; font-weight: 700;
  line-height: 1.05; margin-bottom: 24px; white-space: pre-line;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
/* Inkjet-printer reveal: clips the title itself in discrete top-to-bottom
   steps. No cloning involved, so there is no risk of the clip stepping
   through a copy that wraps its text differently than the real element. */
#heroTitle {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}
@keyframes gc-print-reveal {
  from { clip-path: inset(0 0 100% 0); -webkit-clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
}

.gc-hero-sub { font-size: 18px; color: var(--gray); margin-bottom: 48px; line-height: 1.6; }
.gc-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.gc-btn-primary {
  background: var(--green); color: var(--dark); border: none; padding: 16px 36px;
  border-radius: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 15px; cursor: pointer; letter-spacing: 0.5px; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.gc-btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(118,185,0,0.3); }
.gc-btn-secondary {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 36px; border-radius: 10px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 500; font-size: 15px; cursor: pointer; transition: all 0.2s;
}
.gc-btn-secondary:hover { border-color: var(--green); color: var(--green); }

.gc-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.gc-section-dark { background: var(--dark2); }
.gc-section-inner { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.gc-section-title { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.gc-section-sub { color: var(--gray); font-size: 16px; margin-bottom: 60px; }
.gc-green { color: var(--green); }

.gc-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gc-flip-wrapper { perspective: 1000px; height: 220px; cursor: pointer; }
.gc-flip-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.gc-flip-inner.flipped { transform: rotateY(180deg); }
.gc-flip-front, .gc-flip-back {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 16px; overflow: hidden;
}
.gc-flip-front {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 28px; display: flex; flex-direction: column; justify-content: center;
  transition: border-color 0.3s;
}
.gc-flip-wrapper:hover .gc-flip-front { border-color: rgba(118,185,0,0.3); }
.gc-flip-back {
  transform: rotateY(180deg);
  background-size: contain; background-position: center; background-repeat: no-repeat;
  background-color: var(--dark3);
}
.gc-flip-hint {
  position: absolute; top: 12px; right: 16px;
  font-size: 14px; color: rgba(118,185,0,0.4); transition: color 0.3s;
}
.gc-flip-wrapper:hover .gc-flip-hint { color: var(--green); }
.gc-service-icon { font-size: 32px; margin-bottom: 12px; display: block; transform-origin: center; }
.gc-flip-wrapper:hover .gc-service-icon,
.gc-flip-wrapper:focus-within .gc-service-icon {
  animation: gc-icon-pulse 0.6s ease;
}
@keyframes gc-icon-pulse {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.25) rotate(-8deg); }
  60% { transform: scale(0.95) rotate(6deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.gc-service-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.gc-service-desc { color: var(--gray); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.gc-service-tag {
  display: inline-block; background: rgba(118,185,0,0.12); color: var(--green);
  padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.5px;
}

.gc-order-container { background: var(--dark3); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; }
.gc-order-steps { display: flex; border-bottom: 1px solid rgba(255,255,255,0.06); }
.gc-order-step {
  flex: 1; padding: 20px; text-align: center; font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--gray); position: relative;
  transition: color 0.3s; cursor: pointer;
}
.gc-order-step.active { color: var(--green); }
.gc-order-step.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); }
.gc-order-step.done { color: rgba(118,185,0,0.5); }
.gc-step-num {
  display: inline-flex; width: 24px; height: 24px; border-radius: 50%;
  align-items: center; justify-content: center; font-size: 12px;
  border: 1px solid currentColor; margin-right: 8px;
}
.gc-order-step.active .gc-step-num { background: var(--green); color: var(--dark); border-color: var(--green); }
.gc-order-step.done .gc-step-num { background: rgba(118,185,0,0.3); border-color: transparent; }
.gc-order-body { padding: 48px; min-height: 350px; }
.gc-order-step-panel { display: none; }
.gc-order-step-panel.active { display: block; }

.gc-upload-zone {
  border: 2px dashed rgba(118,185,0,0.3); border-radius: 16px;
  padding: 60px; text-align: center; cursor: pointer; transition: all 0.3s; background: rgba(118,185,0,0.02);
}
.gc-upload-zone:hover { border-color: var(--green); background: rgba(118,185,0,0.05); }
.gc-upload-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.gc-upload-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.gc-upload-desc { color: var(--gray); font-size: 14px; }
.gc-upload-file {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(118,185,0,0.1); padding: 10px 20px; border-radius: 10px;
  color: var(--green); font-size: 14px; font-weight: 500;
}

.gc-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.gc-option-group label {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  font-weight: 600; color: var(--green); margin-bottom: 10px; letter-spacing: 0.5px;
}
.gc-option-select {
  width: 100%; padding: 12px 16px; background: var(--dark); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--white); font-size: 14px; font-family: 'Inter', sans-serif;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.gc-option-select:focus { outline: none; border-color: var(--green); }
.gc-option-select option { background: var(--dark); }
.gc-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.gc-radio {
  padding: 10px 20px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  cursor: pointer; font-size: 14px; transition: all 0.2s; color: var(--gray);
}
.gc-radio.selected { border-color: var(--green); color: var(--green); background: rgba(118,185,0,0.08); }
.gc-radio:hover { border-color: rgba(118,185,0,0.5); }
.gc-copies-input {
  width: 100px; padding: 12px 16px; background: var(--dark); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--white); font-size: 16px; font-family: 'Inter', sans-serif; text-align: center;
}
.gc-copies-input:focus { outline: none; border-color: var(--green); }
.gc-toggle-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.gc-toggle {
  width: 48px; height: 26px; border-radius: 13px; cursor: pointer;
  background: rgba(255,255,255,0.1); position: relative; transition: background 0.3s;
}
.gc-toggle.on { background: var(--green); }
.gc-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: white; transition: transform 0.3s;
}
.gc-toggle.on::after { transform: translateX(22px); }

.gc-review-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px;
}
.gc-review-label { color: var(--gray); }
.gc-review-value { font-weight: 500; }
.gc-review-note {
  margin-top: 24px; padding: 16px 20px; background: rgba(118,185,0,0.08);
  border-radius: 10px; color: var(--gray); font-size: 14px; line-height: 1.6;
  border-left: 3px solid var(--green);
}
.gc-review-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; margin-bottom: 24px; }
.gc-done-container { text-align: center; padding: 40px 0; }
.gc-done-icon { font-size: 64px; margin-bottom: 24px; }
.gc-done-title { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.gc-done-msg { color: var(--gray); font-size: 16px; line-height: 1.6; }
.gc-order-nav {
  display: flex; justify-content: space-between; margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gc-btn-back {
  background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  padding: 12px 28px; border-radius: 10px; font-size: 14px; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; transition: all 0.2s;
}
.gc-btn-back:hover { border-color: var(--white); }
.gc-btn-next {
  background: var(--green); color: var(--dark); border: none;
  padding: 12px 28px; border-radius: 10px; font-size: 14px; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; transition: all 0.2s;
}
.gc-btn-next:hover { background: var(--green-light); }

.gc-contact-grid { display: grid; grid-template-columns: 1fr; max-width: 560px; }
.gc-contact-methods { display: flex; flex-direction: column; gap: 20px; }
.gc-contact-card {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: var(--dark3); border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: all 0.3s; text-decoration: none; color: var(--white);
}
.gc-contact-card:hover { border-color: rgba(118,185,0,0.3); transform: translateX(4px); }
.gc-contact-icon { font-size: 28px; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; flex-shrink: 0; }
.gc-contact-label { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; }
.gc-contact-detail { color: var(--gray); font-size: 14px; margin-top: 2px; }

.gc-pricing-page { padding: 140px 40px 100px; max-width: 900px; margin: 0 auto; display: none; }
.gc-pricing-page.active { display: block; }
.gc-pricing-back {
  display: inline-block; color: var(--gray); text-decoration: none; font-size: 14px;
  margin-bottom: 24px; transition: color 0.2s; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.gc-pricing-back:hover { color: var(--green); }
.gc-pricing-table { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.gc-pricing-row {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  padding: 24px 28px;
}
.gc-pricing-row-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.gc-pricing-icon { font-size: 26px; }
.gc-pricing-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; }
.gc-pricing-unit { color: var(--gray); font-size: 13px; margin-left: auto; }
.gc-pricing-tiers { display: flex; flex-direction: column; }
.gc-pricing-tier {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 12px 4px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gc-pricing-tier:last-child { border-bottom: none; }
.gc-pricing-tier-price { color: var(--green); font-weight: 600; white-space: nowrap; }

.gc-dp-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-right: auto; }
.gc-dp-table th, .gc-dp-table td { padding: 10px 12px; text-align: left; }
.gc-dp-table thead th {
  background: var(--green-dark); color: var(--dark); font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 13px; text-align: left;
}
.gc-dp-corner { background: var(--dark2) !important; color: var(--gray) !important; }
.gc-dp-size-sep td {
  background: rgba(245,166,35,0.16); color: #F5A623; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.5px; padding: 6px 12px;
}
.gc-dp-qty-cell { color: var(--green); font-size: 12px; background: var(--dark2); }
.gc-dp-price-cell { background: var(--dark3); font-weight: 600; }
.gc-dp-bw-row td { border-top: 4px solid #444; }
.gc-dp-bw-label {
  background: #444; color: var(--white); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.gc-dp-bw-item { background: var(--dark3); color: var(--gray); }
.gc-dp-bw-item b { color: var(--green); }

.gc-card-groups { display: flex; gap: 20px; flex-wrap: wrap; }
.gc-card-group { flex: 1; min-width: 220px; }
.gc-card-group-label {
  background: var(--green-dark); color: var(--dark); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 15px; padding: 8px 12px; border-radius: 8px 8px 0 0;
}
.gc-card-group .gc-dp-table thead th:first-child, .gc-card-group .gc-dp-table tbody td:first-child {
  border-radius: 0;
}

.gc-pricing-note {
  margin-top: 40px; padding: 24px; text-align: center; border-radius: 14px;
  background: var(--dark3); border: 1px dashed rgba(118,185,0,0.3);
}
.gc-pricing-note p { color: var(--gray); margin-bottom: 16px; }

.gc-hours-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 20px 40px; background: var(--green); color: var(--dark);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px;
  flex-wrap: wrap;
}
.gc-hours-divider { opacity: 0.4; }

.gc-wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.gc-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

.gc-footer {
  text-align: center; padding: 40px; color: var(--gray); font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.gc-home-page.hidden, .gc-hidden { display: none !important; }

@media (max-width: 768px) {
  .gc-nav { padding: 12px 20px; }
  .gc-nav-links { gap: 12px; }
  .gc-hamburger { display: flex; }
  .gc-nav-anchor-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(17,17,17,0.98); border-bottom: 1px solid rgba(118,185,0,0.15);
    padding: 8px 20px 16px;
  }
  .gc-nav-anchor-links.open { display: flex; }
  .gc-nav-anchor-links a { padding: 14px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .gc-nav-anchor-links a:last-child { border-bottom: none; }
  .gc-hero { padding: 100px 24px 60px; }
  .gc-hero h1 { font-size: 40px; }
  .gc-section, .gc-section-inner { padding: 60px 24px; }
  .gc-services-grid { grid-template-columns: 1fr; }
  .gc-flip-wrapper { height: 200px; }
  .gc-options-grid { grid-template-columns: 1fr; }
  .gc-order-body { padding: 24px; }
  .gc-order-step span.gc-step-label { display: none; }
  .gc-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gc-section-title { font-size: 28px; }
  .gc-hours-bar { font-size: 12px; gap: 8px; padding: 16px 20px; }

  .gc-pricing-page { padding: 120px 12px 60px; }
  .gc-pricing-row { padding: 16px 10px; }
  .gc-dp-table { font-size: 10.5px; table-layout: fixed; }
  .gc-dp-table th, .gc-dp-table td { padding: 6px 4px; }
  .gc-dp-corner { width: 20%; }
  .gc-dp-size-sep td { font-size: 11px; padding: 4px 6px; }
  .gc-card-groups { gap: 10px; }
  .gc-card-group .gc-dp-table { font-size: 10.5px; }
}
