/* ClawProAI - Main Stylesheet */
:root {
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-glow: rgba(37,99,235,0.3);
  --purple: #7c3aed;
  --green: #22c55e;
  --red: #ef4444;
  --dark: #030712;
  --darker: #020610;
  --card: #0f172a;
  --card-border: #1e293b;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-bright: #f8fafc;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--blue-light); text-decoration: none; }
a:hover { color: #60a5fa; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3,7,18,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 30px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-bright);
}
.nav-logo img {
  height: 45px;
  width: auto;
}
.nav-logo-text {
  font-size: 1.4em;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text-bright);
}
.nav-logo-text span {
  color: #f8fafc;
}
.ai-text {
  color: #dc2626 !important;
  -webkit-text-fill-color: #dc2626 !important;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.9em;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-cta {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9em !important;
  transition: all 0.3s;
  box-shadow: 0 2px 10px var(--blue-glow);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--blue-glow);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5em;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(99,102,241,0.06) 0%, transparent 50%);
  animation: drift 20s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes drift {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(-5%,3%) rotate(3deg); }
}
.hero-content { position: relative; z-index: 1; max-width: 850px; }
.hero-badge {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue-light);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.hero-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}
.hero-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.hero h1 {
  font-size: 3.5em;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-bright);
  letter-spacing: -1px;
  line-height: 1.1;
}
.hero h1 .pro { color: #f8fafc; }
.hero h1 .ai { color: #dc2626; }
.ai-text {
  color: #dc2626 !important;
}
.hero .tagline { font-size: 1.5em; color: var(--text-bright); margin-bottom: 8px; font-weight: 600; }
.hero .subtitle { font-size: 1.1em; color: var(--text-dim); margin-bottom: 40px; max-width: 650px; margin-left: auto; margin-right: auto; }

.cta-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 17px 48px;
  border-radius: 12px;
  font-size: 1.15em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px var(--blue-glow);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--blue-glow); color: #fff; }
.cta-secondary {
  display: inline-block;
  border: 2px solid rgba(37,99,235,0.5);
  color: var(--blue-light);
  padding: 15px 48px;
  border-radius: 12px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(37,99,235,0.05);
}
.cta-secondary:hover { background: rgba(37,99,235,0.15); color: #fff; border-color: var(--blue-light); }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px 20px;
  border-bottom: 1px solid var(--card-border);
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item .num { font-size: 1.8em; font-weight: 800; color: var(--blue-light); }
.trust-item .label { font-size: 0.8em; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTIONS ===== */
.section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.section-dark { background: #060b18; }
.section-accent { background: linear-gradient(180deg, var(--dark) 0%, #0c1426 50%, var(--dark) 100%); }
.section h2 { font-size: 2.5em; font-weight: 800; color: var(--text-bright); text-align: center; margin-bottom: 10px; letter-spacing: -0.5px; }
.section h2 span {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section .section-sub { text-align: center; color: var(--text-dim); font-size: 1.1em; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ===== CAPABILITIES ===== */
.capabilities { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.capability {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.capability:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(37,99,235,0.1); }
.capability .icon { font-size: 1.8em; margin-bottom: 14px; display: block; }
.capability h3 { font-size: 1.1em; color: var(--text-bright); margin-bottom: 8px; font-weight: 700; }
.capability p { color: var(--text-dim); font-size: 0.9em; line-height: 1.5; }

/* ===== NOT SECTION ===== */
.not-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.not-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.not-item .x { color: var(--red); font-size: 1.3em; font-weight: 800; flex-shrink: 0; width: 30px; }
.not-item p { color: var(--text-dim); font-size: 0.95em; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; margin-top: 50px; }
.step { text-align: center; padding: 20px 10px; }
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-size: 1.5em;
  font-weight: 800;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px var(--blue-glow);
}
.step h3 { color: var(--text-bright); font-size: 1.05em; margin-bottom: 8px; font-weight: 700; }
.step p { color: var(--text-dim); font-size: 0.88em; }
.key-point {
  text-align: center;
  margin-top: 50px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(79,70,229,0.05));
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,0.2);
}
.key-point p { color: var(--blue-light); font-size: 1.1em; font-weight: 600; }

/* ===== MACHINE TABLE ===== */
.machine-table-wrap { overflow-x: auto; margin-top: 40px; }
.machine-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 16px; overflow: hidden; }
.machine-table th { background: linear-gradient(135deg, #1e3a5f, #1e293b); color: #fff; padding: 16px 14px; text-align: left; font-size: 0.85em; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.machine-table td { padding: 16px 14px; border-bottom: 1px solid var(--card-border); color: var(--text-dim); font-size: 0.9em; }
.machine-table tr:last-child td { border-bottom: none; }
.machine-table tr:hover td { background: rgba(37,99,235,0.05); }
.machine-table .tier-label { color: var(--blue-light); font-weight: 700; }
.machine-table .recommended-row { background: rgba(37,99,235,0.05); }
.rec-badge { display: inline-block; background: var(--blue); color: #fff; font-size: 0.65em; padding: 3px 8px; border-radius: 10px; margin-left: 8px; font-weight: 700; vertical-align: middle; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 50px; }
.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover { border-color: rgba(37,99,235,0.4); }
.pricing-card.featured { border: 2px solid var(--blue); box-shadow: 0 0 40px var(--blue-glow); }
.pricing-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 2px;
}
.pricing-card h3 { font-size: 1.4em; color: var(--text-bright); margin-bottom: 5px; font-weight: 700; }
.pricing-card .price { font-size: 3em; font-weight: 900; margin: 20px 0 5px; }
.pricing-card .price .currency { font-size: 0.5em; color: var(--text-dim); }
.pricing-card .price .period { font-size: 0.3em; color: var(--text-dim); font-weight: 400; }
.pricing-card .setup { color: var(--text-dim); font-size: 0.9em; margin-bottom: 25px; }
.pricing-card ul { list-style: none; text-align: left; }
.pricing-card li { padding: 10px 0; color: var(--text-dim); font-size: 0.92em; border-bottom: 1px solid var(--card-border); }
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li span.check { color: var(--green); margin-right: 10px; font-weight: 700; }

/* ===== COMPARE ===== */
.compare-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 50px;
}
.compare-box h3 { font-size: 1.8em; color: var(--text-bright); margin-bottom: 20px; }
.compare-box .stat { font-size: 2.5em; font-weight: 900; background: linear-gradient(135deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 10px 0; }
.compare-box .stat-label { color: var(--text-dim); font-size: 0.95em; }
.compare-box p { color: var(--text-dim); font-size: 1.05em; margin-top: 20px; }
.compare-box .highlight { color: var(--blue-light); font-weight: 700; }

/* ===== BOTTOM CTA ===== */
.bottom-cta { text-align: center; padding: 100px 20px; background: linear-gradient(180deg, var(--dark), #0c1426); }
.bottom-cta h2 { font-size: 2.2em; color: var(--text-bright); max-width: 750px; margin: 0 auto 15px; font-weight: 800; line-height: 1.3; }
.bottom-cta .sub { color: var(--text-dim); font-size: 1.15em; margin-bottom: 40px; }

/* ===== QUOTE PAGE ===== */
.quote-form { max-width: 900px; margin: 0 auto; }
.quote-section {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
}
.quote-section h3 {
  font-size: 1.2em;
  color: var(--text-bright);
  margin-bottom: 20px;
  font-weight: 700;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block;
  color: var(--text-dim);
  font-size: 0.9em;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0a0f1e;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95em;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.option-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.option-item {
  background: #0a0f1e;
  border: 2px solid var(--card-border);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}
.option-item:hover { border-color: rgba(37,99,235,0.5); }
.option-item.selected { border-color: var(--blue); background: rgba(37,99,235,0.05); }
.option-item input[type="radio"] { display: none; }
.option-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--card-border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.option-item.selected .option-radio {
  border-color: var(--blue);
}
.option-item.selected .option-radio::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
}
.option-info { flex: 1; }
.option-title { color: var(--text-bright); font-weight: 600; font-size: 0.95em; }
.option-desc { color: var(--text-dim); font-size: 0.85em; margin-top: 3px; }
.option-price { color: var(--blue-light); font-weight: 700; font-size: 1.1em; flex-shrink: 0; }
.option-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.65em;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 8px;
}

.quote-total {
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(79,70,229,0.05));
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}
.quote-total h3 { font-size: 1.3em; color: var(--text-bright); margin-bottom: 20px; }
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(37,99,235,0.15);
  font-size: 1em;
}
.total-row:last-child { border-bottom: none; }
.total-row .label { color: var(--text-dim); }
.total-row .value { color: var(--text-bright); font-weight: 600; }
.total-row.grand-total .label { color: var(--text-bright); font-size: 1.2em; font-weight: 700; }
.total-row.grand-total .value { color: var(--blue-light); font-size: 1.4em; font-weight: 800; }
.total-row.monthly { background: rgba(37,99,235,0.05); padding: 12px 0; margin-top: 5px; border-radius: 8px; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--card-border);
  background: var(--darker);
}
footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
footer .footer-logo img {
  height: 50px;
  width: auto;
}
footer .footer-logo-text {
  font-size: 1.5em;
  font-weight: 900;
  color: var(--text-bright);
}
footer .footer-logo-text span {
  color: #f8fafc;
}
.ai-text {
  color: #dc2626 !important;
  -webkit-text-fill-color: #dc2626 !important;
}
footer p { color: #475569; font-size: 0.85em; margin-bottom: 5px; }
footer .contact-info { margin-top: 15px; }
footer .contact-info a { color: var(--text-dim); margin: 0 15px; font-size: 0.9em; }
footer .contact-info a:hover { color: var(--blue-light); }
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: #64748b;
  font-size: 0.85em;
  transition: color 0.3s;
}
footer .footer-links a:hover {
  color: var(--blue-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(3,7,18,0.98);
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--card-border);
  }
  .hero h1 { font-size: 2.5em; }
  .hero .tagline { font-size: 1.2em; }
  .hero { padding-top: 100px; }
  .section h2 { font-size: 1.8em; }
  .cta-btn, .cta-secondary { padding: 15px 35px; font-size: 1em; }
  .cta-group { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 25px; }
  .compare-box { padding: 35px 20px; }
  .steps { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .machine-table { font-size: 0.75em; }
  .form-row { grid-template-columns: 1fr; }
  .bottom-cta h2 { font-size: 1.6em; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12,20,38,0.97);
  border-top: 1px solid var(--blue);
  padding: 14px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.cookie-banner p { color: var(--text-dim); font-size: 0.82em; max-width: 550px; line-height: 1.4; }
.cookie-banner a { color: var(--blue-light); text-decoration: underline; }
.cookie-btn {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.82em;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px var(--blue-glow); }
.cookie-btn.secondary {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-dim);
  padding: 7px 20px;
}
.cookie-btn.secondary:hover { border-color: var(--blue); color: var(--text-bright); }
}