*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --navy: #1a4a7a; --teal: #2aa8a0; --mint: #3dd4a8; --light-mint: #7af5c8; --cream: #f5f7fa; --white: #f5f7fa; --text: #1e293b; --text-light: #64748b; --accent: #f59e0b; --shadow: 0 4px 24px rgba(26,74,122,0.08); --shadow-lg: 0 12px 48px rgba(26,74,122,0.12); }
html { scroll-behavior: smooth; }
body { font-family: 'Inter',system-ui,-apple-system,sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(245,247,250,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(26,74,122,0.06); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-wrap { display: flex; align-items: center; gap: 6px; }
.logo-img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.btn-nav { background: linear-gradient(135deg,var(--navy),var(--teal)); color: var(--white) !important; padding: 10px 20px; border-radius: 8px; font-weight: 600 !important; }
.btn-nav:hover { opacity: 0.9; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

/* Hero */
.hero { position: relative; padding: 140px 0 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,var(--cream) 0%,var(--white) 50%,rgba(122,245,200,0.08) 100%); z-index: -1; }
.hero-bg::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle,rgba(61,212,168,0.08) 0%,transparent 70%); border-radius: 50%; }
.hero-content { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; text-align: center; }
.hero-text { max-width: 680px; margin: 0 auto; }
.hero-text h1 { font-size: clamp(36px,5vw,56px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-text h1 .line { display: block; }
.hero-text h1 .accent { background: linear-gradient(90deg,var(--navy),var(--teal),var(--mint)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 18px; color: var(--text-light); margin: 0 auto 32px; line-height: 1.7; max-width: 560px; }
.hero-checks { list-style: none; margin-bottom: 36px; display: inline-block; text-align: left; }
.hero-checks li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); margin-bottom: 10px; font-weight: 500; }
.check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: linear-gradient(135deg,var(--mint),var(--light-mint)); color: var(--white); border-radius: 50%; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.hero-email { margin-top: 16px; font-size: 14px; color: var(--text-light); }
.hero-email a { color: var(--teal); text-decoration: none; font-weight: 600; }
.hero-email a:hover { text-decoration: underline; }
.btn-primary { display: inline-block; background: linear-gradient(135deg,var(--navy),var(--teal)); color: var(--white); text-decoration: none; padding: 16px 36px; border-radius: 10px; font-size: 16px; font-weight: 700; letter-spacing: -0.3px; transition: transform 0.2s,box-shadow 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-large { padding: 18px 44px; font-size: 18px; }

/* What is JUIPOS */
.what-is { padding: 100px 0; background: linear-gradient(180deg,var(--white),var(--cream)); }
.what-is h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 48px; color: var(--navy); text-align: center; }
.acronym-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.acronym-card { background: var(--white); border-radius: 16px; padding: 36px 28px; border: 1px solid rgba(26,74,122,0.06); transition: transform 0.2s,box-shadow 0.2s; }
.acronym-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.acronym-letter { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 12px; background: linear-gradient(135deg,var(--navy),var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.acronym-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.acronym-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }
.acronym-full { text-align: center; margin-top: 40px; font-size: 18px; color: var(--text-light); max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.acronym-full strong { color: var(--text); font-weight: 600; }

/* Restaurant / Verticals */
.restaurant { padding: 100px 0; background: var(--white); }
.restaurant-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.restaurant-text h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; color: var(--navy); }
.restaurant-text > p { font-size: 18px; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.restaurant-text strong { color: var(--text); font-weight: 600; }
.restaurant-list { list-style: none; }
.restaurant-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); margin-bottom: 14px; line-height: 1.5; }
.restaurant-list .bullet { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: linear-gradient(135deg,var(--mint),var(--light-mint)); color: var(--white); border-radius: 50%; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.coming-soon { margin-top: 32px; padding: 20px 24px; background: linear-gradient(135deg,rgba(42,168,160,0.06),rgba(61,212,168,0.06)); border: 1px solid rgba(42,168,160,0.12); border-radius: 12px; }
.coming-soon h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.coming-soon p { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.restaurant-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rf-card { background: var(--white); border: 1px solid rgba(26,74,122,0.08); border-radius: 16px; padding: 28px 20px; text-align: center; transition: transform 0.2s,box-shadow 0.2s; }
.rf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rf-icon { font-size: 32px; margin-bottom: 12px; }
.rf-card span { font-size: 14px; font-weight: 600; color: var(--text); }

/* How It Works */
.how-it-works { padding: 100px 0; background: linear-gradient(180deg,var(--cream),var(--white)); }
.how-it-works h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 48px; color: var(--navy); text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-card { background: var(--white); border-radius: 16px; padding: 36px 24px; border: 1px solid rgba(26,74,122,0.06); transition: transform 0.2s,box-shadow 0.2s; position: relative; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { position: absolute; top: -16px; left: 24px; width: 36px; height: 36px; background: linear-gradient(135deg,var(--navy),var(--teal)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); margin-top: 8px; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Privacy */
.privacy { padding: 100px 0; background: var(--white); }
.privacy h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; color: var(--navy); }
.privacy-sub { font-size: 18px; color: var(--text-light); margin-bottom: 48px; max-width: 640px; line-height: 1.6; }
.privacy-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.privacy-card { background: linear-gradient(135deg,var(--cream),var(--white)); border: 1px solid rgba(26,74,122,0.06); border-radius: 16px; padding: 32px 28px; transition: transform 0.2s,box-shadow 0.2s; }
.privacy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.privacy-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.privacy-card h3 .icon { font-size: 20px; }
.privacy-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Gallery */
.gallery { padding: 100px 0; background: linear-gradient(180deg,var(--cream),var(--white)); }
.gallery .container { text-align: center; }
.gallery h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 48px; color: var(--navy); }
.gallery-single { max-width: 500px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid rgba(26,74,122,0.08); transition: transform 0.2s,box-shadow 0.2s; }
.gallery-single:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-single img { width: 100%; height: auto; display: block; }

/* Architecture Section */
.arch-section { padding: 80px 0; background: linear-gradient(180deg, var(--white), var(--cream)); }
.arch-section h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 36px; color: var(--navy); text-align: center; }
.arch-flow { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.arch-node { border-radius: 8px; padding: 8px 14px; font-weight: 700; font-size: 13px; white-space: nowrap; }
.arch-green { background: linear-gradient(135deg, #ecfdf5, #d1fae5); border: 1px solid rgba(16,185,129,0.2); color: #065f46; }
.arch-blue { background: linear-gradient(135deg, #e0f2fe, #bae6fd); border: 1px solid rgba(14,165,233,0.25); color: #075985; }
.arch-yellow { background: linear-gradient(135deg, #fefce8, #fef9c3); border: 1px solid rgba(234,179,8,0.25); color: #713f12; }
.arch-green-dark { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1px solid rgba(34,197,94,0.25); color: #14532d; }
.arch-orange { background: linear-gradient(135deg, #fff7ed, #ffedd5); border: 1px solid rgba(249,115,22,0.25); color: #7c2d12; }
.arch-purple { background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 1px solid rgba(59,130,246,0.25); color: #1e3a8a; }
.arch-violet { background: linear-gradient(135deg, #ede9fe, #ddd6fe); border: 1px solid rgba(139,92,246,0.25); color: #4c1d95; }
.arch-arrow { color: #94a3b8; font-size: 18px; font-weight: 700; }
.arch-down { display: flex; justify-content: center; align-items: center; gap: 8px; }

/* Why */
.why { padding: 100px 0; background: linear-gradient(180deg,var(--cream),var(--white)); }
.why h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 48px; color: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: 16px; padding: 36px 28px; border: 1px solid rgba(26,74,122,0.06); transition: transform 0.2s,box-shadow 0.2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-num { font-size: 13px; font-weight: 800; color: var(--mint); letter-spacing: 1px; margin-bottom: 16px; }
.why-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* Comparison Table */
.compare { padding: 100px 0; background: var(--white); }
.compare h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; color: var(--navy); text-align: center; }
.compare-sub { text-align: center; font-size: 16px; color: var(--text-light); margin-bottom: 40px; }
.compare-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(26,74,122,0.08); box-shadow: var(--shadow); margin-bottom: 40px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { padding: 14px 16px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(16,185,129,0.06); border-bottom: 2px solid rgba(16,185,129,0.2); }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid rgba(226,232,240,0.6); vertical-align: top; line-height: 1.5; }
.compare-table tr:last-child td { border-bottom: none; }
.juipos-head { color: #059669; background: rgba(16,185,129,0.08) !important; }
.legacy-head { color: #dc2626; background: rgba(239,68,68,0.06) !important; }
.juipos-cell { color: #065f46; background: rgba(16,185,129,0.03); }
.legacy-cell { color: #7f1d1d; background: rgba(239,68,68,0.02); }

/* TCO Row */
.tco-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.tco-card { flex: 1; min-width: 140px; max-width: 180px; background: var(--white); border: 1px solid rgba(16,185,129,0.12); border-radius: 12px; padding: 24px 16px; box-shadow: var(--shadow); text-align: center; }
.tco-num { font-size: 32px; font-weight: 800; }
.tco-green { color: #059669; }
.tco-amber { color: #d97706; }
.tco-blue { color: #0ea5e9; }
.tco-label { font-size: 11px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; font-weight: 600; }

/* Quote */
.quote-section { padding: 80px 0; background: linear-gradient(135deg, rgba(16,185,129,0.04), rgba(250,204,21,0.03)); }
.quote-section blockquote { font-size: 20px; font-style: italic; color: var(--text-light); line-height: 1.7; max-width: 800px; margin: 0 auto; text-align: center; border-left: 4px solid var(--mint); padding-left: 32px; }
.quote-section blockquote strong { color: var(--text); font-weight: 700; }

/* Specs */
.specs { padding: 60px 0; background: var(--white); }
.specs-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.spec-box { flex: 1; min-width: 140px; max-width: 200px; background: var(--cream); border: 1px solid rgba(26,74,122,0.08); border-radius: 12px; padding: 20px 12px; text-align: center; transition: transform 0.2s,box-shadow 0.2s; }
.spec-box:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.spec-title { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; font-weight: 600; }
.spec-val { font-size: 15px; font-weight: 700; color: var(--text); }
.spec-sub { font-size: 12px; color: var(--text-light); }

/* Serve */
.serve { padding: 100px 0; background: var(--white); }
.serve h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 48px; color: var(--navy); }
.serve-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.serve-card { background: linear-gradient(135deg,var(--cream),var(--white)); border: 1px solid rgba(26,74,122,0.06); border-radius: 16px; padding: 32px 16px; text-align: center; transition: transform 0.2s,box-shadow 0.2s; }
.serve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.serve-icon { font-size: 40px; margin-bottom: 12px; }
.serve-card h4 { font-size: 14px; font-weight: 600; color: var(--text); }

/* CTA */
.cta { padding: 100px 0; background: linear-gradient(135deg,var(--navy),var(--teal)); }
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta h2 { font-size: clamp(32px,4vw,42px); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 16px; }
.cta p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta .btn-primary { background: var(--white); color: var(--navy); }
.cta .btn-primary:hover { background: var(--cream); }
.cta-email { margin-top: 20px; font-size: 15px; color: rgba(255,255,255,0.7); }
.cta-email a { color: var(--light-mint); text-decoration: none; font-weight: 600; }
.cta-email a:hover { text-decoration: underline; }

/* Footer */
.footer { padding: 40px 0; background: var(--cream); border-top: 1px solid rgba(26,74,122,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { height: 28px; width: auto; opacity: 0.7; }
.footer-contact a { color: var(--teal); text-decoration: none; font-weight: 600; font-size: 14px; }
.footer-contact a:hover { text-decoration: underline; }
.footer-copy { font-size: 14px; color: var(--text-light); }

/* Responsive */


/* Gallery Carousel */
.gallery-carousel { position: relative; max-width: 700px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid rgba(26,74,122,0.08); box-shadow: var(--shadow); background: #0f172a; }
.gallery-track { display: flex; width: 100%; transition: transform 0.6s ease-in-out; }
.gallery-slide { min-width: 100%; flex-shrink: 0; opacity: 0.35; transition: opacity 0.4s; display: flex; align-items: center; justify-content: center; background: #0f172a; padding: 20px; }
.gallery-slide.active { opacity: 1; }
.gallery-slide img { max-width: 100%; max-height: 380px; width: auto; height: auto; display: block; object-fit: contain; border-radius: 8px; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; font-size: 18px; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,0.15); transition: background 0.2s, transform 0.2s; z-index: 2; }
.gallery-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.gallery-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.3s, transform 0.2s; }
.gallery-dot.active { background: var(--white); transform: scale(1.3); box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.gallery-hint { margin-top: 20px; font-size: 13px; color: var(--text-light); text-align: center; }
.gallery-hint code { background: rgba(26,74,122,0.06); padding: 2px 6px; border-radius: 4px; font-size: 12px; }
@media (max-width: 1024px) {
  .acronym-grid { grid-template-columns: 1fr; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 16px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .restaurant-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .restaurant-features { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .privacy-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .serve-grid { grid-template-columns: repeat(3,1fr); }
  .arch-flow { gap: 6px; }
  .arch-node { font-size: 11px; padding: 6px 10px; }
  .nav-links { gap: 24px; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: rgba(245,247,250,0.98); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid rgba(26,74,122,0.08); transform: translateY(-100%); opacity: 0; pointer-events: none; transition: all 0.3s; }
  .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .hero { padding: 120px 0 60px; }
  .restaurant-features { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .tco-row { gap: 10px; }
  .tco-card { min-width: 100px; padding: 16px 10px; }
  .tco-num { font-size: 24px; }
  .specs-row { gap: 8px; }
  .spec-box { min-width: 100px; padding: 14px 8px; }
  .quote-section blockquote { font-size: 16px; padding: 0 16px; border-left: none; border-top: 3px solid var(--mint); padding-top: 20px; }
  .gallery-arrow { width: 34px; height: 34px; font-size: 14px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-dots { bottom: 10px; gap: 6px; }
  .gallery-dot { width: 8px; height: 8px; }
}
