:root {
  --bg: #f7f7f8;
  --text: #1e2430;
  --brand: #26ad67;
  --brand-dark: #1a8f53;
  --surface: #ffffff;
  --muted: #5a6372;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid #e6e9ef;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  width: 244px;
  max-width: 70vw;
  height: auto;
  display: block;
}

@media (min-width: 561px) {
  .logo {
    width: 268px;
  }
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid #dce2ec;
  border-radius: 10px;
  background: var(--surface);
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 0.4rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.42rem 0.72rem;
  border-radius: 8px;
}

.site-nav a[aria-current='page'],
.site-nav a:hover {
  background: #e9f8f0;
  color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: center;
  background: linear-gradient(112deg, #12314a 0%, #163b5a 50%, #1c4a64 100%);
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 14%, rgba(38, 173, 103, 0.36), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.08), transparent 45%);
}

.hero-content {
  position: relative;
  padding: 5rem 0;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
}

.hero-copy {
  max-width: 52ch;
  min-width: 0;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(2.07rem, 4.37vw, 3.57rem);
  line-height: 1.08;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  white-space: normal;
}

.hero-title-line--no-break {
  white-space: nowrap;
}

h2 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.subtitle {
  font-size: clamp(1.06rem, 2.2vw, 1.5rem);
  max-width: 40ch;
  color: #d9eaf7;
  margin: 0 0 1.9rem;
}

.price-cards {
  display: grid;
  gap: 0.95rem;
  margin: 0;
}

.price-card {
  background: #ffffff;
  border: 1px solid #d7deea;
  border-left: 4px solid #2cb06d;
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 12px 30px rgba(10, 22, 38, 0.15);
}

.price-card h2 {
  color: #17212f;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 0.4rem;
}

.price {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 750;
  color: #243245;
  margin: 0;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.9rem 1.5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn::after {
  content: " \2192";
}

.btn:hover {
  background: var(--brand-dark);
}


.mobile-first-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(112deg, #12314a 0%, #163b5a 50%, #1c4a64 100%);
  color: #fff;
  overflow: hidden;
}

.mobile-first-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.mobile-first-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin-bottom: 0.85rem;
}

.mobile-first-copy p {
  margin: 0 0 1.05rem;
  color: #d9eaf7;
  max-width: 62ch;
}

.mobile-first-points {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.mobile-first-points li::marker {
  color: #4ad489;
}

.laptop-showcase {
  display: grid;
  width: 100%;
  justify-self: end;
  justify-items: center;
  align-items: center;
  gap: 0.8rem;
}

.laptop-frame {
  width: min(540px, 100%);
  display: grid;
  justify-items: center;
}

.laptop-screen-shell {
  width: 100%;
  border-radius: 18px 18px 10px 10px;
  border: 2px solid #bccfe3;
  background: #081624;
  padding: 0.55rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.laptop-screen {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dce8f7;
  border: 1px solid rgba(201, 220, 240, 0.55);
}

.laptop-preview-track {
  display: flex;
  height: 100%;
  transition: transform 340ms ease-in-out;
  will-change: transform;
}

.laptop-preview-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  background: #dce8f7;
}

.laptop-preview-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.laptop-base {
  width: 104%;
  height: 16px;
  border-radius: 0 0 18px 18px;
  margin-top: -1px;
  background: linear-gradient(180deg, #d6e4f2 0%, #a4bed8 100%);
  border: 1px solid #9eb4cc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.laptop-base::after {
  content: "";
  width: 22%;
  height: 4px;
  border-radius: 999px;
  background: rgba(80, 104, 128, 0.4);
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
}

.laptop-preview-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.2rem 0;
}

.laptop-preview-dot {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: #98adca;
  transition: all 220ms ease;
}

.laptop-preview-dot.is-active {
  background: #1a8f53;
  width: 0.78rem;
}

.reviews-section {
  padding: 4rem 0;
  background: #eef3f9;
  border-top: 1px solid #dde5f0;
}

.portfolio-section {
  padding: 4rem 0;
  background: #f7faff;
  border-top: 1px solid #dde5f0;
}

.portfolio-slider {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.portfolio-slider::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  gap: 1rem;
}

.portfolio-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(22, 42, 65, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(22, 42, 65, 0.16);
  border-color: #bfd0e6;
}

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid #e3eaf4;
}

.portfolio-card span {
  display: block;
  padding: 0.78rem 0.88rem;
  font-weight: 700;
  color: #18344e;
  line-height: 1.3;
}

.faq-section {
  padding: 4rem 0;
  background: #eef3f9;
  border-top: 1px solid #dde5f0;
}

.faq-header {
  margin-bottom: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  padding: 0.25rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #1f3854;
  list-style: none;
  padding: 0.9rem 1.4rem 0.9rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #4a5d73;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0 0 0.95rem;
  color: #243245;
  line-height: 1.5;
}

.final-cta-section {
  padding: 4rem 0;
  background: linear-gradient(112deg, #12314a 0%, #163b5a 50%, #1c4a64 100%);
  border-top: 1px solid #1c3f5a;
  color: #fff;
}

.final-cta-card {
  text-align: center;
}

.final-cta-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin-bottom: 0.75rem;
}

.final-cta-card p {
  margin: 0 auto 1.4rem;
  color: #d9eaf7;
  max-width: 56ch;
}

.final-cta-btn {
  background: #2cb06d;
}

.final-cta-btn:hover {
  background: #22995d;
}

.reviews-header {
  margin-bottom: 1.25rem;
}

.reviews-header p {
  margin: 0;
  color: var(--muted);
}

.reviews-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.reviews-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.reviews-track {
  display: flex;
  gap: 1rem;
}

.review-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  padding: 1rem;
}

.review-card h3 {
  margin: 0;
  line-height: 1.3;
}

.review-meta {
  margin: 0.25rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-text {
  margin: 0;
}

.review-text-truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.show-more-btn {
  margin-top: 0.7rem;
  border: 1px solid #cdd7e7;
  border-radius: 8px;
  background: #fff;
  color: #1f3854;
  padding: 0.45rem 0.7rem;
  font-weight: 600;
  cursor: pointer;
}

.review-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 16, 29, 0.66);
  padding: 1rem;
  z-index: 20;
}

.review-modal[hidden] {
  display: none;
}

.review-modal-card {
  width: min(620px, 100%);
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
}

.review-modal-card h3 {
  margin: 0 0 0.6rem;
}

.review-modal-copy {
  margin: 0;
}

.review-modal-close {
  margin-top: 1rem;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.content-section {
  padding: 4rem 0;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.page-main {
  min-height: calc(100vh - 141px);
}

.enquiry-success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.enquiry-success-main {
  width: min(680px, 92%);
}

.enquiry-success-panel {
  background: var(--surface);
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(17, 35, 59, 0.08);
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  text-align: center;
}

.enquiry-success-check {
  margin: 0 auto 1rem;
  width: clamp(88px, 15vw, 118px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(2.4rem, 5.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, #24b365, #1a8f53);
  box-shadow: 0 10px 24px rgba(26, 143, 83, 0.35);
}

.enquiry-success-panel h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.enquiry-success-panel p {
  margin: 0;
  color: var(--muted);
}

.enquiry-success-link {
  margin-top: 1.4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
}

.contact-intro-card {
  background: var(--surface);
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  padding: 1.5rem;
}

.contact-intro-card h1,
.contact-map-panel h2,
.contact-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.contact-intro-card h1 {
  margin: 0 0 1rem;
}

.contact-heading-mobile {
  display: none;
}

.contact-intro-card p {
  margin: 0;
}

.contact-card {
  background: var(--surface);
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.contact-card h2 {
  margin: 0 0 1rem;
}

.contact-card ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}


.lead-form {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-weight: 600;
  color: #223247;
}

.form-input {
  width: 100%;
  border: 1px solid #cfd8e8;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-input::placeholder {
  color: #7b8798;
}

textarea.form-input {
  resize: vertical;
}

.form-input:focus {
  outline: 2px solid rgba(38, 173, 103, 0.34);
  border-color: #2cad6b;
}

.form-row-checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
}

.form-row-checkbox input {
  margin-top: 0.25rem;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(100%);
}

.turnstile-widget {
  min-height: 65px;
}

.form-submit {
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.82rem 1.1rem;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--brand-dark);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: #1d5e3d;
  font-weight: 600;
}


.contact-methods {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 680px;
}

.contact-method-card {
  border: 1px solid #ccead9;
  border-radius: 10px;
  background: #f1fbf6;
  padding: 1.05rem 1.15rem;
  text-decoration: none;
  color: var(--brand-dark);
  line-height: 1.35;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.contact-method-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #157344;
}

.contact-method-card strong {
  display: block;
  font-size: clamp(0.92rem, 1.15vw, 1.06rem);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-email {
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  padding-right: 0.3rem;
}

.contact-method-card-static {
  cursor: default;
}

.contact-map-panel {
  margin-top: 2rem;
}

.contact-map-panel h2 {
  margin: 0 0 1rem;
}

.response-note {
  margin: 1.1rem 0 0;
  color: var(--muted);
}

address {
  margin: 0 0 1.5rem;
  font-style: normal;
  color: var(--muted);
}

.appointment-note {
  margin-top: auto;
  margin-bottom: 0;
}

.appointment-note span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #157344;
}

#contact-map {
  height: min(50vh, 400px);
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d7ddea;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid #e6e9ef;
  background: var(--surface);
  padding: 0.75rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.footer-copy {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-compact p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
  text-wrap: balance;
}

.footer-address {
  white-space: nowrap;
}

@media (max-width: 860px) {
  .hero-content,
  .price-cards,
  .mobile-first-content,
  .grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 3.5rem 0;
  }

  .price-cards {
    margin-top: 1rem;
    max-width: 100%;
  }

  .contact-page .contact-card {
    order: -1;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(1100px, 94%);
  }

  .nav-wrap {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
    border: 1px solid #dce2ec;
  }

  .hero-content {
    padding: 2.4rem 0 2rem;
    text-align: center;
    gap: 1.25rem;
  }

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

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.67rem, 7.51vw, 2.51rem);
    margin-left: auto;
    margin-right: auto;
    text-wrap: initial;
  }

  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    width: min(100%, 280px);
    text-align: center;
  }

  .price-cards {
    gap: 0.85rem;
    margin: 0.4rem auto 1rem;
    width: 100%;
    max-width: none;
  }

  .price-card {
    position: relative;
    padding: 1.2rem 1.08rem 1.12rem;
    border-radius: 16px;
    border: 1px solid rgba(184, 206, 230, 0.9);
    border-left-width: 0;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95));
    box-shadow:
      0 14px 28px rgba(7, 19, 33, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
  }

  .price-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(180deg, #4ad489, #1f8f5a);
  }

  .price-card::after {
    content: "";
    position: absolute;
    width: 138px;
    height: 138px;
    right: -56px;
    top: -56px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(74, 212, 137, 0.18), transparent 68%);
    pointer-events: none;
  }

  .price-card:nth-child(2)::before {
    background: linear-gradient(180deg, #4d9fff, #266bc3);
  }

  .price-card:nth-child(3)::before {
    background: linear-gradient(180deg, #9a7dff, #5b4dc9);
  }

  .mobile-first-section,
  .reviews-section,
  .portfolio-section,
  .faq-section,
  .final-cta-section {
    padding: 3rem 0;
  }

  .laptop-frame {
    width: min(500px, 100%);
  }

  .reviews-slider {
    cursor: auto;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .portfolio-card {
    flex: 0 0 88%;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-page .content-section {
    padding-top: 2rem;
  }

  .contact-page .contact-card {
    padding: 1rem;
  }

  .contact-page .contact-card h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .contact-page .lead-form {
    gap: 0.55rem;
  }

  .contact-page .form-row {
    gap: 0.25rem;
  }

  .contact-page .form-row label {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .contact-page .form-input {
    padding: 0.56rem 0.72rem;
    font-size: 0.97rem;
  }

  .contact-page textarea.form-input {
    min-height: 5.2rem;
  }

  .contact-page .form-row-checkbox {
    gap: 0.45rem;
  }

  .contact-page .form-row-checkbox label {
    font-size: 0.95rem;
  }

  .contact-page .turnstile-widget {
    min-height: 60px;
  }

  .contact-page .form-submit {
    padding: 0.72rem 1rem;
  }

  .contact-heading-desktop {
    display: none;
  }

  .contact-heading-mobile {
    display: inline;
  }

  .price-card h2 {
    margin-bottom: 0.38rem;
    font-size: clamp(1.24rem, 5.2vw, 1.56rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
  }

  .price {
    font-size: clamp(1.09rem, 4.9vw, 1.28rem);
    line-height: 1.33;
    color: #1a2b3f;
  }

  .btn {
    padding: 0.78rem 1.2rem;
  }

  .footer-compact p {
    font-size: 0.82rem;
  }

  .footer-separator {
    display: none;
  }

  .footer-address {
    display: block;
  }
}
