/* ═══════════════════════════════════════════
   SOLVCAN CONSULTING INC. — Production CSS
   Theme: Warm cream + dark cyan accent
   Fonts: Plus Jakarta Sans + DM Sans
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --white: #ffffff;
  --cream: #faf9f7;
  --sand: #f5f3ef;
  --warm: #eee9e1;
  --border: #e8e4de;
  --border-light: #f0ede8;
  --dark: #0f1923;
  --heading: #0f1923;
  --body: #4a5568;
  --muted: #8a919c;
  --cyan: #0e7490;
  --cyan-dark: #0c5f75;
  --cyan-light: #06b6d4;
  --cyan-bg: #ecfeff;
  --cyan-border: #a5f3fc;
  --navy: #0f1923;
  --navy-mid: #1a2836;
  --font-h: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --max-w: 1280px;
  --px: 40px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-b); color: var(--body); background: var(--cream); }
::selection { background: rgba(14,116,144,0.15); color: var(--dark); }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
input::placeholder, textarea::placeholder { color: var(--muted); }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* ── Nav ── */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; border-bottom: 1px solid transparent; transition: all 0.4s; }
.site-nav.scrolled { background: rgba(250,249,247,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { cursor: pointer; font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--dark); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-family: var(--font-h); font-size: 14px; font-weight: 500; color: var(--body); cursor: pointer; text-decoration: none; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--cyan); }
.nav-link.active { font-weight: 700; }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: -16px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 8px 0; width: 260px; box-shadow: 0 12px 32px rgba(0,0,0,0.08); margin-top: 8px; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-family: var(--font-b); font-size: 14px; color: var(--body); }
.nav-dropdown-menu a:hover { background: var(--sand); }

.nav-cta { font-family: var(--font-h); font-size: 13px; font-weight: 600; padding: 10px 24px; border-radius: 50px; background: var(--cyan); color: #fff; border: none; cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; }
.nav-cta:hover { background: var(--cyan-dark); }

/* Mobile */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--dark); transition: 0.3s; }
.mobile-menu { display: none; background: var(--cream); padding: 8px var(--px) 24px; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-family: var(--font-h); font-size: 15px; font-weight: 500; color: var(--body); border-bottom: 1px solid var(--border-light); }
.mobile-menu a:hover { color: var(--cyan); }

/* ── Buttons ── */
.btn { font-family: var(--font-h); font-size: 14px; font-weight: 600; padding: 14px 32px; border-radius: 50px; cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; }
.btn-primary { background: var(--cyan); color: #fff; }
.btn-primary:hover { background: var(--cyan-dark); }
.btn-ghost { background: transparent; color: var(--dark); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--sand); border-color: var(--cyan); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--navy-mid); }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--sand); }

/* ── Sections ── */
.section { padding: 100px var(--px); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--dark); color: #fff; }
.section-sm { padding: 48px var(--px); }

/* ── Labels ── */
.label { font-family: var(--font-h); font-size: 13px; font-weight: 600; color: var(--cyan); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.label-light { color: var(--cyan-light); }

/* ── Tags ── */
.tag { font-family: var(--font-h); font-size: 12px; font-weight: 600; color: var(--cyan); background: var(--cyan-bg); padding: 4px 14px; border-radius: 50px; border: 1px solid var(--cyan-border); display: inline-block; }

/* ── Hero ── */
.hero { padding: 150px var(--px) 80px; }
.hero-title { font-family: var(--font-h); font-size: clamp(40px, 5.5vw, 68px); font-weight: 800; color: var(--dark); line-height: 1.06; letter-spacing: -2.5px; margin-bottom: 24px; }
.hero-sub { font-family: var(--font-b); font-size: 18px; color: var(--body); line-height: 1.8; max-width: 560px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }

/* ── Stats Bento ── */
.stats-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: 20px; overflow: hidden; }
.stat-item { background: var(--white); padding: 48px 32px; }
.stat-val { font-family: var(--font-h); font-size: 48px; font-weight: 800; color: var(--dark); letter-spacing: -2px; line-height: 1; }
.stat-label { font-family: var(--font-b); font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: 12px; }

/* ── Tech Logos ── */
.tech-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.tech-logos { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.tech-logos span { font-family: var(--font-h); font-size: 14px; font-weight: 700; opacity: 0.75; transition: opacity 0.2s; }
.tech-logos span:hover { opacity: 1; }

/* Logo images version */
.logo-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; padding: 20px 0; }
.logo-grid img { height: 28px; width: auto; opacity: 0.6; transition: opacity 0.3s; filter: grayscale(100%); }
.logo-grid img:hover { opacity: 1; filter: grayscale(0%); }

/* ── Bento Services ── */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento-card { border-radius: 20px; padding: 40px 36px; cursor: pointer; transition: transform 0.3s; }
.bento-card:hover { transform: translateY(-3px); }
.bento-card-dark { background: var(--dark); color: #fff; }
.bento-card-cyan { background: var(--cyan-bg); }
.bento-card-sand { background: var(--sand); }
.bento-card-cream { background: var(--cream); }
.bento-span-2 { grid-column: span 2; }
.bento-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ── Service Cards (overview) ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 16px; }
.svc-card { background: var(--cream); border-radius: 16px; padding: 36px 32px; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; }
.svc-card:hover { border-color: var(--cyan); }
.svc-card h3 { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.svc-card p { font-family: var(--font-b); font-size: 14px; color: var(--body); line-height: 1.7; margin-bottom: 16px; }
.svc-card .learn { font-family: var(--font-h); font-size: 13px; font-weight: 600; color: var(--cyan); }

/* ── Service Page ── */
.svc-process { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.svc-process:last-child { border-bottom: none; }
.svc-num { font-family: var(--font-h); font-size: 13px; font-weight: 800; color: var(--cyan); background: var(--cyan-bg); border-radius: 8px; padding: 6px 12px; border: 1px solid var(--cyan-border); flex-shrink: 0; }
.svc-process h4 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.svc-process p { font-family: var(--font-b); font-size: 14px; color: var(--body); line-height: 1.7; }

/* Other services grid */
.other-svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.other-svc { background: var(--cream); border-radius: 14px; padding: 28px 24px; cursor: pointer; transition: background 0.2s; }
.other-svc:hover { background: var(--cyan-bg); }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { border-radius: 20px; padding: 44px 36px; display: flex; flex-direction: column; height: 100%; }
.pricing-card-light { background: var(--cream); border: 1px solid var(--border); }
.pricing-card-dark { background: var(--dark); color: #fff; }
.pricing-tier { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.pricing-title { font-family: var(--font-h); font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.pricing-desc { font-family: var(--font-b); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.pricing-list { margin-bottom: 32px; flex: 1; }
.pricing-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.pricing-check { color: var(--cyan); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.pricing-card-dark .pricing-check { color: var(--cyan-light); }
.pricing-item span { font-family: var(--font-b); font-size: 14px; }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.testimonial-card { background: var(--white); border-radius: 20px; padding: 40px 36px; border: 1px solid var(--border); height: 100%; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 20px; color: #f59e0b; font-size: 14px; }
.testimonial-text { font-family: var(--font-b); font-size: 16px; color: var(--dark); line-height: 1.75; margin-bottom: 28px; }
.testimonial-name { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--dark); }
.testimonial-role { font-family: var(--font-b); font-size: 13px; color: var(--muted); margin-left: 8px; }

/* ── Industries ── */
.industry-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.industry-chip { font-family: var(--font-h); font-size: 14px; font-weight: 600; color: var(--dark); background: var(--cream); padding: 14px 24px; border-radius: 50px; border: 1px solid var(--border); cursor: default; transition: all 0.2s; }
.industry-chip:hover { background: var(--cyan-bg); border-color: var(--cyan-border); color: var(--cyan); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact-label { font-family: var(--font-h); font-size: 12px; font-weight: 700; color: var(--cyan); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.contact-value { font-family: var(--font-b); font-size: 15px; color: var(--dark); line-height: 1.6; }
.info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.info-box { background: var(--cream); border-radius: 12px; padding: 18px 16px; }
.info-box h4 { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--dark); }
.info-box p { font-family: var(--font-b); font-size: 12px; color: var(--muted); margin-top: 2px; }

.form-wrap { background: var(--cream); border-radius: 20px; padding: 40px 36px; }
.form-field { width: 100%; padding: 13px 16px; font-family: var(--font-b); font-size: 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--white); color: var(--dark); outline: none; transition: border 0.2s; box-sizing: border-box; margin-bottom: 12px; }
.form-field:focus { border-color: var(--cyan); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.form-row .form-field { margin-bottom: 0; }
textarea.form-field { resize: vertical; font-family: var(--font-b); }
select.form-field { appearance: none; cursor: pointer; }

/* ── Calendly Box ── */
.calendly-box { background: var(--cream); border-radius: 16px; padding: 32px 28px; margin-top: 16px; }

/* ── Footer ── */
.site-footer { background: var(--dark); padding: 72px var(--px) 40px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 56px; }
.footer-brand { font-family: var(--font-h); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer-desc { font-family: var(--font-b); font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: var(--font-h); font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-link { display: block; font-family: var(--font-b); font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; text-decoration: none; }
.footer-link:hover { color: #fff; }
.footer-text { font-family: var(--font-b); font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bar span { font-family: var(--font-b); font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ── Animated Counter ── */
.counter { font-family: var(--font-h); font-weight: 800; }

/* ── Utility ── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.max-w-800 { max-width: 800px; }
.max-w-1000 { max-width: 1000px; margin-left: auto; margin-right: auto; }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --px: 24px; }
  .nav-links { display: none !important; }
  .mobile-toggle { display: flex !important; }
  .stats-bento { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .bento-split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(32px, 8vw, 52px); }
}

@media (max-width: 480px) {
  .stats-bento { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
