/* ── SOFTCLOUD SHARED STYLESHEET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: #111827; background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --blue: #288BFF; --blue-d: #1a72e8; --blue-pale: #EBF4FF;
  --navy: #0D1B36; --navy-mid: #112040; --navy-light: #1a2f52;
  --teal: #0ABFA3; --teal-pale: #E6FAF7;
  --text: #111827; --text-mid: #374151; --muted: #6B7280;
  --bg-alt: #F8FAFC; --border: #E5E7EB;
  --green: #10B981; --green-pale: #ECFDF5;
  --orange: #F97316; --orange-pale: #FFF7ED;
  --r: 12px;
  --sh: 0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
  --sh-lg: 0 8px 32px rgba(0,0,0,.12);
}

/* TYPOGRAPHY */
h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: .95rem; font-weight: 600; }
p { color: var(--text-mid); }

/* LAYOUT */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 68px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); }
.section-navy-mid { background: var(--navy-mid); }
.text-center { text-align: center; }

/* LABELS */
.label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.label-blue { background: var(--blue-pale); color: var(--blue); }
.label-navy { background: rgba(40,139,255,.15); color: #7ab8ff; }
.label-teal { background: var(--teal-pale); color: #059669; }
.label-orange { background: var(--orange-pale); color: var(--orange); }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin-top: 10px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; font-size: .975rem;
  font-weight: 600; cursor: pointer; transition: all .18s;
  font-family: inherit; border: 2px solid transparent; line-height: 1;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-d); border-color: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(40,139,255,.38); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; border-radius: 10px; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: .85rem; border-radius: 7px; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,27,54,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 64px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; }
.nav-links a { padding: 8px 13px; border-radius: 6px; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.6); transition: all .15s; white-space: nowrap; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: #7ab8ff; background: rgba(40,139,255,.15); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-contact { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.6); padding: 8px 12px; border-radius: 6px; transition: all .15s; }
.nav-contact:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-demo { font-size: .875rem; font-weight: 600; color: #fff; background: var(--blue); padding: 9px 18px; border-radius: 7px; transition: all .18s; }
.nav-demo:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(40,139,255,.35); }
.nav-ham { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: #fff; }

/* FOOTER */
footer { background: #070f20; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo img { height: 48px; width: auto; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .82rem; line-height: 1.7; max-width: 240px; }
.footer-tagline { color: rgba(255,255,255,.25); font-size: .75rem; margin-top: 6px; font-style: italic; }
.footer-col h5 { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 600; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: rgba(255,255,255,.38); font-size: .82rem; transition: color .15s; }
.footer-col ul a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { color: rgba(255,255,255,.25); font-size: .78rem; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: all .15s; font-size: .7rem; font-weight: 700; }
.footer-social a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* MOBILE MENU */
.mob-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); }
.mob-overlay.open { display: block; }
.mob-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(300px,85vw); background: #fff; padding: 20px; display: flex; flex-direction: column; gap: 6px; box-shadow: -8px 0 48px rgba(0,0,0,.22); }
.mob-close { align-self: flex-end; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); padding: 4px; margin-bottom: 6px; line-height: 1; }
.mob-panel a { padding: 12px 14px; border-radius: 7px; font-size: .95rem; font-weight: 500; color: var(--text); transition: background .15s; }
.mob-panel a:hover { background: var(--bg-alt); }
.mob-cta { margin-top: 10px; background: var(--blue); color: #fff !important; text-align: center; border-radius: 8px; font-weight: 600 !important; }
.mob-cta:hover { background: var(--blue-d); }

/* FORM */
.form-wrap { background: #fff; border-radius: 16px; padding: 34px 32px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.form-ttl { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.form-sub { font-size: .82rem; color: var(--muted); margin-bottom: 22px; }
.form-grp { margin-bottom: 16px; }
.form-grp label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-grp select, .form-grp input, .form-grp textarea {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--border);
  border-radius: 7px; font-size: .875rem; font-family: inherit;
  color: var(--text); background: #fff; transition: border-color .15s;
  -webkit-appearance: none; appearance: none;
}
.form-grp select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 11px center; padding-right: 32px; cursor: pointer; }
.form-grp select:focus, .form-grp input:focus, .form-grp textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40,139,255,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.form-btn { width: 100%; padding: 15px; background: var(--blue); color: #fff; border: none; border-radius: 9px; font-size: .975rem; font-weight: 700; cursor: pointer; transition: all .18s; font-family: inherit; margin-top: 4px; }
.form-btn:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(40,139,255,.38); }
.form-small { font-size: .74rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* CHECK LIST */
.uc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.uc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-mid); }
.uc-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-pale); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.uc-check svg { width: 10px; height: 10px; stroke: #059669; stroke-width: 2.5; fill: none; }

/* PARTNER LOGO CHIPS (text-based until real logos confirmed) */
.partner-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pchip { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: 8px; font-weight: 700; font-size: .85rem; white-space: nowrap; }
/* light bg version */
.pchip-light { background: #fff; border: 1px solid var(--border); color: var(--text); box-shadow: var(--sh); }
/* dark bg version */
.pchip-dark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.pchip.sabre { color: #C8102E; }
.pchip.travelport { color: #0D2D6B; }
.pchip.stuba { color: #003DA5; }
.pchip.tbo { color: #1B4F9B; }
.pchip.ratehawk { color: #FF6B00; }
.pchip.hotelbeds { color: #00B5CC; }
.pchip.bedsonline { color: #0066CC; }
.pchip.stripe { color: #635BFF; }
.pchip.braintree { color: #1494D9; }
.pchip.barclaycard { color: #00AEEF; }
.pchip.paystack { color: #00C3F7; }
.pchip.paysafe { color: #003087; }
.pchip.emerchant { color: #E87722; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .section { padding: 46px 0; }
  .nav-links, .nav-contact { display: none; }
  .nav-ham { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* PRICING */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.pricing-card { background:#fff; border:2px solid var(--border); border-radius:16px; padding:32px; box-shadow:var(--sh); position:relative; transition:box-shadow .2s,transform .2s; }
.pricing-card:hover { box-shadow:var(--sh-lg); transform:translateY(-3px); }
.pricing-card.featured { border-color:var(--blue); box-shadow:0 0 0 1px var(--blue),var(--sh-lg); }
.pricing-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--blue); color:#fff; font-size:.72rem; font-weight:700; padding:4px 14px; border-radius:100px; white-space:nowrap; }
.pricing-name { font-size:.8rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.07em; margin-bottom:12px; }
.pricing-price { font-size:2.4rem; font-weight:800; color:var(--text); line-height:1; margin-bottom:4px; }
.pricing-price span { font-size:1rem; font-weight:600; color:var(--muted); }
.pricing-period { font-size:.82rem; color:var(--muted); margin-bottom:20px; }
.pricing-desc { font-size:.875rem; color:var(--text-mid); margin-bottom:20px; line-height:1.6; padding-bottom:20px; border-bottom:1px solid var(--border); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.pricing-features li { display:flex; align-items:flex-start; gap:9px; font-size:.875rem; color:var(--text-mid); }
.pricing-features li svg { width:15px; height:15px; stroke:#059669; stroke-width:2.5; fill:none; flex-shrink:0; margin-top:2px; }
.pricing-triphub-offer { background:var(--green-pale); border:1px solid #bbf7d0; border-radius:10px; padding:14px 16px; margin-top:16px; }
.pricing-triphub-offer p { color:#065f46; font-size:.82rem; font-weight:600; }
@media (max-width:900px) { .pricing-grid { grid-template-columns:1fr; max-width:400px; } }
