/* Taksh Global Services FZE LLC - zohdoo.com
   Zoho-style visual system: white ground, Zoho red accent, Lato. */

/* ---------- Tokens ---------- */
:root {
  --white:      #FFFFFF;
  --paper:      #FFFFFF;
  --surface:    #FFFFFF;
  --surface-2:  #F7F8F9;
  --surface-3:  #FBFBFC;
  --ink:        #1A1A1A;
  --ink-2:      #4A4A4A;
  --muted:      #757575;
  --line:       #E4E6E8;
  --line-soft:  #EFF0F2;
  --red:        #E42527;
  --red-dark:   #C31E20;
  --red-tint:   #FDF0F0;
  --blue:       #226DB4;
  --deep:       #2A2A2A;
  --on-red:     #FFFFFF;

  --f-body: "Lato", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-head: "Lato", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --r: 4px;
  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 48px);
  --sec: clamp(56px, 8vw, 96px);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --white:     #17181A;
    --paper:     #17181A;
    --surface:   #1E2023;
    --surface-2: #1B1D20;
    --surface-3: #1E2023;
    --ink:       #F2F3F4;
    --ink-2:     #C9CCD0;
    --muted:     #9AA0A6;
    --line:      #32353A;
    --line-soft: #26292D;
    --red:       #FF5A5C;
    --red-dark:  #FF7476;
    --red-tint:  #2A1D1E;
    --blue:      #6FA8DC;
    --deep:      #101113;
    --on-red:    #1A1011;
  }
}

:root[data-theme="dark"] {
  --white:     #17181A;
  --paper:     #17181A;
  --surface:   #1E2023;
  --surface-2: #1B1D20;
  --surface-3: #1E2023;
  --ink:       #F2F3F4;
  --ink-2:     #C9CCD0;
  --muted:     #9AA0A6;
  --line:      #32353A;
  --line-soft: #26292D;
  --red:       #FF5A5C;
  --red-dark:  #FF7476;
  --red-tint:  #2A1D1E;
  --blue:      #6FA8DC;
  --deep:      #101113;
  --on-red:    #1A1011;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: var(--on-red);
  padding: 10px 16px; z-index: 100; font-size: 14px;
}
.skip:focus { left: 0; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}

.lede {
  font-size: clamp(17px, 1.9vw, 19px);
  color: var(--ink-2);
  max-width: 64ch;
  line-height: 1.68;
}

.muted { color: var(--muted); }

/* ---------- Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.masthead-in { display: flex; align-items: center; gap: 24px; min-height: 68px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }

.brand-mark {
  width: 34px; height: 34px; flex: none;
  background: var(--red); color: #FFFFFF;
  border-radius: var(--r);
  display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 900; font-size: 14px;
  letter-spacing: .01em;
}

.brand-name {
  font-family: var(--f-head); font-weight: 800; font-size: 17px;
  color: var(--ink); line-height: 1.15; display: block;
}

.brand-sub {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin-top: 1px;
}

.nav { display: flex; align-items: center; gap: 30px; }

.nav a {
  font-size: 15px; font-weight: 600; text-decoration: none;
  color: var(--ink-2); padding-block: 4px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--red); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--red); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-body); font-size: 15px; font-weight: 700;
  text-decoration: none; padding: 11px 22px;
  border: 1px solid var(--red); border-radius: var(--r);
  background: var(--red); color: var(--on-red);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); }

.btn-sm { padding: 9px 18px; font-size: 14px; }

/* Nav rules out-specify .btn, so restate the button inside the nav. */
.nav a.btn { color: var(--on-red); border: 1px solid var(--red); border-radius: var(--r); }
.nav a.btn:hover { color: var(--on-red); border-color: var(--red-dark); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--r); color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  padding: 9px 13px; cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 6px var(--gut) 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav a[aria-current="page"] { border-bottom-color: var(--red); }
  .nav .btn { margin-top: 16px; border-bottom: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(52px, 7vw, 92px) clamp(48px, 6.5vw, 84px);
  background: var(--surface-3);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.16;
  margin-top: 16px;
}

.hero .lede { margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Registered particulars card */
.spec {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  overflow: hidden;
}

.spec-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.spec-head strong { color: var(--red); font-weight: 800; }

.spec dl { margin: 0; }

.spec-row {
  display: grid; grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px; padding: 12px 20px;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.spec-row dd { margin: 0; font-size: 15px; font-weight: 600; color: var(--ink); }

@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- Sections ---------- */
.section { padding-block: var(--sec); background: var(--paper); }
.section:nth-of-type(even) { background: var(--surface-3); }

.section-head { max-width: 68ch; }
.section-head h2 { font-size: clamp(27px, 3.3vw, 38px); font-weight: 800; margin-top: 14px; }
.section-head p { margin-top: 14px; }
.section-body { margin-top: clamp(32px, 4.5vw, 48px); }

.page-head {
  padding-block: clamp(44px, 6vw, 76px) clamp(32px, 4.5vw, 52px);
  background: var(--surface-3);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(31px, 4.4vw, 46px); font-weight: 800; margin-top: 14px; }
.page-head .lede { margin-top: 18px; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

.cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.cell:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  border-color: #D9DCDF;
  transform: translateY(-2px);
}

.cell-code {
  font-size: 12px; font-weight: 800; letter-spacing: .09em;
  color: var(--red); margin: 0;
}

.cell h3 { font-size: 20px; font-weight: 700; }
.cell p { color: var(--ink-2); font-size: 15px; }

.cell ul {
  margin: 6px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 7px;
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.cell li {
  font-size: 14px; color: var(--muted);
  padding-left: 18px; position: relative;
}
.cell li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-tint); border: 2px solid var(--red);
  box-sizing: border-box;
}

@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Licensed activities ---------- */
.coverage { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.coverage-col {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px 24px 10px;
}

.coverage-col h3 {
  font-size: 13px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--red);
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.coverage-col ul { list-style: none; margin: 0; padding: 0; }
.coverage-col li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 15px; color: var(--ink);
}
.coverage-col li:last-child { border-bottom: 0; }
.coverage-col li span {
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  color: var(--muted); background: var(--surface-2);
  border-radius: 3px; padding: 2px 7px; align-self: center;
  white-space: nowrap;
}

@media (max-width: 800px) { .coverage { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }

.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); border-top: 3px solid var(--red);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
}

.step-n {
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  color: var(--red); font-variant-numeric: tabular-nums; margin: 0;
}
.step h3 { font-size: 17px; font-weight: 700; }
.step p { font-size: 14px; color: var(--muted); }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Statement band ---------- */
.band { background: var(--surface-2); border-block: 1px solid var(--line); }
.band .wrap { padding-block: clamp(50px, 7vw, 80px); }

.band h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; max-width: 20ch; color: var(--ink); }
.band p { color: var(--ink-2); max-width: 54ch; margin-top: 16px; }

.band-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 60px); align-items: start;
}

.principles { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.principles li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 20px;
  display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 14px; align-items: start;
}

.principles b {
  font-size: 12px; font-weight: 800; color: var(--red);
  letter-spacing: .05em; padding-top: 3px;
}
.principles strong {
  display: block; font-family: var(--f-head); font-weight: 700;
  font-size: 16.5px; color: var(--ink); margin-bottom: 3px;
}
.principles span { color: var(--ink-2); font-size: 14.5px; }

@media (max-width: 820px) { .band-grid { grid-template-columns: 1fr; } }

/* ---------- Prose ---------- */
.prose {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.prose-body { display: flex; flex-direction: column; gap: 18px; max-width: 66ch; }
.prose-body p { color: var(--ink-2); }
.prose-body h3 { font-size: 21px; font-weight: 700; margin-top: 12px; }

@media (max-width: 860px) { .prose { grid-template-columns: 1fr; } }

/* ---------- Service detail rows ---------- */
.svc {
  display: grid; grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(26px, 3.5vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}
.svc:first-of-type { border-top: 1px solid var(--line); }

.svc-label { display: flex; flex-direction: column; gap: 7px; }
.svc-label h3 { font-size: 21px; font-weight: 700; }

.svc-detail { display: flex; flex-direction: column; gap: 16px; }
.svc-detail p { color: var(--ink-2); max-width: 68ch; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.tags li {
  font-size: 13px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--surface-2);
  color: var(--ink-2);
}

@media (max-width: 760px) { .svc { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 60px); align-items: start;
}

.contact-grid > div > h2 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }

.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 15px;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 11px 13px; width: 100%;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-note { font-size: 13.5px; color: var(--muted); margin-top: 14px; max-width: 48ch; }

.detail-list {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 4px 22px;
}
.detail-list dl { margin: 0; }
.detail-list div {
  display: grid; grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px; padding: 15px 0;
  border-bottom: 1px solid var(--line-soft); align-items: baseline;
}
.detail-list div:last-child { border-bottom: 0; }
.detail-list dt { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.detail-list dd { margin: 0; font-size: 15px; color: var(--ink); }
.detail-list dd a { color: var(--blue); text-decoration: none; }
.detail-list dd a:hover { text-decoration: underline; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA strip ---------- */
.cta { background: var(--red); }
.cta .wrap {
  padding-block: clamp(40px, 5.5vw, 60px);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
}
.cta h2 { font-size: clamp(23px, 2.8vw, 31px); font-weight: 800; color: #FFFFFF; max-width: 22ch; }
.cta p { color: rgba(255,255,255,.9); margin-top: 8px; max-width: 48ch; }
.cta .btn {
  background: #FFFFFF; color: var(--red); border-color: #FFFFFF;
}
.cta .btn:hover { background: #F4F4F4; border-color: #F4F4F4; color: var(--red); }

/* ---------- Footer ---------- */
.foot { background: var(--deep); color: #B9BDC2; font-size: 14.5px; }
.foot .wrap { padding-block: clamp(42px, 5.5vw, 60px) 26px; }

.foot-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  padding-bottom: 32px; border-bottom: 1px solid #3D3D3D;
}

.foot h4 {
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #FFFFFF; margin-bottom: 15px;
}

.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.foot a { color: #B9BDC2; text-decoration: none; }
.foot a:hover { color: #FFFFFF; text-decoration: underline; text-underline-offset: 3px; }

.foot-brand .brand-name { color: #FFFFFF; }
.foot-brand .brand-sub { color: #8E9297; }
.foot-brand p { margin-top: 14px; color: #9BA0A5; max-width: 34ch; font-size: 14.5px; }

.foot-base {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  justify-content: space-between; padding-top: 20px;
  font-size: 12.5px; color: #83888D;
}

@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
