/* Vermaak Accounting — static site styles
   Translated from the original Tailwind v4 + oklch design tokens. */

@import url("https://fonts.googleapis.com/css2?family=Bakbak+One&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

:root {
  --radius: 1.25rem;

  --background: oklch(0.99 0 0);
  --foreground: oklch(0.23 0.006 20);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.23 0.006 20);

  --primary: oklch(0.45 0.16 299);
  --primary-foreground: oklch(0.99 0 0);
  --secondary: oklch(0.955 0.008 300);
  --secondary-foreground: oklch(0.34 0.12 299);
  --muted: oklch(0.96 0.003 280);
  --muted-foreground: oklch(0.5 0.015 285);
  --accent: oklch(0.55 0.23 355);
  --accent-foreground: oklch(0.99 0 0);
  --border: oklch(0.9 0.004 280);
  --input: oklch(0.9 0.004 280);
  --ring: oklch(0.45 0.16 299);

  --navy: oklch(0.23 0.006 20);
  --navy-foreground: oklch(0.98 0 0);
  --gold: oklch(0.55 0.23 355);
  --gold-foreground: oklch(0.99 0 0);

  --gradient-navy: linear-gradient(150deg, oklch(0.2 0.006 20), oklch(0.26 0.02 300));
  --gradient-gold: linear-gradient(100deg, oklch(0.45 0.16 299), oklch(0.58 0.14 245) 45%, oklch(0.55 0.23 355));
  --gradient-brand: linear-gradient(135deg, oklch(0.45 0.16 299), oklch(0.58 0.14 245) 50%, oklch(0.55 0.23 355));

  --shadow-soft: 0 1px 2px oklch(0.23 0.006 20 / 0.06), 0 14px 34px -14px oklch(0.45 0.16 299 / 0.28);
  --shadow-lift: 0 30px 70px -28px oklch(0.45 0.16 299 / 0.45);

  --font-display: "Bakbak One", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Nunito Sans", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 400;
  line-height: 1.05;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-gradient-brand {
  background-image: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.ring-brand {
  background-image: var(--gradient-brand);
}

.surface-navy {
  background-image: var(--gradient-navy);
  color: var(--navy-foreground);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-lift {
  box-shadow: var(--shadow-lift);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: filter 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  font-family: inherit;
  text-align: center;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn-xl {
  height: 3.25rem;
  padding: 0 2.25rem;
  border-radius: 0.9rem;
  font-size: 1rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--gold-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--input);
  box-shadow: 0 1px 2px oklch(0.23 0.006 20 / 0.05);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-full {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid oklch(0.9 0.004 280 / 0.6);
  background-color: oklch(0.99 0 0 / 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2.25rem;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

.site-nav a:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
  .logo-img {
    height: 2.5rem;
  }
}

.header-cta {
  height: 2.5rem;
  padding: 0 1.25rem;
  font-size: 0.9rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--background);
}

.hero-blob {
  pointer-events: none;
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
}

.hero-blob-1 {
  top: -13rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  opacity: 0.25;
}

.hero-blob-2 {
  bottom: -14rem;
  left: -10rem;
  width: 28rem;
  height: 28rem;
  opacity: 0.2;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.375rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  box-shadow: var(--shadow-soft);
}

.eyebrow svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--accent);
}

h1.hero-title {
  margin-top: 1.5rem;
  font-size: 2.6rem;
  line-height: 0.95;
}

@media (min-width: 640px) {
  h1.hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  h1.hero-title {
    font-size: 4.5rem;
  }
}

.hero-lede {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.proof-list {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.proof-list li {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 0.375rem 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary-foreground);
}

.hero-media {
  position: relative;
}

.hero-frame {
  border-radius: 2rem;
  padding: 3px;
  box-shadow: var(--shadow-lift);
}

.hero-frame img {
  width: 100%;
  border-radius: calc(2rem - 3px);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .hero-badge {
    left: -2rem;
  }
}

.hero-badge img {
  height: 2.25rem;
  width: auto;
}

.hero-badge span {
  max-width: 9rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--muted-foreground);
}

/* ---------- Sections generic ---------- */

section {
  scroll-margin-top: 4.5rem;
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section-pad {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.eyebrow-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.section-head {
  max-width: 42rem;
}

.section-head h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .section-head h2 {
    font-size: 3rem;
  }
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

/* ---------- Services ---------- */

.services-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.375rem);
}

.service-card .top-bar {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #fff;
}

.service-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.service-card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}

.service-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- About ---------- */

.about-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklch, var(--secondary) 50%, transparent);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-grid h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .about-grid h2 {
    font-size: 3rem;
  }
}

.about-grid p {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
}

.about-stats {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.about-stats .stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.about-stats .stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-saipa-logo {
  margin-top: 2.5rem;
  height: 3rem;
  width: auto;
}

.how-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.how-card h3 {
  font-size: 1.5rem;
}

.how-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-list li {
  display: flex;
  gap: 1rem;
}

.how-step {
  font-family: var(--font-display);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.how-list .how-title {
  font-weight: 700;
}

.how-list .how-body {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

/* ---------- Contact ---------- */

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-blob {
  pointer-events: none;
  position: absolute;
  left: -8rem;
  top: 0;
  width: 30rem;
  height: 30rem;
  border-radius: 9999px;
  opacity: 0.4;
  filter: blur(64px);
}

.contact-grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.contact-logo {
  height: 2.5rem;
  width: auto;
  opacity: 0.95;
}

.contact-grid h2 {
  margin-top: 2rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .contact-grid h2 {
    font-size: 3rem;
  }
}

.contact-lede {
  margin-top: 1.25rem;
  max-width: 28rem;
  color: oklch(0.98 0 0 / 0.75);
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.contact-details a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: opacity 0.2s ease;
}

.contact-details a:hover {
  opacity: 0.8;
}

.contact-details svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-details .line-main {
  display: block;
  font-weight: 700;
}

.contact-details .line-sub {
  color: oklch(0.98 0 0 / 0.6);
}

/* ---------- Form ---------- */

.form-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  color: var(--foreground);
}

@media (min-width: 640px) {
  .form-card {
    padding: 2rem;
  }
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: normal;
}

.form-card > p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.form-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field.col-span-2 {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--foreground);
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--ring);
  outline-offset: 1px;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.form-done {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  color: var(--foreground);
}

.form-done h3 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

.form-done p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.form-done a {
  font-weight: 600;
  color: var(--primary);
}

.form-done button {
  margin-top: 1.5rem;
}

.field-hint {
  margin-top: -0.25rem;
  font-size: 0.75rem;
  color: var(--destructive, oklch(0.577 0.245 27.325));
}

[hidden] {
  display: none !important;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    text-align: left;
  }
}

.footer-inner img {
  height: 2rem;
  width: auto;
}
