/* === VektorOS Landing — frindz.ai inspired === */

:root {
  --bg: #ffffff;
  --bg-alt: #F5F5F0;
  --bg-card: #ffffff;
  --lime: #8BCA00;
  --lime-light: #E8F5C8;
  --forest: #0D3D3D;
  --text: #111111;
  --text-2: #5A5A5A;
  --border: #E4E4DF;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime-light); color: var(--forest); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #C8CA2B; border-radius: 3px; }

/* Focus */
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

/* Nav */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: #0a2f2f !important; transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_189846/images/a3033cf6-6f1b-4639-9710-3e7fe1b4736c.png');
  background-size: cover;
  background-position: center;
}
/* geometric decoration stays on top of the photo */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(13,148,136,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(45,90,170,0.15) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(13,37,53,0.65) 50%, rgba(13,148,136,0.45) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: center;
  text-align: center;
}
.hero-content { max-width: 720px; margin: 0 auto; }
.hero-actions { display: flex; justify-content: center; }
.hero-trust { display: flex; justify-content: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(139,202,0,0.15);
  color: #8BCA00;
  border: 1px solid rgba(139,202,0,0.3);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
  color: #ffffff; margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7;
  max-width: 460px; margin-bottom: 40px; font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--lime); color: var(--forest);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(139,202,0,0.3);
}
.btn-primary:hover {
  background: #7fb200; transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139,202,0,0.4);
}
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.9);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 500; font-size: 15px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-image img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/3; object-fit: cover;
}
.hero-image-label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: var(--radius);
  font-size: 12px; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* Hero Trust Bar */
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-stat { }
.trust-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #ffffff; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Sections */
.section { padding: 100px 48px; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 12px; display: block;
}
.section-headline {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.7;
  max-width: 520px; margin-bottom: 0; font-weight: 400;
}

/* Intro Block */
.intro-block { margin-bottom: 72px; }
.intro-block .section-sub { margin-top: 12px; }

/* Services Grid */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--bg-card); border-radius: 10px;
  padding: 36px 32px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-num {
  font-family: var(--font-display); font-size: 56px; font-weight: 900;
  color: var(--lime-light); line-height: 1; margin-bottom: 16px;
  display: block;
}
.service-icon { margin-bottom: 16px; }
.service-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  margin-bottom: 20px; font-weight: 400;
}
.service-features { list-style: none; }
.service-features li {
  font-size: 13px; color: var(--text-2); padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.service-features li::before {
  content: ''; flex-shrink: 0; margin-top: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
}

/* Pricing Grid */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 0;
}
.pricing-card {
  background: var(--bg-card); border-radius: 10px;
  padding: 36px 32px; border: 1.5px solid var(--border);
  position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card.featured {
  border-color: var(--lime); box-shadow: 0 0 0 3px rgba(139,202,0,0.12);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--forest);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 16px; border-radius: 100px;
}
.pricing-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.pricing-tagline {
  font-size: 13px; color: var(--text-2); margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--font-display); font-size: 42px; font-weight: 900;
  color: var(--text); margin-bottom: 4px; line-height: 1;
}
.pricing-price-unit { font-size: 14px; color: var(--text-2); font-weight: 400; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  font-size: 14px; color: var(--text-2); padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li::before {
  content: '✓'; flex-shrink: 0; color: var(--lime); font-weight: 700;
  margin-top: 1px;
}
.btn-price {
  display: block; text-align: center;
  background: var(--bg-alt); color: var(--text);
  padding: 13px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-price:hover { border-color: var(--forest); }
.pricing-card.featured .btn-price {
  background: var(--lime); color: var(--forest); border-color: var(--lime);
}
.pricing-card.featured .btn-price:hover { background: #7fb200; border-color: #7fb200; }

/* Stripe payment buttons */
.btn-stripe {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; text-align: center;
  background: #635bff; color: #fff;
  padding: 13px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(99,91,255,0.3);
}
.btn-stripe:hover {
  background: #4d47c3; transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99,91,255,0.4);
}
.pricing-card.featured .btn-stripe {
  background: var(--lime); color: var(--forest);
  box-shadow: 0 2px 8px rgba(139,202,0,0.3);
}
.pricing-card.featured .btn-stripe:hover {
  background: #7fb200; box-shadow: 0 4px 16px rgba(139,202,0,0.4);
}
.btn-stripe svg { flex-shrink: 0; }

/* Add-ons section */
.addon-section { }
.section-headline-center {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 12px; text-align: center;
}
.section-sub-center {
  font-size: 17px; color: var(--text-2); line-height: 1.7;
  max-width: 480px; margin: 0 auto 48px; text-align: center; font-weight: 400;
}
.addon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.addon-card {
  background: var(--bg-card); border-radius: 8px;
  padding: 28px 24px; border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 16px;
}
.addon-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--lime-light); display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.addon-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.addon-price { font-size: 13px; color: var(--text-2); }
.addon-desc { font-size: 12px; color: var(--text-2); margin-top: 4px; line-height: 1.5; }

/* Benefits Grid */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  margin-top: 0;
}
.benefit-card {
  background: var(--bg-card); padding: 32px 28px;
  transition: background 0.2s;
}
.benefit-card:hover { background: var(--lime-light); }
.benefit-icon { margin-bottom: 16px; font-size: 28px; }
.benefit-title {
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.benefit-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; font-weight: 400; }

/* Social Proof / Stats */
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  margin-bottom: 64px;
}
.proof-stat {
  background: var(--bg-card); padding: 40px 32px; text-align: center;
}
.proof-stat-value {
  font-family: var(--font-display); font-size: 40px; font-weight: 900;
  color: var(--forest); margin-bottom: 6px; line-height: 1;
}
.proof-stat-label { font-size: 13px; color: var(--text-2); font-weight: 400; }

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--bg-card); border-radius: 10px;
  padding: 32px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-stars {
  color: var(--lime); font-size: 16px; letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px; color: var(--text); line-height: 1.7;
  font-style: italic; font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lime-light); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--forest);
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-2); }

/* FAQ */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 24px 0;
}
.faq-q {
  font-size: 16px; font-weight: 600; color: var(--text);
  margin-bottom: 10px; cursor: default;
}
.faq-a {
  font-size: 15px; color: var(--text-2); line-height: 1.7; font-weight: 400;
}

/* CTA Section */
.cta-section {
  padding: 120px 48px; background: var(--forest);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,202,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-headline {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 40px; font-weight: 400;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--forest);
  padding: 16px 36px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(139,202,0,0.3);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn-cta:hover {
  background: #7fb200; transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,202,0,0.5);
}
.cta-trust {
  margin-top: 32px; font-size: 13px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 24px;
}

/* Footer */
.footer {
  background: var(--bg-alt); border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text);
}
.footer-tagline { font-size: 13px; color: var(--text-2); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--text-2); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: #fff; padding: 16px 24px;
  border-radius: 8px; max-width: 480px; width: calc(100% - 48px);
  display: flex; align-items: flex-start; gap: 16px; z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  font-size: 14px; line-height: 1.6;
}
.cookie-banner p { flex: 1; }
.cookie-banner a { color: var(--lime); text-decoration: none; }
.cookie-banner button {
  background: var(--lime); color: var(--forest);
  border: none; padding: 8px 16px; border-radius: 4px;
  font-weight: 600; font-size: 13px; cursor: pointer; flex-shrink: 0;
}
.cookie-banner button:hover { background: #7fb200; }

/* Contact Form Section */
.contact-section { padding: 100px 48px; background: var(--bg-alt); }
.contact-inner {
  max-width: 960px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info .section-label { display: block; margin-bottom: 12px; }
.contact-info .section-headline { margin-bottom: 16px; }
.contact-info .section-sub { margin-bottom: 32px; }
.contact-meta { list-style: none; }
.contact-meta li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text-2); padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.contact-form-wrapper {
  background: var(--bg-card); border-radius: 10px;
  padding: 40px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: 14px; font-family: var(--font-body); color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--lime);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: var(--forest); color: #fff;
  border: none; padding: 14px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.1s;
}
.btn-submit:hover { background: #0a2f2f; transform: translateY(-1px); }
.btn-submit:disabled { background: var(--text-2); cursor: not-allowed; transform: none; }
.form-success {
  text-align: center; padding: 32px;
}
.form-success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-2); }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 40px; }
  .hero-image { display: none; }
  .hero-trust { flex-wrap: wrap; }
  .section { padding: 72px 24px; }
  .services-grid, .pricing-grid, .testimonials-grid, .addon-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-banner { flex-direction: column; gap: 12px; }
}