
@import url('https://use.typekit.net/hgd0bnn.css');

:root {
  --orange: #ff5100;
  --orange-hover: #e64900;
  --yellow: #ece83a;
  --dark: #111111;
  --light-bg: #f5f5f5;
  --font: 'roc-grotesk-wide', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--orange);
  height: 84px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo svg {
  overflow: visible;
  height: 31px;
  width: 148px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links .nav-cta {
  color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 14px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links .nav-cta:hover {
  background: rgba(236, 232, 58, 0.1);
  opacity: 1;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-label {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* === ACTION CARDS SECTION === */
.actions-section {
  padding: 80px 40px;
  background: #ffffff;
}

.actions-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.actions-section .section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.actions-section .section-header p {
  font-size: 16px;
  color: #6f6c69;
  line-height: 1.6;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.action-card {
  background: var(--light-bg);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(255, 81, 0, 0.15);
}

.action-card .card-icon {
  width: 48px;
  height: 48px;
  background: #fff1e8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-card .card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.action-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.action-card p {
  font-size: 15px;
  color: #6f6c69;
  line-height: 1.6;
  flex-grow: 1;
}

.action-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s, gap 0.2s;
}

.action-card .card-link:hover {
  background: var(--orange-hover);
  gap: 12px;
}

.action-card .card-link svg {
  width: 16px;
  height: 16px;
}

/* === FEATURES SECTION === */
.features-section {
  padding: 80px 40px;
  background: var(--light-bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #fff1e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-item .check svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.feature-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 15px;
  color: #6f6c69;
  line-height: 1.5;
}

/* === DEMO SECTION === */
.demo-section {
  padding: 80px 40px;
  background: var(--dark);
  text-align: center;
}

.demo-section h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.demo-section p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 32px;
}

/* === FOOTER === */
.footer {
  background: #ffffff;
  padding: 40px;
  border-top: 1px solid #ebe7e3;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo svg {
  height: 24px;
  width: auto;
}

.footer-logo svg path[fill="#fff"] {
  fill: var(--orange);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #6f6c69;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-copy {
  color: #999;
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { min-height: 70vh; }
  .actions-section { padding: 48px 20px; }
  .features-section { padding: 48px 20px; }
  .demo-section { padding: 48px 20px; }
  .footer { padding: 24px 20px; }
  .action-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* === UPLOAD DRAWINGS SECTION === */
.upload-section {
  padding: 80px 40px;
  background: #ffffff;
}

.upload-inner {
  max-width: 800px;
  margin: 0 auto;
}

.upload-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.upload-section .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #6f6c69;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}

.upload-form {
  background: var(--light-bg);
  border-radius: 22px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #ffffff;
  color: var(--dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* File drop zone */
.drop-zone {
  border: 2px dashed #ccc;
  border-radius: 14px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #ffffff;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--orange);
  background: #fff8f5;
}

.drop-zone-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: #999;
}

.drop-zone.dragover .drop-zone-icon {
  color: var(--orange);
}

.drop-zone p {
  font-size: 15px;
  color: #666;
  margin-bottom: 4px;
}

.drop-zone .browse-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.drop-zone .file-types {
  font-size: 13px;
  color: #999;
  margin-top: 8px;
}

.file-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 14px;
}

.file-item .file-name {
  color: var(--dark);
  font-weight: 500;
}

.file-item .file-size {
  color: #999;
  font-size: 13px;
}

.file-item .file-remove {
  color: #999;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
}

.file-item .file-remove:hover {
  color: #ff3333;
}

.form-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: #fff1e8;
  border-radius: 12px;
}

.form-guarantee svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--orange);
  margin-top: 2px;
}

.form-guarantee p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.form-guarantee strong {
  color: var(--dark);
}

.form-submit {
  margin-top: 24px;
  text-align: center;
}

.form-submit button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit button:hover {
  background: var(--orange-hover);
}

.form-submit button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success .success-icon svg {
  width: 32px;
  height: 32px;
  color: #22c55e;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 16px;
  color: #666;
}

.upload-or {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: #999;
}

.upload-or a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.upload-or a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .upload-form { padding: 24px; }
  .upload-section { padding: 48px 20px; }
}

/* === UPLOAD METHOD TABS === */
.upload-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #eee;
}

.upload-tab {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font);
}

.upload-tab:hover {
  color: #666;
}

.upload-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.upload-tab svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

.upload-method {
  display: none;
}

.upload-method.active {
  display: block;
}

.link-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.link-input-row input {
  flex: 1;
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #ffffff;
  color: var(--dark);
  transition: border-color 0.2s;
}

.link-input-row input:focus {
  outline: none;
  border-color: var(--orange);
}

.link-input-row .add-link-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s;
}

.link-input-row .add-link-btn:hover {
  background: var(--orange-hover);
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 14px;
}

.link-item .link-url {
  color: var(--orange);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 500px;
}

.link-item .link-remove {
  color: #999;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
}

.link-item .link-remove:hover {
  color: #ff3333;
}

.link-hint {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* === SCHEDULING MODAL === */
.schedule-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.schedule-overlay.show {
  display: flex;
}

.schedule-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.schedule-header {
  padding: 28px 32px 0;
}

.schedule-header h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}

.schedule-header p {
  font-size: 15px;
  color: #666;
}

.schedule-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.schedule-close:hover {
  color: #333;
}

.schedule-body {
  padding: 24px 32px 32px;
}

/* Step 1: Contact info */
.schedule-step {
  display: none;
}

.schedule-step.active {
  display: block;
}

.sched-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.sched-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sched-form-group.full {
  grid-column: 1 / -1;
}

.sched-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.sched-form-group input {
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.2s;
}

.sched-form-group input:focus {
  outline: none;
  border-color: var(--orange);
}

.sched-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 12px;
}

.sched-next-btn:hover {
  background: var(--orange-hover);
}

.sched-next-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Step 2: Date/time picker */
.day-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 8px;
}

.day-group {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 16px;
}

.day-group:last-child {
  border-bottom: none;
}

.day-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slot {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
}

.time-slot:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.time-slot.selected {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.sched-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #666;
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 12px;
  margin-right: 16px;
}

.sched-back-btn:hover {
  color: var(--dark);
}

/* Step 3: Confirmation */
.schedule-confirm {
  text-align: center;
  padding: 20px 0;
}

.schedule-confirm .confirm-icon {
  width: 64px;
  height: 64px;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.schedule-confirm .confirm-icon svg {
  width: 32px;
  height: 32px;
  color: #22c55e;
}

.schedule-confirm h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.schedule-confirm p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.schedule-confirm .confirm-details {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.6;
}

.schedule-confirm .confirm-details strong {
  color: var(--dark);
}

.sched-loading {
  text-align: center;
  padding: 40px 0;
  color: #999;
  font-size: 15px;
}

@media (max-width: 768px) {
  .schedule-modal {
    max-width: 100%;
    border-radius: 16px;
  }
  .schedule-header, .schedule-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sched-form-row {
    grid-template-columns: 1fr;
  }
}

/* === TRUST BAR === */
.trust-bar {
  background: #111111;
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-bar-item {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 20px;
  position: relative;
  white-space: nowrap;
}

.trust-bar-item + .trust-bar-item::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .trust-bar { padding: 12px 16px; }
  .trust-bar-item { font-size: 11px; padding: 4px 12px; }
}

/* === INSTALL STATS (Contractors) === */
.install-stats {
  background: var(--light-bg);
  padding: 48px 40px;
  text-align: center;
}

.install-stats-inner {
  max-width: 700px;
  margin: 0 auto;
}

.install-stats-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.install-stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.install-stat {
  padding: 0 40px;
  position: relative;
}

.install-stat + .install-stat {
  border-left: 1px solid #ddd;
}

.install-stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.install-stat-label {
  font-size: 13px;
  color: #6f6c69;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .install-stats { padding: 36px 20px; }
  .install-stat { padding: 16px 20px; }
  .install-stat + .install-stat { border-left: none; border-top: 1px solid #ddd; }
  .install-stats-grid { flex-direction: column; }
}

/* === WHAT WE RETURN (Architects) === */
.what-we-return {
  padding: 64px 40px;
  background: var(--light-bg);
}

.what-we-return-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.what-we-return h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.what-we-return .wwr-subtitle {
  font-size: 16px;
  color: #6f6c69;
  margin-bottom: 36px;
}

.wwr-list {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.wwr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}

.wwr-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.wwr-check svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 768px) {
  .what-we-return { padding: 48px 20px; }
}

/* === SOCIAL PROOF BAR === */
.social-proof {
  padding: 48px 40px;
  background: var(--light-bg);
  text-align: center;
}

.social-proof-inner {
  max-width: 760px;
  margin: 0 auto;
}

.social-proof-main {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 400;
}

.social-proof-sub {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 768px) {
  .social-proof { padding: 36px 20px; }
  .social-proof-main { font-size: 15px; }
}

/* === FILE SIZE WARNING === */
.file-size-warning {
  background: #fff3f0;
  border: 1px solid #FF5100;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

/* === HERO CREDENTIAL LINE === */
.hero-credential {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-credential span {
  color: rgba(255,255,255,0.4);
  margin: 0 8px;
}

