/* ==========================================================================
   Oranz Biz Corporation LLP — Shared Stylesheet
   Palette: Cyan #51E2F5 · Mint #EDF7F6 · Navy #0A2540
   Typeface: Fertigo Pro (licensed — drop web-font files into /fonts)
   ========================================================================== */

/* ---- Fertigo Pro web-font (commercial — supply your own licensed files) ---
   Place the files in a "fonts" folder next to this stylesheet:
     fonts/FertigoPro-Regular.woff2 / .woff
     fonts/FertigoPro-Medium.woff2  / .woff
   Until the files are present, the serif fallback (Georgia) is used.        */
@font-face {
  font-family: 'Fertigo Pro';
  src: url('fonts/FertigoPro-Regular.woff2') format('woff2'),
       url('fonts/FertigoPro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fertigo Pro';
  src: url('fonts/FertigoPro-Medium.woff2') format('woff2'),
       url('fonts/FertigoPro-Medium.woff') format('woff');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: 'Fertigo Pro', 'Palatino Linotype', 'Book Antiqua', Georgia, 'Times New Roman', serif;
  --font-head: 'Fertigo Pro', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --cyan: #51E2F5;
  --cyan-dark: #16A7C0;
  --cyan-deep: #0E7B8F;
  --mint: #EDF7F6;
  --navy: #0A2540;
  --navy-soft: #12324F;
  --slate: #47617A;
  --line: #D6E8E9;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.14);
  --radius: 14px;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--mint { background: var(--mint); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy p { color: #B9CEDD; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--cyan); }

.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  border: 2px solid transparent; transition: all .22s ease;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--cyan { background: var(--cyan); color: var(--navy); }
.btn--cyan:hover { background: #6fe8f7; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(81,226,245,.4); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--cyan-dark); color: var(--cyan-deep); }
.section--navy .btn--ghost,
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.section--navy .btn--ghost:hover,
.hero .btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; color: var(--navy); }
/* Real logo image (drop logo.png in this folder). When it loads, the text
   fallback is hidden automatically; if it's missing the text mark shows. */
.brand-logo { height: 70px; width: auto; display: block; }
.footer-logo { height: 76px; width: auto; display: block; margin-bottom: 16px; }
.brand:has(.brand-logo) .brand-mark,
.brand:has(.brand-logo) .brand-name { display: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  display: grid; place-items: center; color: var(--navy); font-weight: 900; font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(81,226,245,.4);
}
.brand small { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .1em; color: var(--slate); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-weight: 600; font-size: .96rem; color: var(--navy-soft); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan-deep); }
.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 55%, #0d3a52 100%);
  color: var(--white); padding: 96px 0 104px;
}
.hero::after {
  content: ""; position: absolute; right: -140px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(81,226,245,.35) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 span { color: var(--cyan); }
.hero p { color: #C4D6E4; font-size: 1.18rem; margin: 22px 0 34px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .num { font-size: 1.9rem; font-weight: 800; color: var(--cyan); }
.hero-stats .lbl { font-size: .85rem; color: #9FB6C8; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 30px; backdrop-filter: blur(6px);
}
.hero-card h3 { color: #fff; margin-bottom: 18px; }
.hero-card ul { list-style: none; display: grid; gap: 14px; }
.hero-card li { display: flex; align-items: center; gap: 12px; color: #D5E4EF; font-size: .98rem; }
.hero-card li .tick { flex: none; width: 24px; height: 24px; color: var(--cyan); }
.hero-card li .tick svg { width: 24px; height: 24px; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.card-icon {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 18px;
  background: var(--mint); color: var(--cyan-deep);
  display: grid; place-items: center;
}

/* ---------- Custom SVG icons ---------- */
[data-icon] { display: inline-grid; place-items: center; line-height: 0; }
[data-icon] svg { width: 24px; height: 24px; display: block; }
.card-icon[data-icon] svg { width: 30px; height: 30px; }
.feature .fi[data-icon] svg { width: 24px; height: 24px; }
.info-item .ii[data-icon] svg { width: 24px; height: 24px; }
/* two-tone accent element inside icons */
[data-icon] .dot { fill: var(--cyan-dark); stroke: none; }
.feature .fi[data-icon] .dot { fill: var(--navy); }
/* footer inline mini icons */
.mini-ic { display: inline-grid; width: 15px; height: 15px; vertical-align: -2px; margin-right: 8px; color: var(--cyan); }
.mini-ic svg { width: 15px; height: 15px; }
.mini-ic .dot { fill: var(--cyan); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }

/* ---------- Why-us list ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .fi {
  flex: none; width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  display: grid; place-items: center; color: var(--navy); font-weight: 900; font-size: 1.15rem;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { font-size: .95rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; }
.step .no {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cyan); color: var(--navy); font-weight: 800;
  display: grid; place-items: center; margin-bottom: 16px; font-size: 1.05rem;
}
.section--navy .step h3 { color: #fff; font-size: 1.05rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  border-radius: 22px; padding: 52px; text-align: center; color: var(--navy);
}
.cta-band h2 { color: var(--navy); }
.cta-band p { color: #073a45; margin: 12px auto 26px; max-width: 560px; font-weight: 500; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; padding: 72px 0; text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #B9CEDD; max-width: 640px; margin: 14px auto 0; font-size: 1.08rem; }
.crumbs { font-size: .85rem; color: var(--cyan); margin-bottom: 14px; letter-spacing: .04em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.info-item .ii {
  flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--mint);
  color: var(--cyan-deep); display: grid; place-items: center; font-size: 1.35rem;
}
.info-item h4 { font-size: 1.02rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--slate); font-size: .97rem; }
.info-item a:hover { color: var(--cyan-deep); }

form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--navy); background: #FBFEFE; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan-dark); box-shadow: 0 0 0 3px rgba(81,226,245,.25);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--slate); margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #B9CEDD; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand small { color: #8FA9BC; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .03em; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: #A7BFD0; font-size: .92rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: #8FA9BC; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav-links {
    position: fixed; inset: 90px 0 auto 0; background: #fff; flex-direction: column;
    gap: 0; padding: 8px 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .3s ease; z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .steps, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 24px; }
}
