:root {
    --navy: #00334D;
    --red: #D62828;
    --orange: #F77F00;
    --yellow: #FDBF45;
    --cream: #F1E9C6;
    --bg: #F5F5F3;
    --text: #1F2933;
}

* {
    box-sizing: border-box;
    font-family: 'Josefin Sans', system-ui, sans-serif;
}

body {
   margin: 0;
  color: var(--text);
  background-color: var(--bg);

  background-image:
    linear-gradient(
      rgba(0, 51, 77, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 51, 77, 0.04) 1px,
      transparent 1px
    );

  background-size: 40px 40px;
  background-position: 0 0;
  transition: background-position 0.1s linear;
}

header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}

.logo {
    height: 42px;
    margin-bottom: 32px;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 700;
}

h1 span {
    color: var(--orange);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

p {
    font-size: 1.05rem;
}

.lead {
    font-size: 1.25rem;
    max-width: 520px;
    margin-bottom: 32px;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

form {
    display: grid;
    gap: 14px;
}

button,
input,
select {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--orange);
}

button {
    background: var(--orange);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

section + section {
    padding-top: 40px;
}

.faq,
.features,
.roi {
    background: white;
    border-radius: 22px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.box {
    border-left: 6px solid var(--navy);
    padding-left: 16px;
}

.box.orange {
    border-color: var(--orange);
}
.box.red {
    border-color: var(--red);
}

.features .box {
    background: var(--bg);
    padding: 24px;
    border-radius: 14px;
    border-left: 6px solid var(--navy);
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 32px;
    font-size: 0.9rem;
}

.error {
    display: none;
    color: var(--red);
    font-size: 0.9rem;
}

.success {
    display: none;
    text-align: center;
}

canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
}

@media (max-width: 900px) {
    .feature-panels .panel {
        flex-direction: column;
    }
}

.panel-image {
    flex: 1;
}

.placeholder {
    height: 220px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.placeholder.navy {
    background: var(--navy);
}
.placeholder.orange {
    background: var(--orange);
}
.placeholder.red {
    background: var(--red);
}

details {
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}

summary {
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
}

details p {
    margin-top: 12px;
    max-width: 720px;
}

.value-grid-section {
    background: white;
    border-radius: 22px;
    padding: 64px 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section-lead {
    max-width: 640px;
    font-size: 1.2rem;
    margin-bottom: 48px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-image {
    height: 180px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 4rem;
    color: white;
    
}

.value-image.navy {
    background: var(--navy);
}
.value-image.orange {
    background: var(--orange);
}
.value-image.red {
    background: var(--red);
}
