:root {
    --primary: #c09e0d;
    --secondary: #20304a;
    --white: #ffffff;
    --light: #f6f7fb;
    --text: #2b2f38;
    --muted: #6b7280;
    --shadow: 0 25px 60px rgba(32, 48, 74, 0.18);
    --radius: 18px;
    --secondary-strong: #182235;
    --container: 1160px;
    --transition: 0.25s ease;
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100% - 2.5rem, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(32, 48, 74, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}
.brand img {
    height: 52px;
}

.nav {
    flex: 1;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-weight: 500;
    color: var(--secondary);
}

.nav-list a {
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-list a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-item {
    position: relative;
    padding-bottom: 0.4rem;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(32, 48, 74, 0.18);
    display: none;
    z-index: 20;
    margin-top: 0.2rem;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.nav-submenu li {
    list-style: none;
}

.nav-submenu a {
    display: block;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    color: var(--secondary);
    font-weight: 600;
}

.nav-submenu a:hover {
    background: var(--light);
    color: var(--secondary);
}

.nav-item.open .nav-submenu {
    display: grid;
    gap: 0.2rem;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
    display: grid;
    gap: 0.2rem;
}

.nav-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(192, 158, 13, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(192, 158, 13, 0.4);
}

.btn-outline {
    border-color: rgba(32, 48, 74, 0.2);
    color: var(--secondary);
    background: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hero {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    background: url("/assets/img/home/photo1.png") center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(32, 48, 74, 0.75), rgba(32, 48, 74, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 520px;
    color: var(--white);
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hero-text h1 {
    font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-seo {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-location {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-recall {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.08), rgba(192, 158, 13, 0.2));
    position: relative;
    overflow: hidden;
}

.quick-recall::before,
.quick-recall::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.quick-recall::before {
    background: radial-gradient(circle at 20% 20%, rgba(192, 158, 13, 0.25), transparent 55%);
}

.quick-recall::after {
    background: radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.35), transparent 45%);
}

.quick-recall-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quick-recall-text {
    display: grid;
    gap: 0.8rem;
}

.quick-recall-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--secondary);
    opacity: 0.7;
}

.quick-recall-text h2 {
    color: var(--secondary);
    font-size: clamp(1.7rem, 2vw + 1rem, 2.2rem);
}

.quick-recall-text p {
    color: var(--muted);
    font-size: 1.02rem;
}

.form-feedback {
    margin-top: 0.35rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-feedback--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #166534;
}

.form-feedback--error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.32);
    color: #991b1b;
}

.quick-recall-form {
    background: var(--white);
    border-radius: 22px;
    padding: 1.8rem;
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.12);
    border: 1px solid rgba(32, 48, 74, 0.08);
    display: grid;
    gap: 1.3rem;
}

.quick-recall-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quick-recall-field {
    display: grid;
    gap: 0.4rem;
}

.quick-recall-field label {
    font-weight: 600;
    color: var(--secondary);
}

.quick-recall-field input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(32, 48, 74, 0.15);
    font-family: inherit;
    font-size: 0.98rem;
    background: var(--white);
    color: var(--text);
}

.quick-recall-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(32, 48, 74, 0.15);
    font-family: inherit;
    font-size: 0.98rem;
    background: var(--white);
    color: var(--text);
    resize: vertical;
}

.quick-recall-field input:focus {
    outline: none;
    border-color: rgba(192, 158, 13, 0.7);
    box-shadow: 0 0 0 3px rgba(192, 158, 13, 0.15);
}

.quick-recall-field textarea:focus {
    outline: none;
    border-color: rgba(192, 158, 13, 0.7);
    box-shadow: 0 0 0 3px rgba(192, 158, 13, 0.15);
}

.quick-recall-field--full {
    grid-column: 1 / -1;
}

.quick-recall-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.95rem;
}

.style-projection {
    padding: 2.5rem 0 3rem;
    background: var(--white);
}

.style-projection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.style-projection-card {
    background: var(--light);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 12px 26px rgba(32, 48, 74, 0.08);
    display: grid;
    gap: 0.8rem;
    text-align: left;
}

.style-projection-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

.style-projection-card p {
    color: var(--secondary);
    font-weight: 600;
}

.truth {
    padding: 3.5rem 0;
    background: var(--secondary-strong);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.truth::before,
.truth::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.truth::before {
    background: radial-gradient(circle at 20% 20%, rgba(192, 158, 13, 0.25), transparent 55%);
}

.truth::after {
    background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.08), transparent 45%);
}

.truth-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.truth-title {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 520px;
}

.truth-subtitle {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.02rem;
    line-height: 1.6;
}

.truth-title br {
    display: block;
}

.truth-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    padding: 0;
    margin: 0;
}

.truth-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.truth-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.4rem;
    line-height: 1;
}

.projects {
    padding: 2.5rem 0 3.5rem;
    background: var(--white);
}

.projects-header {
    text-align: center;
    display: grid;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.projects-header h2 {
    font-size: 2rem;
    color: var(--secondary);
}

.projects-header p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

.projects-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.decision {
    padding: 4rem 0;
    background: var(--white);
}

.decision-inner {
    display: grid;
    gap: 2rem;
}

.decision-kicker {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
}

.decision h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary);
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.decision-card {
    border-radius: 18px;
    padding: 1.8rem;
    background: var(--light);
    box-shadow: 0 12px 30px rgba(32, 48, 74, 0.1);
    border: 1px solid rgba(32, 48, 74, 0.06);
    display: grid;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.decision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.16);
}

.decision-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
}

.decision-card ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.decision-card li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
    font-weight: 500;
}

.decision-card li::before {
    content: "•";
    color: var(--secondary);
    font-size: 1.2rem;
    line-height: 1;
}

.decision-card--accent {
    background: linear-gradient(135deg, rgba(192, 158, 13, 0.12), rgba(32, 48, 74, 0.08));
    border-color: rgba(192, 158, 13, 0.25);
}

.decision-card--accent li::before {
    color: var(--primary);
}

.journey {
    padding: 4rem 0 4.5rem;
    background: var(--secondary-strong);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.journey::before,
.journey::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.journey::before {
    background: radial-gradient(circle at 15% 30%, rgba(192, 158, 13, 0.25), transparent 55%);
}

.journey::after {
    background: radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 45%);
}

.journey-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    justify-items: center;
    text-align: center;
}

.journey-header {
    display: grid;
    gap: 0.75rem;
    max-width: 640px;
}

.journey-header h2 {
    font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
}

.journey-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.journey-steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.journey-step {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    display: grid;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.journey-number {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    border-radius: 14px;
    background: rgba(192, 158, 13, 0.2);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.journey-step p {
    font-weight: 600;
    color: var(--white);
}

.journey-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 560px;
}

.reference-hero {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.92), rgba(32, 48, 74, 0.75));
    color: var(--white);
}

.reference-hero-inner {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
}

.reference-hero-text h1 {
    font-size: clamp(2.2rem, 2.5vw + 1rem, 3.2rem);
    margin-bottom: 1rem;
}

.reference-hero-text p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1rem;
}

.reference-frame {
    padding: 2.5rem 0 3rem;
    background: var(--light);
}

.reference-frame-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    color: var(--muted);
    text-align: center;
}

.reference-projects {
    padding: 3.5rem 0 4rem;
    background: var(--white);
}

.reference-projects-inner {
    display: grid;
    gap: 2rem;
}

.reference-projects-inner h2 {
    text-align: center;
    color: var(--secondary);
}

.reference-projects-list {
    display: grid;
    gap: 2rem;
}

.reference-project-card {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
    background: var(--light);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 14px 30px rgba(32, 48, 74, 0.08);
    border: 1px solid rgba(32, 48, 74, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(32, 48, 74, 0.14);
}

.reference-project-media img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 100%;
    max-height: 320px;
}

.reference-project-content {
    display: grid;
    gap: 1rem;
}

.reference-project-content h3 {
    color: var(--secondary);
    font-size: 1.35rem;
}

.reference-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reference-project-tags a {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(192, 158, 13, 0.18);
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
}

.reference-project-block h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.reference-project-block p,
.reference-project-block ul {
    color: var(--muted);
}

.reference-project-block ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.reference-project-block strong {
    color: var(--secondary);
}

.reference-project-note {
    font-size: 0.9rem;
    color: rgba(32, 48, 74, 0.7);
    border-top: 1px solid rgba(32, 48, 74, 0.1);
    padding-top: 0.75rem;
}

.reference-cta {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.08), rgba(192, 158, 13, 0.12));
}

.reference-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.reference-cta-text h2 {
    color: var(--secondary);
    font-size: 1.8rem;
}

.reference-cta-text p {
    color: var(--muted);
    margin-top: 0.6rem;
}

.know-how-hero {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.9), rgba(32, 48, 74, 0.7));
    color: var(--white);
}

.know-how-hero-inner {
    text-align: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.know-how-hero-text h1 {
    font-size: clamp(2.2rem, 2.5vw + 1rem, 3.2rem);
}

.know-how-hero-text p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 760px;
    margin: 0 auto 0.8rem;
}

.know-how-location {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
}

.know-how-why {
    padding: 3.5rem 0;
    background: var(--light);
}

.know-how-why-inner {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.know-how-why-inner h2 {
    color: var(--secondary);
}

.know-how-why-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--secondary);
    font-weight: 600;
}

.know-how-why-icons span {
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(32, 48, 74, 0.08);
    border: 1px solid rgba(32, 48, 74, 0.06);
}

.know-how-why-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted);
    display: grid;
    gap: 1rem;
}

.know-how-steps {
    padding: 4rem 0;
    background: var(--white);
}

.know-how-steps-inner {
    display: grid;
    gap: 2rem;
}

.know-how-steps-inner h2 {
    text-align: center;
    color: var(--secondary);
}

.know-how-step-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.know-how-step {
    background: var(--light);
    border-radius: 18px;
    padding: 1.6rem;
    display: grid;
    gap: 0.8rem;
    box-shadow: 0 12px 26px rgba(32, 48, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.know-how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(32, 48, 74, 0.14);
}

.know-how-step-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.know-how-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(32, 48, 74, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.know-how-step-number {
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(192, 158, 13, 0.2);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.know-how-step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(192, 158, 13, 0.18);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.know-how-step h3 {
    color: var(--secondary);
    font-size: 1.15rem;
}

.know-how-step ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    color: var(--muted);
}

.know-how-step-goal {
    color: var(--secondary);
    font-weight: 600;
}

.know-how-economics {
    padding: 3.5rem 0;
    background: var(--light);
}

.know-how-economics-inner {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.know-how-economics-inner h2 {
    color: var(--secondary);
}

.know-how-economics-text {
    max-width: 880px;
    margin: 0 auto;
    color: var(--muted);
    display: grid;
    gap: 1rem;
}

.know-how-role {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.06), rgba(192, 158, 13, 0.08));
}

.know-how-role-inner {
    display: grid;
    justify-items: center;
    text-align: center;
}

.know-how-role-text {
    max-width: 820px;
    display: grid;
    gap: 1rem;
}

.know-how-role-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(192, 158, 13, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto;
}

.know-how-role-text h2 {
    color: var(--secondary);
}

.know-how-role-text p {
    color: var(--muted);
}

.know-how-benefits {
    padding: 3.5rem 0;
    background: var(--white);
}

.know-how-benefits-inner {
    display: grid;
    gap: 1.6rem;
    justify-items: center;
    text-align: center;
}

.know-how-benefits-inner h2 {
    color: var(--secondary);
}

.know-how-benefits-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    max-width: 520px;
}

.know-how-benefits-list li {
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background: var(--light);
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.know-how-benefits-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(32, 48, 74, 0.12);
}

.know-how-benefits-list li span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(192, 158, 13, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.know-how-tension {
    padding: 3.5rem 0;
    background: rgba(32, 48, 74, 0.04);
}

.know-how-tension-inner {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.know-how-tension-inner h2 {
    color: var(--secondary);
}

.know-how-tension-text {
    max-width: 860px;
    margin: 0 auto;
    color: var(--muted);
    display: grid;
    gap: 0.9rem;
}

.know-how-cta {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.08), rgba(192, 158, 13, 0.12));
}

.know-how-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.know-how-cta-text h2 {
    color: var(--secondary);
    font-size: 1.8rem;
}

.know-how-cta-text p {
    color: var(--muted);
    margin-top: 0.6rem;
}

.service-hero {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.9), rgba(32, 48, 74, 0.7));
    color: var(--white);
}

.service-hero-inner {
    text-align: center;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.service-hero-text h1 {
    font-size: clamp(2.2rem, 2.5vw + 1rem, 3.2rem);
}

.service-hero-text p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 820px;
    margin: 0 auto 0.8rem;
}

.service-hero-actions {
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.service-hero-note {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.service-location {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-projection {
    padding: 2.5rem 0 3rem;
    background: var(--white);
}

.service-projection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-projection-card {
    background: var(--light);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 12px 26px rgba(32, 48, 74, 0.08);
    display: grid;
    gap: 0.8rem;
    text-align: left;
}

.service-projection-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

.service-projection-card p {
    color: var(--secondary);
    font-weight: 600;
}

.service-block {
    padding: 3.5rem 0;
    background: var(--white);
}

.service-block--light {
    background: var(--light);
}

.service-block-inner {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.service-block-inner h2 {
    color: var(--secondary);
}

.service-text {
    max-width: 880px;
    margin: 0 auto;
    color: var(--muted);
    display: grid;
    gap: 1rem;
}

.service-text ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
}

.service-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.service-check-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 247, 251, 0.6));
    border-radius: 20px;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 18px 40px rgba(32, 48, 74, 0.14);
    display: grid;
    gap: 0.5rem;
    text-align: left;
    border: 1px solid rgba(32, 48, 74, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-check-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(192, 158, 13, 0.22), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.service-check-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(192, 158, 13, 0.25);
    opacity: 0.6;
    pointer-events: none;
}

.service-check-card > * {
    position: relative;
    z-index: 1;
}

.service-check-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(32, 48, 74, 0.18);
}

.service-check-card h3 {
    color: var(--secondary);
    font-size: 1.12rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-check-card h3::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(192, 158, 13, 0.14);
}

.service-check-card p {
    color: var(--muted);
}

.service-check-card span {
    color: var(--secondary);
    font-weight: 600;
    display: block;
    margin-top: 0.2rem;
}

.service-inline-cta {
    padding: 2.5rem 0;
    background: var(--light);
}

.service-inline-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-inline-cta-text h3 {
    color: var(--secondary);
    font-size: 1.4rem;
}

.service-inline-cta-text p {
    color: var(--muted);
    margin-top: 0.4rem;
}

.service-constraint-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    color: var(--muted);
}

.service-constraint-list li {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 247, 251, 0.75));
    border-radius: 18px;
    padding: 1.1rem 1.2rem 1.1rem 1.6rem;
    box-shadow: 0 14px 30px rgba(32, 48, 74, 0.12);
    display: grid;
    gap: 0.45rem;
    text-align: left;
    border: 1px solid rgba(32, 48, 74, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-constraint-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    bottom: 0.9rem;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(192, 158, 13, 0.9), rgba(192, 158, 13, 0.2));
}

.service-constraint-list li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(192, 158, 13, 0.16), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.service-constraint-list li > * {
    position: relative;
    z-index: 1;
}

.service-constraint-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(32, 48, 74, 0.16);
}

.service-constraint-list strong {
    color: var(--secondary);
}

.service-constraint-list span {
    color: var(--secondary);
    font-weight: 600;
}

.service-examples {
    padding: 2.5rem 0 3rem;
    background: var(--white);
}

.service-examples-inner {
    display: grid;
    gap: 1.5rem;
}

.service-examples-inner h3 {
    text-align: center;
    color: var(--secondary);
    font-size: 1.4rem;
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.service-example-card {
    background: #f3f5f9;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.12);
    border: 1px solid rgba(32, 48, 74, 0.06);
    display: grid;
    gap: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-example-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(32, 48, 74, 0.18);
}

.service-example-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

.service-example-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.service-example-meta span {
    background: #f2e7c2;
    color: var(--secondary);
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    border: 1px solid rgba(192, 158, 13, 0.35);
}

.service-quote {
    padding: 2.5rem 0;
    background: var(--secondary-strong);
}

.service-quote-inner {
    text-align: center;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.service-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.service-timeline-step {
    background: var(--light);
    border-radius: 14px;
    padding: 0.75rem 0.8rem;
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid rgba(32, 48, 74, 0.08);
}

.service-signal {
    color: var(--secondary);
    font-weight: 600;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
}

.service-list--icons li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--light);
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    color: var(--secondary);
    font-weight: 600;
}

.service-list--icons li span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(192, 158, 13, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-style-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.service-style {
    background: var(--white);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 12px 26px rgba(32, 48, 74, 0.08);
    display: grid;
    gap: 0.6rem;
    text-align: left;
}

.service-style img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.service-style h3 {
    color: var(--secondary);
    font-size: 1.05rem;
}

.service-style p {
    color: var(--muted);
}

.service-style-criteria {
    color: var(--secondary);
    font-weight: 600;
}

.service-style a {
    color: var(--secondary);
    font-weight: 600;
}

.service-links {
    color: var(--muted);
}

.service-links a {
    color: var(--secondary);
    font-weight: 600;
}

.service-cta {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.08), rgba(192, 158, 13, 0.12));
}

.service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-cta-text h2 {
    color: var(--secondary);
    font-size: 1.8rem;
}

.service-cta-text p {
    color: var(--muted);
    margin-top: 0.6rem;
}

.service-geo {
    padding: 2rem 0 0;
    background: var(--white);
}

.service-geo-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--light);
    padding: 0.75rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(32, 48, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(32, 48, 74, 0.14);
}

.project-card p {
    margin-top: 0.85rem;
    font-size: 0.98rem;
    color: var(--secondary);
    font-weight: 600;
}

.project-thumb {
    height: 150px;
    border-radius: 12px;
    background: #e1e6ef;
    background-position: center;
    background-size: cover;
}

.method-proof {
    padding: 4rem 0;
    background: var(--light);
}

.method-proof-inner {
    display: grid;
    gap: 2.5rem;
}

.method-proof-text {
    text-align: center;
    display: grid;
    gap: 0.75rem;
}

.method-proof-text h2 {
    font-size: clamp(1.9rem, 2vw + 1rem, 2.6rem);
    color: var(--secondary);
}

.method-proof-text p {
    color: var(--muted);
    font-size: 1.05rem;
}

.method-proof-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.method-proof-step {
    background: var(--white);
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 12px 28px rgba(32, 48, 74, 0.1);
    border: 1px solid rgba(32, 48, 74, 0.06);
    display: grid;
    gap: 0.65rem;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-proof-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.16);
}

.method-proof-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(192, 158, 13, 0.18);
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.method-proof-step h3 {
    color: var(--secondary);
    font-size: 1.08rem;
}

.seo-note {
    padding: 1.2rem 0 0;
    background: var(--light);
}

.seo-note p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
    font-size: 0.98rem;
}

.thumb-1 { background-image: url("/assets/img/home/extension-laterale.jpg"); }
.thumb-2 { background-image: url("/assets/img/home/extension-surélévation.png"); }
.thumb-3 { background-image: url("/assets/img/home/extension-laterale-bois.jpg"); }
.thumb-4 { background-image: url("/assets/img/home/extension-moderne.png"); }

.experience {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.05), rgba(192, 158, 13, 0.08));
}

.experience-inner {
    text-align: center;
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.experience-header {
    display: grid;
    gap: 0.75rem;
    max-width: 720px;
}

.experience h2 {
    font-size: 2rem;
    color: var(--secondary);
}

.experience-header p {
    color: var(--muted);
    font-size: 1.05rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    width: 100%;
}

.experience-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 14px 30px rgba(32, 48, 74, 0.12);
    display: grid;
    gap: 0.75rem;
    text-align: left;
    border: 1px solid rgba(32, 48, 74, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.18);
}

.experience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(192, 158, 13, 0.15), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.experience-card > * {
    position: relative;
    z-index: 1;
}

.experience-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(192, 158, 13, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.experience-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
}

.experience-card p {
    color: var(--muted);
    font-size: 0.98rem;
}

.experience-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.cta-hero {
    padding: 5rem 0 4.5rem;
    background: linear-gradient(135deg, rgba(32, 48, 74, 0.95), rgba(32, 48, 74, 0.7));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-hero::before,
.cta-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-hero::before {
    background: radial-gradient(circle at 15% 20%, rgba(192, 158, 13, 0.25), transparent 55%);
}

.cta-hero::after {
    background: radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 45%);
}

.cta-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 2.8rem;
}

.cta-hero-text {
    display: grid;
    gap: 1.1rem;
}

.cta-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.cta-hero-text h1 {
    font-size: clamp(2.3rem, 2.5vw + 1rem, 3.2rem);
    line-height: 1.15;
}

.cta-hero-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
}

.cta-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-hero-note {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-hero-card {
    background: var(--white);
    color: var(--secondary);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    display: grid;
    gap: 1.2rem;
}

.cta-hero-card h2 {
    font-size: 1.4rem;
}

.cta-hero-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    color: var(--text);
}

.cta-hero-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.cta-hero-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(192, 158, 13, 0.18);
}

.cta-hero-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cta-hero-highlight span {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(32, 48, 74, 0.08);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.88rem;
}

.cta-path {
    padding: 3.5rem 0;
    background: var(--white);
}

.cta-path-inner {
    display: grid;
    gap: 2rem;
}

.cta-path-header {
    text-align: center;
    display: grid;
    gap: 0.6rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-path-header h2 {
    color: var(--secondary);
    font-size: 2rem;
}

.cta-path-header p {
    color: var(--muted);
}

.cta-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.cta-path-card {
    background: var(--light);
    border-radius: 20px;
    padding: 1.6rem;
    display: grid;
    gap: 0.75rem;
    box-shadow: 0 14px 30px rgba(32, 48, 74, 0.1);
    border: 1px solid rgba(32, 48, 74, 0.06);
}

.cta-path-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(192, 158, 13, 0.2);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cta-path-card h3 {
    color: var(--secondary);
    font-size: 1.1rem;
}

.cta-path-card p {
    color: var(--muted);
}

.cta-selector {
    padding: 3.5rem 0;
    background: var(--light);
}

.cta-selector-header {
    text-align: center;
    display: grid;
    gap: 0.6rem;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.cta-selector-header h2 {
    color: var(--secondary);
    font-size: 2rem;
}

.cta-selector-header p {
    color: var(--muted);
}

.cta-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.cta-choice {
    border: 1px solid rgba(32, 48, 74, 0.12);
    background: var(--white);
    border-radius: 20px;
    padding: 1.6rem;
    display: grid;
    gap: 0.6rem;
    text-align: left;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cta-choice:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.14);
}

.cta-choice.is-active {
    border-color: rgba(192, 158, 13, 0.6);
    box-shadow: 0 20px 40px rgba(192, 158, 13, 0.2);
}

.cta-choice-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(192, 158, 13, 0.18);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cta-choice-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-choice-text {
    color: var(--muted);
    font-size: 0.98rem;
}

.cta-form-section {
    padding: 4rem 0 4.5rem;
    background: var(--white);
}

.cta-form-panel {
    display: none;
    animation: ctaFadeIn 0.4s ease;
}

.cta-form-panel.is-active {
    display: block;
}

.cta-form-header {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.cta-form-header h2 {
    color: var(--secondary);
    font-size: 1.8rem;
}

.cta-form-header p {
    color: var(--muted);
}

.cta-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: 2rem;
    align-items: start;
}

.cta-form {
    background: var(--light);
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.12);
    border: 1px solid rgba(32, 48, 74, 0.08);
}

.cta-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.cta-form-field {
    display: grid;
    gap: 0.4rem;
}

.cta-form-field label {
    font-weight: 600;
    color: var(--secondary);
}

.cta-form-field input,
.cta-form-field select,
.cta-form-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(32, 48, 74, 0.15);
    font-family: inherit;
    font-size: 0.98rem;
    background: var(--white);
    color: var(--text);
}

.cta-form-field textarea {
    resize: vertical;
}

.cta-form-field input:focus,
.cta-form-field select:focus,
.cta-form-field textarea:focus {
    outline: none;
    border-color: rgba(192, 158, 13, 0.7);
    box-shadow: 0 0 0 3px rgba(192, 158, 13, 0.15);
}

.cta-form-field--full {
    grid-column: 1 / -1;
}

.cta-form-actions {
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-form-note {
    color: var(--muted);
    font-size: 0.95rem;
}

.cta-form-aside {
    background: var(--secondary-strong);
    color: var(--white);
    border-radius: 22px;
    padding: 2rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 18px 36px rgba(32, 48, 74, 0.22);
}

.cta-form-aside h3 {
    font-size: 1.2rem;
}

.cta-form-aside p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-form-aside-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1rem;
    display: grid;
    gap: 0.3rem;
}

.cta-form-aside-card a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
}

.cta-form-aside-card span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.cta-form-aside-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
}

.cta-form-aside-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.cta-form-aside-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(32, 48, 74, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.check {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(192, 158, 13, 0.2);
    color: var(--primary);
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

.site-footer {
    background: var(--secondary-strong);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-footer::before {
    background: radial-gradient(circle at 20% 20%, rgba(192, 158, 13, 0.18), transparent 45%);
}

.site-footer::after {
    background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.08), transparent 40%);
}

.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) 2fr;
    gap: 3.5rem;
    padding-bottom: 2rem;
    z-index: 1;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 1.1rem;
    padding: 0.65rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    filter: brightness(1.25) saturate(1.05) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.site-footer h4 {
    color: var(--white);
    margin-bottom: 0.85rem;
    font-size: 1.02rem;
    letter-spacing: 0.01em;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--primary);
}

.footer-contact {
    gap: 0.75rem;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact span:first-child {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 0 0;
    font-size: 0.92rem;
    z-index: 1;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    font-weight: 500;
}

.legal-page {
    padding: 3.5rem 0;
    background: var(--white);
}

.legal-page--light {
    background: var(--light);
}

.legal-page-inner {
    display: grid;
    gap: 1.25rem;
    max-width: 920px;
}

.legal-page-inner h1,
.legal-page-inner h2 {
    color: var(--secondary);
}

.legal-page-inner p {
    color: var(--muted);
}

.legal-card {
    background: var(--light);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 12px 26px rgba(32, 48, 74, 0.08);
    border: 1px solid rgba(32, 48, 74, 0.08);
    display: grid;
    gap: 0.75rem;
}

.legal-card a {
    color: var(--secondary);
    font-weight: 600;
}

.legal-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .truth-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .experience-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .decision-grid {
        grid-template-columns: 1fr;
    }

    .method-proof-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-project-card {
        grid-template-columns: 1fr;
    }

    .style-projection-grid {
        grid-template-columns: 1fr;
    }

    .service-projection-grid {
        grid-template-columns: 1fr;
    }

    .service-check-grid {
        grid-template-columns: 1fr;
    }

    .service-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-examples-grid {
        grid-template-columns: 1fr;
    }

    .know-how-step-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-hero-inner {
        grid-template-columns: 1fr;
    }

    .cta-path-grid {
        grid-template-columns: 1fr;
    }

    .cta-selector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-form-layout {
        grid-template-columns: 1fr;
    }

    .quick-recall-inner {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.55rem;
    }

    .brand {
        flex: 0 0 auto;
    }

    .nav {
        width: auto;
        flex: 0 0 auto;
        position: relative;
        margin-left: 0;
        order: 3;
    }

    .site-header > .container.header-inner > .btn.btn-primary {
        display: inline-flex;
        order: 2;
        margin-left: auto;
        padding: 0.56rem 0.92rem;
        font-size: 0.84rem;
        line-height: 1;
        white-space: nowrap;
        box-shadow: 0 8px 22px rgba(192, 158, 13, 0.28);
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        width: 42px;
        height: 42px;
        background: var(--white);
        border: 1px solid rgba(32, 48, 74, 0.18);
        border-radius: 50%;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        background: var(--secondary);
    }

    .nav-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        right: 0;
        top: calc(100% + 0.65rem);
        width: min(86vw, 320px);
        background: var(--white);
        border: 1px solid rgba(32, 48, 74, 0.12);
        border-radius: 14px;
        box-shadow: 0 18px 36px rgba(32, 48, 74, 0.18);
        padding: 0.5rem;
        z-index: 30;
        gap: 0;
    }

    .nav-list > li > a,
    .nav-link {
        display: block;
        padding: 0.65rem 0.8rem;
        border-radius: 10px;
    }

    .nav-list > li > a:hover,
    .nav-link:hover {
        background: var(--light);
    }

    .nav-item {
        width: 100%;
        text-align: left;
        padding-bottom: 0;
    }

    .has-submenu > .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .has-submenu > .nav-link::after {
        content: "+";
        position: static;
        width: auto;
        height: auto;
        background: none;
        color: var(--secondary);
        font-weight: 700;
        font-size: 1.1rem;
        line-height: 1;
    }

    .has-submenu.open > .nav-link::after {
        content: "-";
    }

    .nav-submenu {
        position: static;
        box-shadow: none;
        background: rgba(32, 48, 74, 0.045);
        border-radius: 10px;
        border-left: 3px solid rgba(192, 158, 13, 0.8);
        padding: 0.35rem 0.35rem 0.35rem 0.55rem;
        display: none;
        gap: 0.2rem;
        margin: 0.35rem 0 0.3rem 0.45rem;
    }

    .nav-item.open .nav-submenu {
        display: grid;
    }

    .nav-submenu a {
        padding: 0.6rem 0.7rem;
        font-size: 0.97rem;
        color: rgba(32, 48, 74, 0.95);
        border-radius: 8px;
    }

    .nav-submenu a:hover {
        background: rgba(192, 158, 13, 0.14);
    }

    .nav-list.open {
        display: flex;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .experience-list {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .decision {
        padding: 3rem 0;
    }

    .decision-card {
        text-align: center;
    }

    .decision-card li {
        justify-content: center;
    }

    .method-proof {
        padding: 3rem 0;
    }

    .method-proof-steps {
        grid-template-columns: 1fr;
    }

    .method-proof-step {
        text-align: center;
    }

    .journey {
        padding: 3rem 0 3.5rem;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .reference-cta-inner {
        text-align: center;
        justify-content: center;
    }

    .know-how-cta-inner {
        text-align: center;
        justify-content: center;
    }

    .service-cta-inner {
        text-align: center;
        justify-content: center;
    }

    .service-inline-cta-inner {
        text-align: center;
        justify-content: center;
    }

    .service-constraint-list li {
        text-align: center;
    }

    .service-list--icons li {
        justify-content: center;
    }

    .service-style-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-style {
        text-align: center;
    }

    .experience-card {
        text-align: center;
    }

    .truth {
        padding: 3rem 0;
    }

    .truth-title {
        text-align: center;
        margin: 0 auto;
    }

    .truth-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .cta-hero-text {
        text-align: center;
    }

    .cta-hero-actions {
        justify-content: center;
    }

    .cta-hero-card {
        text-align: center;
    }

    .cta-hero-list {
        justify-items: center;
    }

    .cta-path-grid {
        grid-template-columns: 1fr;
    }

    .cta-selector-grid {
        grid-template-columns: 1fr;
    }

    .cta-form-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        padding: 1.6rem;
    }

    .quick-recall-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .site-header > .container.header-inner > .btn.btn-primary {
        padding: 0.5rem 0.78rem;
        font-size: 0.78rem;
    }
}
