/* GST Registration — IndiaFilings-style landing */
.gsr-page {
  --gsr-primary: #2563eb;
  --gsr-primary-dark: #1d4ed8;
  --gsr-accent: #3b82f6;
  --gsr-ink: #0f172a;
  --gsr-muted: #64748b;
  --gsr-border: #e2e8f0;
  --gsr-bg: #e8f0ff;
  --gsr-card: #fff;
  background: var(--gsr-bg);
}

.gsr-page .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.gsr-page .section {
  padding: 56px 0;
}

.gsr-page .section--alt {
  background: #fff;
}

/* Breadcrumb */
.gsr-bc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.gsr-bc a {
  color: #a7f3d0;
  text-decoration: none;
}

.gsr-bc a:hover {
  text-decoration: underline;
}

.gsr-bc span {
  margin: 0 6px;
  opacity: 0.6;
}

/* Hero */
.gsr-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 120%);
  color: #fff;
  padding: 40px 0 56px;
}

.gsr-hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.gsr-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin: 0 0 10px;
}

.gsr-hero__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.gsr-hero__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0 0 20px;
  max-width: 36rem;
}

.gsr-hero__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 22px;
}

.gsr-hero__price-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

.gsr-hero__price-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.gsr-hero__price-link {
  font-size: 0.9rem;
  color: #6ee7b7;
  text-decoration: underline;
}

.gsr-hero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.gsr-hero__bullets li {
  font-size: 0.88rem;
  color: #e2e8f0;
  padding-left: 22px;
  position: relative;
}

.gsr-hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

/* Lead card */
.gsr-hero__card {
  background: var(--gsr-card);
  border-radius: 16px;
  padding: 28px 24px;
  color: var(--gsr-ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
}

.gsr-hero__card-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gsr-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 8px;
}

.gsr-hero__card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--gsr-ink);
}

.gsr-hero__card-sub {
  font-size: 0.88rem;
  color: var(--gsr-muted);
  margin: 0 0 18px;
  line-height: 1.5;
}

.gsr-field {
  margin-bottom: 14px;
}

.gsr-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #334155;
}

.gsr-req { color: #dc2626; }
.gsr-opt { color: var(--gsr-muted); font-weight: 400; }

.gsr-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gsr-border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.gsr-field input:focus {
  outline: none;
  border-color: var(--gsr-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.gsr-form-error {
  font-size: 0.85rem;
  color: #dc2626;
  margin: 0 0 10px;
}

.gsr-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

/* Buttons */
.gsr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.gsr-btn--block { width: 100%; }

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

.gsr-btn--primary:hover {
  background: var(--gsr-primary-dark);
}

.gsr-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.gsr-btn--whatsapp:hover {
  background: #1ebe57;
}

.gsr-btn--outline {
  background: #fff;
  color: var(--gsr-primary);
  border: 2px solid var(--gsr-primary);
}

.gsr-btn--outline:hover {
  background: #eff6ff;
}

.gsr-btn--light {
  background: #fff;
  color: var(--gsr-primary);
}

.gsr-btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.gsr-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Trust bar */
.gsr-trust {
  background: #fff;
  border-bottom: 1px solid var(--gsr-border);
  padding: 20px 0;
}

.gsr-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.gsr-trust__item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gsr-ink);
}

.gsr-trust__item span {
  font-size: 0.82rem;
  color: var(--gsr-muted);
}

/* Section head */
.gsr-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.gsr-section-head h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--gsr-ink);
  margin: 0 0 10px;
}

.gsr-section-head p {
  margin: 0;
  color: var(--gsr-muted);
  line-height: 1.6;
}

/* Pricing */
.gsr-pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gsr-muted);
  max-width: 720px;
  margin: -16px auto 28px;
  padding: 12px 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
}

.gsr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.gsr-plan {
  background: var(--gsr-card);
  border: 1px solid var(--gsr-border);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gsr-plan:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.gsr-plan--popular {
  border-color: var(--gsr-accent);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.12);
}

.gsr-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gsr-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

.gsr-plan__name {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--gsr-ink);
}

.gsr-plan__summary {
  font-size: 0.88rem;
  color: var(--gsr-muted);
  line-height: 1.5;
  margin: 0 0 16px;
  flex-grow: 0;
}

.gsr-plan__price {
  margin-bottom: 16px;
}

.gsr-plan__from {
  display: block;
  font-size: 0.78rem;
  color: var(--gsr-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gsr-plan__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gsr-accent);
}

.gsr-plan__includes-title {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #334155;
}

.gsr-plan__includes {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex-grow: 1;
}

.gsr-plan__includes li {
  font-size: 0.86rem;
  color: #475569;
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}

.gsr-plan__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.gsr-plan.is-selected {
  outline: 3px solid var(--gsr-primary);
  outline-offset: 2px;
}

/* Process */
.gsr-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gsr-process__step {
  background: var(--gsr-bg);
  border: 1px solid var(--gsr-border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
}

.gsr-process__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gsr-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsr-process__step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--gsr-ink);
}

.gsr-process__step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gsr-muted);
  line-height: 1.5;
}

/* Content grid */
.gsr-content__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.gsr-article h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gsr-ink);
  margin: 0 0 12px;
}

.gsr-article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gsr-ink);
  margin: 28px 0 12px;
}

.gsr-article p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 14px;
}

.gsr-check-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.gsr-check-list li {
  font-size: 0.92rem;
  color: #475569;
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}

.gsr-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.gsr-check-list--compact li {
  font-size: 0.85rem;
  padding: 4px 0 4px 20px;
}

/* Tables */
.gsr-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border: 1px solid var(--gsr-border);
  border-radius: 12px;
}

.gsr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.gsr-table th,
.gsr-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gsr-border);
}

.gsr-table th {
  background: #f1f5f9;
  font-weight: 700;
  color: var(--gsr-ink);
}

.gsr-table tr:last-child td {
  border-bottom: none;
}

.gsr-table__highlight td {
  font-weight: 700;
  background: #eff6ff;
}

.gsr-yes { color: #16a34a; font-weight: 700; }
.gsr-no { color: #dc2626; font-weight: 700; }

/* Sidebar */
.gsr-sidebar-card {
  background: var(--gsr-card);
  border: 1px solid var(--gsr-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}

.gsr-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gsr-ink);
}

.gsr-sidebar-card p {
  font-size: 0.88rem;
  color: var(--gsr-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}

.gsr-sidebar-card--cta {
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border-color: #c7d2fe;
}

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

.gsr-faq__item {
  background: #fff;
  border: 1px solid var(--gsr-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.gsr-faq__item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gsr-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gsr-faq__item summary::-webkit-details-marker { display: none; }

.gsr-faq__item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--gsr-muted);
  font-weight: 400;
}

.gsr-faq__item[open] summary::after {
  content: "−";
}

.gsr-faq__item p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
}

/* CTA banner */
.gsr-cta-banner {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  padding: 48px 0;
}

.gsr-cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gsr-cta-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.gsr-cta-banner p {
  margin: 0;
  color: #cbd5e1;
}

.gsr-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .gsr-hero__grid {
    grid-template-columns: 1fr;
  }

  .gsr-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .gsr-process__steps {
    grid-template-columns: 1fr 1fr;
  }

  .gsr-content__grid {
    grid-template-columns: 1fr;
  }

  .gsr-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gsr-hero__bullets {
    grid-template-columns: 1fr;
  }

  .gsr-process__steps {
    grid-template-columns: 1fr;
  }

  .gsr-trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gsr-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .gsr-cta-banner__actions {
    justify-content: center;
    width: 100%;
  }
}

/* Hero — IndiaFilings top layout */
.gsr-hero--top {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(219, 234, 254, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 25%, rgba(219, 234, 254, 0.6) 0%, transparent 50%),
    linear-gradient(180deg, #f4f6ff 0%, #ffffff 45%, #e8f0ff 100%);
  color: var(--gsr-ink);
  padding: 36px 0 48px;
}

.gsr-hero__wrap { max-width: 920px; margin: 0 auto; }
.gsr-hero__head { text-align: center; margin-bottom: 28px; }

.gsr-hero__page-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #334155;
  letter-spacing: -0.02em;
}

.gsr-highlight {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gsr-hero__page-sub {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gsr-muted);
  margin: 0 auto 18px;
  max-width: 620px;
}

.gsr-hero__price-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 10px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #fff;
  font-size: 0.88rem;
  color: #475569;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.gsr-hero__pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
}

.gsr-hero__pill-text strong { color: var(--gsr-ink); font-weight: 800; }
.gsr-hero__pill-link { color: #2563eb; font-weight: 600; text-decoration: none; }
.gsr-hero__pill-link:hover { text-decoration: underline; }

.gsr-hero__card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8edf5;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.gsr-hero__card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gsr-hero__card-left {
  padding: 32px 28px 28px;
  border-right: 1px solid #f1f5f9;
}

.gsr-hero__card-right {
  padding: 32px 28px 28px;
  background: #fafbfc;
}

.gsr-hero__card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--gsr-ink);
}

.gsr-hero__card-sub {
  font-size: 0.88rem;
  color: var(--gsr-muted);
  margin: 0 0 22px;
  line-height: 1.55;
}

.gsr-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gsr-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #475569;
  padding: 9px 0;
  line-height: 1.45;
}

.gsr-feature-list__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.gsr-hero__card-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
}

.gsr-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-right: 1px solid #e8edf5;
  font-size: 0.78rem;
  color: var(--gsr-muted);
}

.gsr-hero__trust-item:last-child { border-right: none; }
.gsr-hero__trust-item strong { display: block; font-size: 0.9rem; color: var(--gsr-ink); }
.gsr-hero__trust-icon { font-size: 1.1rem; flex-shrink: 0; }
.gsr-stars { color: #f59e0b; font-size: 0.75rem; }

.gsr-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--gsr-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.gsr-phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #e8f0ff;
  border-right: 1px solid var(--gsr-border);
  font-size: 0.88rem;
  color: #475569;
  white-space: nowrap;
}

.gsr-phone-wrap input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
}

.gsr-btn--success {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  font-weight: 800;
  border: none;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
}

.gsr-field-error { font-size: 0.78rem; color: #dc2626; margin: 6px 0 0; }

.gsr-field--outlined.is-invalid .gsr-outlined-box,
.gsr-field--phone-box.is-invalid .gsr-outlined-box,
.gsr-field--upload.is-invalid .gsr-outlined-box {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

/* Wizard */
.gsr-wizard-step[hidden] { display: none !important; }

.gsr-wizard-back {
  display: inline-flex;
  margin-top: 14px;
  padding: 0;
  border: none;
  background: none;
  color: var(--gsr-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.gsr-wizard-back:hover { color: #2563eb; }
.gsr-wizard-back--block { width: 100%; justify-content: center; display: flex; margin-top: 12px; }

.gsr-reg-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
  background: #f1f5f9;
  border-radius: 999px;
}

.gsr-reg-btn {
  min-height: 38px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gsr-reg-btn.is-active {
  background: #dbeafe;
  color: #2563eb;
  box-shadow: none;
}

.gsr-reg-note {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0 0 16px;
  line-height: 1.55;
}

/* Outlined fields — IndiaFilings screenshot style */
.gsr-field--outlined,
.gsr-field--phone-box,
.gsr-field--upload {
  position: relative;
  margin-bottom: 16px;
}

.gsr-outlined-box {
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  min-height: 56px;
  padding: 16px 40px 10px 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gsr-outlined-box:focus-within,
.gsr-field--upload.is-dragover .gsr-outlined-box,
.gsr-outlined-box--upload:hover {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.gsr-outlined-box__label {
  position: absolute;
  left: 10px;
  top: 0;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2563eb;
  line-height: 1.2;
  z-index: 2;
  pointer-events: none;
}

.gsr-outlined-box__tag {
  color: #64748b;
  font-weight: 500;
}

.gsr-outlined-box__control {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
}

.gsr-outlined-box__control::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.gsr-outlined-box--select .gsr-outlined-box__control {
  appearance: none;
  cursor: pointer;
  padding-right: 4px;
}

.gsr-outlined-box--select .gsr-outlined-box__control:invalid {
  color: #9ca3af;
}

.gsr-outlined-box--select::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.gsr-outlined-box__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
  word-break: break-word;
}

.gsr-outlined-box__value.is-placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.gsr-outlined-box__file {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.gsr-outlined-box--upload {
  cursor: pointer;
  min-height: 64px;
  padding-bottom: 12px;
}

.gsr-outlined-box--upload .gsr-outlined-box__value {
  font-size: 0.88rem;
  line-height: 1.45;
}

.gsr-outlined-box--upload::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M8 10V2m0 0L5.5 4.5M8 2l2.5 2.5M3 10v2a1 1 0 001 1h8a1 1 0 001-1v-2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.gsr-field--pan.is-valid .gsr-outlined-box--input::after {
  content: '✓';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #22c55e;
  font-size: 1.1rem;
  font-weight: 700;
  pointer-events: none;
}

.gsr-outlined-box__download {
  display: inline-block;
  margin: -4px 0 12px 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.gsr-outlined-box__download:hover {
  text-decoration: underline;
}

.gsr-field--phone-box .gsr-outlined-box {
  cursor: default;
  padding-bottom: 12px;
}

.gsr-phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gsr-phone-row__prefix {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
}

.gsr-phone-row input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  background: transparent;
}

.gsr-phone-row input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.gsr-field--upload.is-complete .gsr-outlined-box {
  border-color: #93c5fd;
}

.gsr-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.gsr-btn--gradient {
  background: linear-gradient(90deg, #4f46e5 0%, #2563eb 45%, #7c3aed 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  min-height: 48px;
  padding: 0 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.28);
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.gsr-btn--gradient:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.gsr-btn--gradient.gsr-btn--block {
  width: 100%;
  padding: 0 20px;
}

.gsr-btn--primary {
  background: linear-gradient(90deg, #4f46e5 0%, #2563eb 45%, #7c3aed 100%);
  color: #fff;
  border-radius: 8px;
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.28);
}

.gsr-btn--primary:hover {
  filter: brightness(1.05);
}

.gsr-doc-section-title {
  margin: 20px 0 12px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.gsr-doc-section-title:first-child {
  margin-top: 0;
}

.gsr-reg-note--step {
  margin: -6px 0 14px;
  font-size: 0.82rem;
  color: #64748b;
}

.gsr-reg-note--template {
  margin: -4px 0 12px 2px;
  font-size: 0.76rem;
}

.gsr-doc-files {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.gsr-doc-files li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #f8fafc;
  font-size: 0.76rem;
  color: #475569;
}

.gsr-doc-files__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gsr-doc-files__remove {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #dc2626;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

/* Checkout */
.gsr-checkout {
  background: #f1f5f9;
  padding-top: 32px;
  padding-bottom: 56px;
}

.gsr-checkout__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.gsr-checkout__main,
.gsr-checkout__sidebar {
  background: #fff;
  border: 1px solid var(--gsr-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.gsr-checkout__sidebar { position: sticky; top: 20px; }

.gsr-checkout__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.gsr-checkout__header h2 { margin: 0; font-size: 1.25rem; font-weight: 800; }
.gsr-checkout__ref { font-size: 0.82rem; color: var(--gsr-muted); }

.gsr-checkout__service-card {
  border: 1px solid var(--gsr-border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
}

.gsr-checkout__service-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.gsr-checkout__service-desc {
  font-size: 0.88rem;
  color: var(--gsr-muted);
  margin: 0 0 14px;
}

.gsr-checkout__details {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #f1f5f9;
}

.gsr-checkout__details li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.86rem;
}

.gsr-checkout__details span { color: var(--gsr-muted); }

.gsr-checkout__notes { font-size: 0.85rem; color: #475569; line-height: 1.6; }

.gsr-checkout__customer h3,
.gsr-checkout__billing h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.gsr-checkout__customer p { margin: 0 0 6px; font-size: 0.9rem; }
.gsr-muted { color: var(--gsr-muted); font-size: 0.85rem; }

.gsr-checkout__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #475569;
}

.gsr-checkout__row--total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2px solid #e2e8f0;
}

.gsr-checkout__row--total strong { color: #16a34a; font-size: 1.2rem; }

.gsr-fast-delivery {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid #e9d5ff;
  border-radius: 12px;
  background: #faf5ff;
  cursor: pointer;
}

.gsr-fast-delivery input { margin-top: 4px; width: 18px; height: 18px; accent-color: #2563eb; }
.gsr-fast-delivery strong { display: block; font-size: 0.9rem; }
.gsr-fast-delivery small { display: block; margin-top: 2px; color: var(--gsr-muted); font-size: 0.8rem; }

.gsr-checkout__terms {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: var(--gsr-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .gsr-hero__card-body { grid-template-columns: 1fr; }
  .gsr-hero__card-left { border-right: none; border-bottom: 1px solid #f1f5f9; }
  .gsr-hero__card-trust { grid-template-columns: 1fr 1fr; }
  .gsr-hero__trust-item:nth-child(2) { border-right: none; }
  .gsr-checkout__grid { grid-template-columns: 1fr; }
  .gsr-checkout__sidebar { position: static; }
  .gsr-reg-toggle { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gsr-hero__card-trust { grid-template-columns: 1fr; }
  .gsr-hero__trust-item { border-right: none; border-bottom: 1px solid #e8edf5; }
  .gsr-hero__trust-item:last-child { border-bottom: none; }
}
