:root {
  --navy: #062b50;
  --blue: #1264d7;
  --bright: #2f80ed;
  --pale: #eaf2fa;
  --light: #f5f8fc;
  --ink: #10233d;
  --muted: #607189;
  --white: #fff;
  --line: #dbe5ef;
  --shadow: 0 24px 60px rgba(6, 43, 80, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  background: #fff;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -50px;
  left: 20px;
  z-index: 200;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 229, 239, 0.8);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 205px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav > a:not(.btn):hover {
  color: var(--blue);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
  padding: 15px 24px;
  border-radius: 9px;
  font: 700 14px Inter;
  transition: 0.25s;
  cursor: pointer;
}
.btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18, 100, 215, 0.25);
}
.btn-small {
  padding: 11px 17px;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: #b5c7da;
}
.btn-outline:hover {
  color: white;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 0;
  background: linear-gradient(135deg, #fafdff 0%, #f1f7fd 60%, #e8f2fc 100%);
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.15);
  filter: blur(70px);
  right: -130px;
  top: 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(18, 100, 215, 0.1);
}
h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.14;
  margin: 0;
}
h1 {
  font-size: clamp(43px, 5.1vw, 67px);
  letter-spacing: -0.045em;
  margin: 22px 0;
}
h1 span,
h2 span {
  color: var(--blue);
}
.hero-copy > p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 34px 0;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.trust-row span::first-letter {
  color: var(--blue);
}
.hero-visual {
  position: relative;
  padding: 35px;
}
.code-window {
  position: relative;
  min-height: 420px;
  background: #071b31;
  border: 1px solid #23496c;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(6, 43, 80, 0.3);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
  overflow: visible;
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 19px;
  border-bottom: 1px solid #1e3c58;
  color: #7188a0;
  font-size: 10px;
}
.window-bar i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6b6b;
  margin-right: 5px;
}
.window-bar i:nth-child(2) {
  background: #ffd166;
}
.window-bar i:nth-child(3) {
  background: #4dd4a8;
}
.code-window pre {
  padding: 64px 35px;
  margin: 0;
  color: #d2deea;
  font: 500 17px/2 monospace;
}
.code-window b {
  color: #54a6ff;
}
.code-window em {
  color: #f4c35f;
}
.code-window mark {
  background: none;
  color: #60e0af;
}
.metric-card,
.speed-card {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.metric-card {
  left: -35px;
  bottom: 55px;
  padding: 17px 25px;
}
.metric-card strong {
  display: block;
  color: var(--blue);
  font: 800 25px Manrope;
}
.metric-card span,
.speed-card span {
  font-size: 11px;
  color: var(--muted);
}
.speed-card {
  right: -30px;
  top: 100px;
  padding: 16px 18px;
  width: 145px;
}
.speed-card strong {
  float: right;
  color: #26a56c;
  font-size: 22px;
}
.speed-card div {
  height: 5px;
  background: #e3edf4;
  border-radius: 5px;
  clear: both;
}
.speed-card i {
  display: block;
  width: 98%;
  height: 100%;
  background: #26a56c;
  border-radius: 5px;
}
.stats {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -10px 40px rgba(6, 43, 80, 0.05);
}
.stats div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.stats div:last-child {
  border: 0;
}
.stats strong,
.stats span {
  display: block;
}
.stats strong {
  font: 700 15px Manrope;
  color: var(--navy);
}
.stats span {
  font-size: 11px;
  color: var(--muted);
}
.section {
  padding: 110px 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 55px;
}
.section-head h2 {
  font-size: clamp(34px, 4vw, 49px);
  letter-spacing: -0.035em;
  margin: 15px 0;
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
}
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 31px 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  transition: 0.3s;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: #a9c7e8;
}
.service-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 20px 50px rgba(18, 100, 215, 0.12);
}
.tag {
  position: absolute;
  right: 16px;
  top: 15px;
  padding: 5px 9px;
  background: var(--blue);
  color: white;
  border-radius: 20px;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.service-number {
  position: absolute;
  right: 20px;
  bottom: -15px;
  font: 800 80px Manrope;
  color: #f0f5f9;
}
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--pale);
  color: var(--blue);
  border-radius: 10px;
  font: 700 21px monospace;
}
.service-card h3 {
  font-size: 21px;
  margin: 22px 0 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  min-height: 85px;
}
.service-card ul,
.price-card ul {
  padding: 0;
  list-style: none;
  font-size: 12px;
  position: relative;
}
.service-card li,
.price-card li {
  margin: 9px 0;
}
.service-card li::before,
.price-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  margin-right: 8px;
}
.service-card > a {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}
.work {
  background: var(--navy);
  color: white;
}
.work .section-head p,
.work .project-info p {
  color: #a9bbcd;
}
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.project {
  background: #0b385f;
  border-radius: 16px;
  overflow: hidden;
}
.mock {
  height: 320px;
  margin: 25px 25px 0;
  background: #eee;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  color: var(--ink);
}
.browser {
  height: 28px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 8px;
}
.browser span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd;
  margin-right: 3px;
}
.mock-content {
  height: 292px;
  padding: 55px;
  background: linear-gradient(135deg, #f7eee5, #d9b796);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-content b {
  font: 800 37px/1.05 Manrope;
  color: #413228;
}
.mock-content button {
  border: 0;
  background: #453426;
  color: white;
  padding: 10px 14px;
}
.dashboard {
  height: 292px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  background: #eaf0f6;
  padding: 20px;
}
.dashboard > div:first-child {
  background: #123d66;
  border-radius: 6px;
}
.dashboard > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}
.dashboard i {
  height: 90px;
  background: white;
  border-radius: 6px;
}
.project-info {
  padding: 25px 30px 30px;
}
.project-info > span {
  color: #64aaff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
}
.project-info h3 {
  font-size: 23px;
  margin: 7px 0;
}
.project-info p {
  font-size: 13px;
  margin: 0;
}
.pricing {
  background: var(--light);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 35px;
  display: flex;
  flex-direction: column;
}
.price-card.recommended {
  border: 2px solid var(--blue);
  transform: scale(1.035);
  box-shadow: var(--shadow);
}
.price-card h3 {
  font-size: 24px;
}
.price-card > p {
  font-size: 13px;
  color: var(--muted);
  min-height: 44px;
}
.price {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.price small,
.price strong {
  display: block;
}
.price small {
  color: var(--muted);
  font-size: 11px;
}
.price strong {
  font: 800 34px Manrope;
  color: var(--navy);
}
.price-card ul {
  flex: 1;
  margin: 20px 0 28px;
  font-size: 13px;
}
.pricing-note {
  text-align: center;
  margin-top: 42px;
  color: var(--muted);
  font-size: 13px;
}
.pricing-note a {
  color: var(--blue);
  font-weight: 700;
}
.process {
  padding: 85px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.steps > div {
  position: relative;
  padding: 0 30px;
  border-left: 1px solid var(--line);
}
.steps b {
  font: 800 35px Manrope;
  color: #c8d9e9;
}
.steps h3 {
  font-size: 18px;
  margin: 12px 0;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
}
.about {
  background: linear-gradient(135deg, #f4f8fc, #e9f2fb);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  align-items: center;
}
.portrait {
  height: 470px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: var(--shadow);
}
.portrait-inner {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  color: white;
}
.portrait-inner > span {
  margin: auto;
  font: 800 75px monospace;
  color: #71b1f6;
}
.portrait-inner strong {
  font: 800 45px/1 Manrope;
}
.portrait-inner small {
  color: #a7c9e9;
  margin-top: 12px;
}
.about-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 16px 0 25px;
}
.about-copy p {
  color: var(--muted);
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  font-weight: 700;
}
.values b {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  margin-right: 7px;
}
.contact {
  background: var(--navy);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.contact-copy h2 {
  font-size: clamp(35px, 4.5vw, 53px);
  margin: 18px 0;
}
.contact-copy > p {
  color: #a9bbcd;
}
.contact-details {
  margin-top: 35px;
  display: grid;
  gap: 15px;
}
.contact-details a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-details b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #114977;
  border-radius: 9px;
  color: #6fb2fc;
}
.contact-details span,
.contact-details small {
  display: block;
}
.contact-details small {
  color: #a9bbcd;
}
.contact-form {
  padding: 38px;
  background: white;
  color: var(--ink);
  border-radius: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfd;
  padding: 13px;
  font: 400 13px Inter;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 100, 215, 0.1);
}
.contact-form .btn {
  width: 100%;
}
.contact-form > small {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 9px;
  margin-top: 12px;
}
footer {
  background: #041e37;
  color: white;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 45px 0;
  border-bottom: 1px solid #173b5b;
}
.footer-brand {
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
}
.footer-brand img {
  width: 160px;
}
.footer-main p {
  color: #8fa9c0;
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 25px;
  margin-left: auto;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  color: #7894ad;
  font-size: 10px;
}
.footer-bottom a {
  margin-left: 18px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    background: white;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 30px 25px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }
  .trust-row {
    justify-content: center;
  }
  .hero-visual {
    max-width: 620px;
    margin: auto;
    width: 100%;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats div:nth-child(2) {
    border-right: 0;
  }
  .section-head.split {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .contact-grid {
    gap: 45px;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .brand img {
    width: 170px;
  }
  .hero {
    padding-top: 125px;
  }
  .hero-grid {
    gap: 25px;
  }
  h1 {
    font-size: 39px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-visual {
    padding: 10px;
  }
  .code-window {
    min-height: 320px;
    transform: none;
  }
  .code-window pre {
    padding: 45px 20px;
    font-size: 12px;
  }
  .metric-card {
    left: -5px;
  }
  .speed-card {
    right: -5px;
  }
  .stats {
    margin-top: 55px;
  }
  .stats div {
    padding: 18px 14px;
  }
  .section {
    padding: 78px 0;
  }
  .service-grid,
  .projects,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .service-card p {
    min-height: auto;
  }
  .project .mock {
    height: 240px;
  }
  .mock-content,
  .dashboard {
    height: 212px;
  }
  .price-card.recommended {
    transform: none;
  }
  .steps > div {
    padding: 20px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .portrait {
    height: 400px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    margin-left: 0;
    flex-wrap: wrap;
  }
  .footer-bottom {
    gap: 10px;
  }
  .footer-bottom a {
    margin: 0 14px 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.project-featured {
  grid-column: 1 / -1;
}

.project-preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  background: #1264d7;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.project-preview-link:hover {
  background: #0b4fae;
  transform: translateY(-2px);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}

.project-tags li {
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1264d7;
  background: rgba(18, 100, 215, 0.1);
  border: 1px solid rgba(18, 100, 215, 0.2);
  border-radius: 999px;
}

.project-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #1264d7;
  font-weight: 700;
  text-decoration: none;
}

.project-link:hover {
  text-decoration: underline;
}
.projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.project {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-info {
  flex: 1;
}

@media (max-width: 850px) {
  .projects {
    grid-template-columns: 1fr;
  }
}
.project-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 2rem;
  overflow: hidden;
  color: #10233d;
  text-decoration: none;
  background: #f6f9fc;
}

.project-visual::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  content: "";
  border: 42px solid rgba(18, 100, 215, 0.08);
  border-radius: 50%;
}

.project-visual-escale {
  background:
    linear-gradient(135deg, rgba(28, 153, 117, 0.12), transparent 60%),
    #f5fbf8;
}

.project-visual-taxi {
  background:
    linear-gradient(135deg, rgba(18, 100, 215, 0.13), transparent 60%),
    #f5f8fd;
}

.visual-brand {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.visual-brand div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.visual-brand strong {
  font-size: 1rem;
}

.visual-brand small {
  color: #64748b;
  font-size: 0.72rem;
}

.visual-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  background: #1264d7;
  border-radius: 14px;
  place-items: center;
}

.project-visual-escale .visual-icon {
  background: #1c9975;
}

.visual-content {
  position: relative;
  z-index: 1;
  max-width: 80%;
  margin: 2.5rem 0 1.5rem;
}

.visual-kicker {
  color: #1264d7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-visual-escale .visual-kicker {
  color: #14785b;
}

.visual-content h4 {
  max-width: 420px;
  margin: 0.6rem 0 1.25rem;
  color: #10233d;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.visual-lines {
  display: grid;
  gap: 0.45rem;
}

.visual-lines span {
  display: block;
  width: 100%;
  height: 7px;
  background: rgba(16, 35, 61, 0.1);
  border-radius: 999px;
}

.visual-lines span:nth-child(2) {
  width: 80%;
}

.visual-lines span:nth-child(3) {
  width: 55%;
}

.visual-button {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 0.65rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  background: #1264d7;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.project-visual-escale .visual-button {
  background: #1c9975;
}

.project-visual:hover .visual-button {
  transform: translateX(4px);
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.95rem;
}

.contact-status.is-success {
  color: #22c55e;
}

.contact-status.is-error {
  color: #ef4444;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}
/* =========================
   ATELIER VERT
   ========================= */

.project-visual-atelier {
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(255, 255, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #eff7eb 0%,
      #cfe4c4 55%,
      #9fbe8f 100%
    );
}

.project-visual-atelier .visual-icon {
  background: #355d3b;
  color: #fff;
}

.project-visual-atelier .visual-kicker {
  color: #355d3b;
}

.project-visual-atelier .visual-button {
  background: #355d3b;
  color: #fff;
}
/* =========================
   ÉLECTRIPRO BORDEAUX
   ========================= */

.project-visual-electripro {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(243, 198, 35, 0.20),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #123553 0%,
      #0b1f33 55%,
      #071725 100%
    );
}

/* Carré avec éclair */
.project-visual-electripro .visual-icon {
  background: #f3c623;
  color: #0b1f33;
}

/* Nom ÉlectriPro */
.project-visual-electripro .visual-brand strong {
  color: #ffffff;
}

/* Petite description sous le nom */
.project-visual-electripro .visual-brand small {
  color: #b9c9d8;
}

/* ÉLECTRICIEN À BORDEAUX */
.project-visual-electripro .visual-kicker {
  color: #f3c623;
}

/* Gros titre */
.project-visual-electripro .visual-content h4 {
  color: #ffffff;
}

/* Petites lignes décoratives */
.project-visual-electripro .visual-lines span {
  background: rgba(255, 255, 255, 0.35);
}

/* Bouton */
.project-visual-electripro .visual-button {
  background: #f3c623;
  color: #0b1f33;
}