:root {
  --navy: #0D3E69;
  --navy-dark: #082742;
  --accent: #197ACF;
  --accent-strong: #11548F;
  --white: #ffffff;
  --gray: #f4f7ff;
  --text: #112d4e;
  --muted: #5f748d;
  --border: #d7e0f2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  color: var(--text);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.site-header .brand-name,
.site-header .brand-tag,
.site-header .contact-links a {
  color: var(--text);
}

.logo-section {
  padding: 40px 0;
}

.logo-wrapper {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
}

.logo-preview {
  display: grid;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.logo-image-card {
  display: grid;
  place-items: center;
}

.main-logo-image {
  width: min(100%, 320px);
  height: auto;
}

.brand-with-logo {
  align-items: center;
}

.brand-logo {
  width: 110px;
  height: auto;
  display: block;
}

.logo-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.logo-placeholder {
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 22px;
  background: #f7f9ff;
}

.header-inner,
.footer-inner,
.hero-grid,
.cards-grid,
.steps-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.header-inner {
  grid-template-columns: auto auto;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-name {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-links {
  display: flex;
  justify-content: end;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-links a {
  color: var(--white);
  font-weight: 600;
}

.hero {
  padding: 80px 0 64px;
  background: var(--navy);
}

.hero-grid {
  grid-template-columns: 1.25fr 0.95fr;
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero .eyebrow,
.hero h1,
.hero .hero-text,
.hero .hero-actions {
  color: var(--white);
}

.hero h1 {
  color: var(--white);
}

.hero .hero-text {
  color: rgba(255,255,255,0.9);
}

.hero .button-secondary {
  color: var(--navy);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.02;
  max-width: 720px;
}

.hero-text,
.section p,
.contact-text,
.form-note,
.hero-card-note {
  margin: 24px 0 0;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-secondary {
  color: var(--accent-strong);
  background: var(--white);
  border-color: var(--accent-strong);
}

.hero-card {
  background: var(--accent-strong);
  border-radius: 24px;
  color: var(--white);
  padding: 32px;
  min-height: 320px;
  align-self: start;
}

.hero-card-inner p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-card ul {
  padding-left: 20px;
  margin: 0;
}

.hero-card li {
  margin: 12px 0;
  line-height: 1.7;
}

.hero-card-note {
  margin-top: 22px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--gray);
}

.section-header {
  max-width: 720px;
}

.section-header h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  margin-top: 12px;
}

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

.card,
.step,
.quote-card,
.contact-card,
.enquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.card h3,
.step h3,
.contact-card h3 {
  margin-top: 0;
}

.card p,
.step p {
  color: var(--muted);
  margin: 14px 0 0;
}

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

.step {
  display: grid;
  gap: 18px;
}

.step-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.split-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.benefits-list {
  list-style: disc;
  padding-left: 20px;
  margin: 24px 0 0;
  color: var(--muted);
}

.benefits-list li {
  margin: 12px 0;
}

.quote-card {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(8, 39, 66, 0.95), rgba(8, 39, 66, 0.82));
  color: var(--white);
}

.quote-card p {
  margin: 0;
}

.quote-author {
  margin-top: 22px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-section {
  padding-bottom: 96px;
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 700;
}

.enquiry-form {
  display: grid;
  gap: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: var(--white);
  color: var(--text);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 26px 0;
}

.footer-inner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-inner,
  .hero-grid,
  .cards-grid,
  .steps-grid,
  .split-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-links {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 56px;
  }

  .hero-card {
    padding: 24px;
  }

  .button {
    width: 100%;
  }
}
