:root {
  --navy: #082044;
  --navy-deep: #06172d;
  --blue: #12395f;
  --blue-bright: #1f4d79;
  --blue-light: #9dc3e8;
  --blue-pale: #eaf2f9;
  --orange: #c9471a;
  --orange-dark: #a93610;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dce5ed;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --surface-blue: #f1f6fa;
  --shadow-sm: 0 10px 28px rgba(8, 32, 68, 0.08);
  --shadow-md: 0 18px 48px rgba(6, 23, 45, 0.12);
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.6rem, 5.1vw, 4.65rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

h3 {
  font-size: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid rgba(241, 90, 36, 0.56);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--orange);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.company-strip {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy-deep);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.company-strip .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.company-strip strong {
  color: var(--surface);
  font-weight: 700;
  margin-right: 0.28em;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(220, 229, 237, 0.9);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(6, 23, 45, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 790;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 540;
  letter-spacing: 0.015em;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #314056;
  font-size: 0.9rem;
  font-weight: 650;
}

.primary-nav > a:not(.nav-contact) {
  position: relative;
  padding-block: 8px;
}

.primary-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-contact):hover::after,
.primary-nav > a[aria-current="page"]:not(.nav-contact)::after {
  transform: scaleX(1);
}

.nav-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 17px;
  color: var(--surface);
  background: var(--orange);
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(201, 71, 26, 0.18);
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-contact:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero,
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--surface);
  background:
    radial-gradient(circle at 82% 12%, rgba(93, 151, 206, 0.44), transparent 31%),
    radial-gradient(circle at 10% 100%, rgba(31, 77, 121, 0.64), transparent 42%),
    linear-gradient(124deg, #082044 0%, #0c2c50 47%, #123f69 100%);
}

.hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 470px;
  right: -250px;
  bottom: -290px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.03), 0 0 0 140px rgba(255, 255, 255, 0.02);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
  padding-block: 76px 92px;
}

.hero-copy {
  max-width: 760px;
}

.hero-eyebrow,
.section-label,
.card-label,
.panel-label,
.path-label {
  margin-bottom: 15px;
  font-size: 0.77rem;
  font-weight: 790;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--blue-light);
}

.hero h1,
.contact-hero h1 {
  max-width: 950px;
  margin-bottom: 27px;
  color: var(--surface);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 740;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(6, 23, 45, 0.2);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 28px rgba(6, 23, 45, 0.25);
}

.button-secondary {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--surface);
}

.hero-note {
  max-width: 680px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.6;
}

.hero-note strong {
  color: var(--surface);
}

.hero-visual {
  width: min(100%, 390px);
  margin: 0 0 0 auto;
  overflow: hidden;
  background: #e9edf0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(1, 13, 28, 0.34);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.confidence-strip {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding-bottom: 30px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.confidence-grid article {
  min-height: 168px;
  padding: 28px 26px;
}

.confidence-grid article + article {
  border-left: 1px solid var(--line);
}

.confidence-grid h2 {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.confidence-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.section {
  padding-block: 92px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-label,
.card-label,
.panel-label,
.path-label {
  color: var(--blue-bright);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.03rem;
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px 70px;
  padding: clamp(34px, 5vw, 62px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.workflow-summary h2 {
  margin-bottom: 21px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.workflow-summary > p:not(.section-label) {
  color: var(--muted);
}

.workflow-steps,
.foundation-list,
.commercial-path,
.enquiry-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 30px;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 13px;
}

.step-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
}

.workflow-steps h3 {
  margin: 4px 0 7px;
  font-size: 1.04rem;
}

.workflow-steps p {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.57;
}

.workflow-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 25px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.capabilities-section {
  padding-top: 104px;
}

.capability-grid {
  display: grid;
  gap: 22px;
}

.capability-grid-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.capability-grid-secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 31px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 9px 26px rgba(8, 32, 68, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.capability-card:hover {
  transform: translateY(-3px);
  border-color: #c8d7e4;
  box-shadow: var(--shadow-sm);
}

.capability-card-large {
  padding: 37px;
  background: linear-gradient(155deg, #ffffff 10%, #f7fafc 100%);
}

.card-label {
  margin-bottom: 13px;
  font-size: 0.69rem;
}

.capability-card h3 {
  margin-bottom: 15px;
  font-size: 1.28rem;
}

.capability-card-large h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.capability-card p:not(.card-label):not(.card-outcome) {
  color: var(--muted);
}

.card-outcome {
  margin: auto 0 0;
  padding-top: 18px;
  color: #34465c;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 610;
  line-height: 1.55;
}

.fit-grid,
.why-grid,
.contact-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 96px);
}

.fit-copy h2,
.why-copy h2,
.contact-fit-grid h2 {
  margin-bottom: 22px;
}

.fit-copy > p:not(.section-label),
.why-copy > p:not(.section-label),
.contact-fit-grid > div:first-child > p:not(.section-label) {
  color: var(--muted);
}

.lead {
  color: #34465c !important;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: #34465c;
  font-size: 0.9rem;
  font-weight: 610;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.language-panel,
.contact-language-card {
  padding: clamp(32px, 5vw, 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.language-panel h3,
.contact-language-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.language-panel > p:not(.section-label),
.contact-language-card p {
  color: var(--muted);
}

.language-rule {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  padding-block: 17px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.language-rule:first-of-type {
  margin-top: 26px;
}

.language-rule strong {
  color: var(--navy);
}

.language-rule span {
  color: var(--muted);
  text-align: right;
}

.process-section {
  background: var(--surface);
}

.commercial-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.commercial-path li {
  min-height: 265px;
  padding: 31px 27px;
}

.commercial-path li + li {
  border-left: 1px solid var(--line);
}

.commercial-path .step-number {
  margin-bottom: 27px;
  background: var(--blue-pale);
  color: var(--blue);
}

.path-label {
  margin-bottom: 7px;
  font-size: 0.67rem;
}

.commercial-path h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
}

.commercial-path p:not(.path-label) {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  padding: 25px 28px;
  background: var(--surface-blue);
  border: 1px solid #d8e5ef;
  border-radius: var(--radius-md);
}

.service-note div {
  display: grid;
  gap: 2px;
}

.service-note span {
  color: var(--blue-bright);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-note strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.service-note a,
.text-link {
  color: var(--blue-bright);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(31, 77, 121, 0.34);
  text-underline-offset: 4px;
}

.service-note a:hover,
.text-link:hover {
  color: var(--orange-dark);
  text-decoration-color: currentColor;
}

.why-section {
  background: var(--surface-soft);
}

.text-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 7px;
}

.foundation-list {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.foundation-list li {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 17px;
  padding: 25px 28px;
}

.foundation-list li + li {
  border-top: 1px solid var(--line);
}

.foundation-list > li > span {
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.foundation-list h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.foundation-list p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  margin-top: 48px;
  padding: clamp(30px, 5vw, 50px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.video-feature-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.video-feature-copy > p:not(.section-label) {
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(6, 23, 45, 0.2);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  padding-block: 70px;
  background: var(--surface);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(34px, 5vw, 54px);
  background: linear-gradient(135deg, #f1f6fa 0%, #f8fafc 100%);
  border: 1px solid #d8e5ef;
  border-radius: var(--radius-lg);
}

.final-cta-inner > div {
  max-width: 730px;
}

.final-cta h2 {
  margin-bottom: 11px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.final-cta p:not(.section-label) {
  color: var(--muted);
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding-top: 62px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-deep);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 35px;
}

.brand-footer .brand-name {
  color: var(--surface);
}

.brand-footer .brand-tagline {
  color: rgba(255, 255, 255, 0.63);
}

.footer-brand > p {
  max-width: 475px;
  margin: 0;
  font-size: 0.86rem;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px 26px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.83rem;
  font-weight: 620;
}

.footer-links a:hover {
  color: var(--surface);
}

.footer-qualification {
  margin-top: 0;
  margin-bottom: 0;
  padding-block: 22px;
  color: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  line-height: 1.65;
  text-align: center;
}

/* Australia footer: company details, intact registration numbers and service note. */
.footer-base {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px 30px;
  padding-block: 22px;
  font-size: 0.75rem;
}

.footer-base p {
  margin: 0;
}

.footer-base > p:last-child {
  grid-column: 1 / -1;
}

.footer-registration {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 18px;
}

.footer-registration span {
  white-space: nowrap;
}

/* Existing-client telephone: prominent click-to-call link on the contact page. */
.client-phone {
  margin-bottom: 18px;
}

.client-phone a {
  display: inline-block;
  padding-block: 4px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.client-phone a:hover {
  text-decoration-line: underline;
}

.contact-hero-grid {
  min-height: 545px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  padding-block: 76px 86px;
}

.contact-hero-copy {
  max-width: 720px;
}

.contact-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.45rem);
}

.contact-email-panel {
  padding: clamp(30px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 65px rgba(1, 13, 28, 0.28);
}

.contact-email-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.contact-email-panel > p:not(.panel-label) {
  color: var(--muted);
  font-size: 0.91rem;
}

.contact-email-panel .enquiry-prompt {
  margin: 22px 0 0;
  padding: 16px 17px;
  color: #34465c;
  background: var(--surface-blue);
  border: 1px solid #d8e5ef;
  border-radius: 9px;
  line-height: 1.55;
}

.enquiry-prompt strong {
  color: var(--navy);
}

.contact-email {
  display: block;
  margin: 25px 0 22px;
  padding: 15px 16px;
  color: var(--surface);
  background: var(--orange);
  border-radius: 7px;
  font-size: clamp(0.89rem, 1.5vw, 1rem);
  font-weight: 760;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-email:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.contact-email-panel .response-note {
  margin-bottom: 0;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  font-size: 0.79rem !important;
}

.enquiry-section {
  background: var(--surface);
}

.enquiry-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.enquiry-points li {
  min-height: 235px;
  padding: 29px 27px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(8, 32, 68, 0.05);
}

.enquiry-points > li > span {
  display: block;
  margin-bottom: 31px;
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.enquiry-points h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.enquiry-points p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.next-step-grid article {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.next-step-grid .step-number {
  margin-bottom: 25px;
}

.next-step-grid h3 {
  margin-bottom: 11px;
}

.next-step-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-fit-section {
  background: var(--surface);
}

.contact-language-card {
  background: var(--surface-blue);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--surface-soft);
}

.error-shell {
  width: min(100%, 720px);
  display: grid;
  gap: 70px;
  padding: clamp(35px, 7vw, 72px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.error-shell h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.error-shell p:not(.section-label) {
  color: var(--muted);
}

.error-shell .button {
  margin-top: 14px;
}

/* Internal pages */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--surface);
  background:
    radial-gradient(circle at 84% 0%, rgba(93, 151, 206, 0.4), transparent 34%),
    linear-gradient(124deg, #082044 0%, #0c2c50 52%, #123f69 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  right: -230px;
  bottom: -285px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 66px rgba(255, 255, 255, 0.028), 0 0 0 132px rgba(255, 255, 255, 0.018);
}

.page-hero-inner {
  max-width: 990px;
  padding-block: 84px 92px;
}

.page-hero h1 {
  max-width: 970px;
  margin-bottom: 24px;
  color: var(--surface);
  font-size: clamp(2.7rem, 5.1vw, 4.55rem);
}

.page-hero-lead {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  line-height: 1.68;
}

.page-classification {
  display: inline-flex;
  max-width: 820px;
  margin: 25px 0 0;
  padding: 11px 15px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--blue-bright);
  font-weight: 680;
}

.breadcrumb a:hover {
  color: var(--orange-dark);
}

.split-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
  margin-bottom: 48px;
}

.split-heading-grid h2 {
  margin-bottom: 0;
}

.body-copy > p,
.process-copy > p:not(.section-label) {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 22px;
}

.feature-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card,
.tech-card,
.pricing-card {
  min-height: 100%;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(8, 32, 68, 0.05);
}

.detail-card h3,
.tech-card h3,
.pricing-card h3 {
  margin-bottom: 12px;
}

.detail-card p,
.tech-card p:not(.card-label),
.pricing-card > p:not(.card-label):not(.price) {
  color: var(--muted);
  font-size: 0.91rem;
}

.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 17px;
  color: var(--blue-bright);
  border-top: 1px solid var(--line);
  font-size: 0.87rem;
  font-weight: 760;
}

.card-action:hover {
  color: var(--orange-dark);
}

.capability-card .card-outcome + .card-action {
  margin-top: 13px;
}

.example-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 7vw, 90px);
  margin-top: 15px;
  padding: clamp(32px, 5vw, 52px);
  color: rgba(255, 255, 255, 0.77);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.example-panel .section-label {
  color: var(--blue-light);
}

.example-panel h3 {
  margin-bottom: 0;
  color: var(--surface);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  align-items: start;
  gap: clamp(50px, 8vw, 96px);
}

.outcome-grid h2 {
  margin-bottom: 27px;
}

.outcome-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.outcome-list li {
  position: relative;
  padding: 18px 0 18px 27px;
  color: #34465c;
  border-bottom: 1px solid var(--line);
}

.outcome-list li::before {
  content: "";
  position: absolute;
  top: 1.55em;
  left: 2px;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
}

.control-panel {
  padding: clamp(31px, 5vw, 45px);
  background: var(--surface-blue);
  border: 1px solid #d8e5ef;
  border-radius: var(--radius-lg);
}

.control-panel h3 {
  margin-bottom: 19px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.control-panel > p:not(.section-label) {
  color: var(--muted);
}

.plain-list li {
  position: relative;
  padding: 12px 0 12px 21px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.plain-list li:last-child {
  border-bottom: 0;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 1.28em;
  left: 1px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.language-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
  padding: clamp(34px, 5vw, 52px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.language-callout h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.language-callout > p {
  color: var(--muted);
}

.related-section {
  padding-top: 78px;
}

.related-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(48px, 8vw, 95px);
  align-items: center;
}

.related-grid > div > p:not(.section-label),
.related-grid > aside > p:not(.section-label) {
  color: var(--muted);
}

.related-grid .button {
  margin-top: 16px;
}

.related-grid aside {
  padding: 32px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tech-card {
  border-top: 3px solid var(--blue-bright);
}

.insight-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(40px, 7vw, 85px);
  margin-top: 25px;
  padding: clamp(34px, 5vw, 52px);
  color: rgba(255, 255, 255, 0.77);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.insight-panel .section-label {
  color: var(--blue-light);
}

.insight-panel h2,
.insight-panel h3 {
  color: var(--surface);
}

.insight-panel h2 {
  margin-bottom: 0;
}

.insight-panel-light {
  margin-top: 0;
  color: var(--muted);
  background: var(--surface-blue);
  border: 1px solid #d8e5ef;
}

.insight-panel-light .section-label {
  color: var(--blue-bright);
}

.insight-panel-light h2,
.insight-panel-light h3 {
  color: var(--navy);
}

.inline-sequence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.inline-sequence li {
  padding: 7px 11px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 680;
}

.disclosure-note,
.legal-notice {
  margin-top: 25px;
  padding: 18px 20px;
  color: #46566a;
  background: var(--surface-blue);
  border: 1px solid #d8e5ef;
  border-left: 4px solid var(--orange);
  border-radius: 7px;
  font-size: 0.85rem;
}

.disclosure-note a,
.legal-notice a,
.legal-copy a:not(.button) {
  color: var(--blue-bright);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.video-card > div:last-child {
  padding: 23px 25px;
}

.video-card h3 {
  margin-bottom: 8px;
}

.video-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.resource-grid a {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.resource-grid a:hover {
  border-color: #bdccda;
  transform: translateY(-2px);
}

.resource-grid span {
  color: var(--muted);
  font-size: 0.79rem;
}

.resource-grid strong {
  color: var(--blue-bright);
  font-size: 0.9rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
}

.pricing-card {
  position: relative;
}

.pricing-card-featured {
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}

.price {
  margin: 20px 0 17px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 780;
  line-height: 1.3;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.price-small {
  color: var(--blue-bright) !important;
  font-weight: 750;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-grid > article {
  padding: clamp(28px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.comparison-grid h3 {
  margin-bottom: 18px;
}

.narrow-content,
.process-copy {
  max-width: 860px;
}

.narrow-content > h2,
.process-copy > h2 {
  margin-bottom: 28px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 19px 36px 19px 0;
  color: var(--navy);
  font-weight: 720;
  cursor: pointer;
}

details p {
  max-width: 760px;
  padding: 0 30px 19px 0;
  color: var(--muted);
}

.numbered-policy {
  display: grid;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.numbered-policy li {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-policy strong {
  color: var(--navy);
}

.numbered-policy span {
  color: var(--muted);
}

/* Legal and policy pages */
.legal-section {
  background: var(--surface);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.legal-aside {
  position: sticky;
  top: 122px;
  padding: 30px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-aside h2 {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.legal-aside > p:not(.section-label),
.legal-aside dd {
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-aside dl {
  margin: 24px 0 0;
}

.legal-aside dl div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.legal-aside dt {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 760;
}

.legal-aside dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

.legal-copy {
  max-width: 790px;
}

.legal-copy .legal-notice {
  margin: 0 0 35px;
}

.legal-copy h2 {
  margin: 46px 0 15px;
  font-size: clamp(1.38rem, 2.3vw, 1.85rem);
  letter-spacing: -0.015em;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: #4f5c6d;
  font-size: 0.94rem;
  line-height: 1.76;
}

.legal-copy ul {
  padding-left: 1.25rem;
}

.legal-copy li + li {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: 80px;
  }

  .brand-tagline {
    display: none;
  }

  .primary-nav {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.72fr);
    gap: 48px;
  }

  .confidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confidence-grid article:nth-child(3) {
    border-left: 0;
  }

  .confidence-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .capability-grid-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid-secondary article:last-child {
    grid-column: 1 / -1;
  }

  .commercial-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-path li:nth-child(3) {
    border-left: 0;
  }

  .commercial-path li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .enquiry-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquiry-points li:last-child {
    grid-column: 1 / -1;
  }

  .feature-grid-four,
  .tech-stack-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid-three > article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 118px;
    right: 17px;
    left: 17px;
    display: none;
    max-height: calc(100vh - 138px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.nav-contact) {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    margin-top: 13px;
  }

  .hero-grid,
  .contact-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 67px 76px;
  }

  .hero-copy,
  .contact-hero-copy {
    max-width: none;
  }

  .hero-visual {
    width: min(100%, 470px);
    margin: 0 auto;
  }

  .workflow-panel,
  .fit-grid,
  .why-grid,
  .video-feature,
  .contact-fit-grid,
  .split-heading-grid,
  .example-panel,
  .outcome-grid,
  .language-callout,
  .related-grid,
  .insight-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid-primary,
  .capability-grid-secondary,
  .next-step-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid-secondary article:last-child {
    grid-column: auto;
  }

  .final-cta-inner,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand > p {
    text-align: left;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15.5px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .company-strip .container {
    min-height: 46px;
    padding-block: 8px;
    line-height: 1.45;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .primary-nav {
    top: 128px;
  }

  .hero-grid,
  .contact-hero-grid {
    padding-block: 55px 66px;
  }

  .hero h1,
  .contact-hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .page-hero-inner {
    padding-block: 58px 66px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .confidence-strip {
    margin-top: -20px;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .confidence-grid article,
  .confidence-grid article:nth-child(3) {
    border-left: 0;
  }

  .confidence-grid article + article,
  .confidence-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 70px;
  }

  .workflow-panel {
    gap: 38px;
    padding: 28px 23px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card-large {
    padding: 27px 24px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .language-panel,
  .contact-language-card,
  .contact-email-panel {
    padding: 28px 24px;
  }

  .language-rule {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .language-rule span {
    text-align: left;
  }

  .commercial-path,
  .enquiry-points,
  .feature-grid-three,
  .feature-grid-four,
  .tech-stack-grid,
  .pricing-grid,
  .comparison-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid-three > article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .detail-card,
  .tech-card,
  .pricing-card,
  .legal-aside,
  .related-grid aside {
    padding: 26px 23px;
  }

  .numbered-policy li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .enquiry-points li:last-child {
    grid-column: auto;
  }

  .commercial-path li,
  .commercial-path li:nth-child(3) {
    border-left: 0;
  }

  .commercial-path li + li,
  .commercial-path li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .service-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-inner {
    padding: 31px 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-base {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-registration {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   WHY RISESI — ORACLE APEX PLATFORM SUMMARY CARD
   ========================================================= */

.apex-platform-summary {
  margin-top: 22px;
}

.apex-platform-card {
  padding: 40px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 12%, rgba(241, 90, 36, 0.24), transparent 28%),
    linear-gradient(135deg, #082044 0%, #10335f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(8, 32, 68, 0.16);
}

.apex-platform-card .section-label {
  color: #ff9a73;
}

.apex-platform-card h3 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.apex-platform-card p {
  max-width: 1080px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.apex-capability-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.apex-capability-pills li {
  padding: 9px 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.apex-proof-line {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.apex-proof-line a {
  color: #ff9a73;
  font-weight: 800;
}

@media (max-width: 700px) {
  .apex-platform-card {
    padding: 30px 24px;
    border-radius: 20px;
  }
}