@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/IBMPlexSerif-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/IBMPlexSerif-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/IBMPlexSerif-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
    --bg-dark: #706766;
    --bg-darker: #4f4949;
    --text-light: #ffffff;
    --text-soft: #efe6de;
    --text-dark: #4c4442;
    --text-muted: #8b807c;
    --accent: #e3be98;
    --accent-strong: #d7a067;
    --surface-light: #f4f1f0;
    --surface-white: #ffffff;
    --line-soft: rgba(255, 255, 255, 0.18);
    --line-dark: rgba(76, 68, 66, 0.15);
    --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.10);
    --container: 1240px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-dark);
    font-family: Arial, Helvetica, sans-serif;
    background: var(--surface-light);
}

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

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



.phone-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
}


.login-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
}

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

.site-header .container {
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}


.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand img {
    width: 250px;
    max-width: 100%;
    margin-left: 10px;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 34px;
}

.main-nav a,
.footer-nav a,
.phone-link {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.main-nav a,
.footer-nav a {
    white-space: nowrap;
}

.main-nav a::after,
.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.22s ease;
    opacity: 0;
}

.main-nav a:hover::after,
.footer-nav a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.phone-link {
    white-space: nowrap;
}

.phone-link:hover {
    opacity: 0.82;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

.login-button,
.primary-button,
.form-button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.login-button:hover,
.primary-button:hover,
.form-button:hover,
.small-button:hover {
    transform: translateY(-1px);
    filter: brightness(0.93);
}

.login-button {
    min-width: 220px;
    min-height: 50px;
    padding: 12px 30px;
    background: var(--accent);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-right: 10px;
    gap: 12px;
}

.hero-section,
.welcome-section,
.cta-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: flex-end;
    background: #111;
}

.strom-hero-section{
    min-height: 50vh;
}

.section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-overlay {
    position: absolute;
    inset: 0;
}

.section-overlay-dark {
    background: linear-gradient(to bottom, rgba(34, 28, 27, 0.28), rgba(10, 8, 8, 0.56) 60%, rgba(7, 7, 7, 0.72));
}

.section-overlay-light {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58), rgba(63, 58, 58, 0.56));
}

.hero-content,
.cta-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1,
.intro-block h2,
.about-copy h2,
.cta-content h2,
.contact-form-card h2,
.contact-big-text {
    font-family: var(--font-serif);
    font-weight: 400;
}

.hero-content h1 {
    max-width: 1180px;
    margin: 0;
    color: var(--text-light);
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1.12;
}

.hero-divider {
    width: min(1000px, 100%);
    height: 1px;
    margin: 22px auto 18px;
    background: rgba(255, 255, 255, 0.22);
}

.hero-content p {
    max-width: 1180px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}

.welcome-section,
.features-section,
.testimonials-section {
    padding: 92px 0;
}

.welcome-section .container,
.about-section,
.features-section .container,
.testimonials-section .container,
.contact-section .container {
    position: relative;
    z-index: 1;
}

.intro-block {
    margin-bottom: 48px;
}

.intro-block.centered {
    text-align: center;
    margin-inline: auto;
}

.intro-block.narrow {
    max-width: 1040px;
}

.intro-block.wide-copy {
    max-width: 1160px;
}

.intro-block h2,
.about-copy h2,
.cta-content h2,
.testimonials-section h2 {
    margin: 0 0 22px;
    font-size: clamp(30px, 2.8vw, 52px);
    line-height: 1.18;
    color: var(--text-dark);
}

.intro-block p,
.about-copy p,
.feature-card p,
.cta-content p,
.testimonial-card p,
.contact-copy p,
.contact-form-card p {
    font-size: 17px;
    line-height: 1.6;
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

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

.info-card,
.feature-card,
.testimonial-card,
.contact-form-card {
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.info-cards {
    align-items: stretch;
}

.info-card {
    padding: 34px 34px 36px;
    min-height: 100%;
}

.info-card h3,
.feature-card h3,
.contact-copy h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.22;
    color: var(--text-dark);
}

.info-card-transparent {
    border: 1px solid rgba(214, 159, 103, 0.5);
    background: rgba(70, 65, 64, 0.22);
    backdrop-filter: blur(2px);
}

.info-card-transparent h3,
.info-card-transparent ul,
.contact-copy,
.cta-content,
.hero-content {
    color: var(--text-light);
}

.info-card-light {
    background: rgba(255, 255, 255, 0.92);
}

.info-card-accent {
    background: rgba(227, 190, 152, 0.96);
}

.pill-label {
    display: inline-block;
    margin-bottom: 22px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent-strong);
    color: var(--text-dark);
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
}

.soft-box {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(76, 68, 66, 0.08);
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
}

.info-card ul {
    margin: 0;
    padding-left: 22px;
    line-height: 1.65;
}

.info-card li {
    margin-bottom: 14px;
    font-size: 17px;
}

.about-section {
    padding: 0 0 86px;
    background: var(--bg-dark);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 620px;
    gap: 48px;
    align-items: center;
    padding: 74px 0 56px;
}

.about-copy {
    color: var(--text-soft);
}

.about-copy h2 {
    color: var(--text-light);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 22px;
}

.about-image {
    width: 100%;
    aspect-ratio: 2 / 2;
    object-fit: cover;
    object-position: center -5%;
    border-radius: 6px;
}

.partner-strip {
    overflow: hidden;
    padding-top: 18px;
}

.partner-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partner-marquee 20s linear infinite;
}

.partner-group {
    display: flex;
    align-items: center;
    gap: 54px;
    flex-shrink: 0;
    padding-right: 54px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    flex: 0 0 auto;
}

.partner-item img {
    max-height: 80px;
    width: auto;
    display: block;
}

@keyframes partner-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.features-section {
    background: #efefef;
}

.feature-card {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 26px;
    min-height: 100%;
    text-align: center;
}

.feature-card img {
    width: 100%;
    aspect-ratio: 1.23 / 1;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 22px;
}

.feature-card-light,
.feature-card-outline {
    background: #f8f8f8;
}

.feature-card-outline {
    border: 2px solid rgba(215, 160, 103, 0.55);
}

.feature-card-accent {
    background: #f0cca7;
}

.feature-card p {
    color: #9d8f88;
    margin: 0 0 22px;
}

.small-button {
    min-height: 52px;
    padding: 12px 24px;
    align-self: center;
}

.small-button.accent {
    background: var(--accent);
    color: var(--text-dark);
}

.small-button.dark,
.form-button {
    background: #5d5658;
    color: var(--text-light);
}

.full-width {
    width: 100%;
}

.cta-section {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.cta-content {
    padding: 84px 0;
}

.cta-content h2 {
    color: var(--text-light);
}

.cta-content p {
    color: var(--text-light);
    margin: 0 auto 34px;
    max-width: 1040px;
}

.primary-button {
    min-height: 54px;
    padding: 14px 26px;
    background: var(--accent);
    color: var(--text-dark);
}

.testimonials-section {
    background: #f1f1f1;
}

.card-grid-testimonials {
    display: grid;
    grid-template-columns: 1.12fr 1fr 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    min-height: 100%;
    padding: 30px 30px 28px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(76, 68, 66, 0.08);
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-number {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 10px;
}

.avatar-row {
    display: flex;
    align-items: center;
    margin: 20px 0 18px;
}

.avatar-row img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    margin-left: -10px;
    border: 3px solid #fff;
}

.avatar-row img:first-child {
    margin-left: 0;
}

.stars {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.08em;
}

.stars.soft {
    color: #d8b48f;
    opacity: 0.9;
    margin-bottom: 20px;
}

.trust-copy {
    margin-top: 14px;
    margin-bottom: 26px;
    color: #96908d;
    font-weight: 700;
}

.muted {
    color: var(--text-muted);
}

.italic {
    font-style: italic;
}

.contact-section {
    min-height: 760px;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 78px;
    align-items: center;
    padding: 84px 0;
}

.contact-form-card {
    padding: 40px 42px 42px;
    background: rgba(227, 190, 152, 0.96);
}

.contact-form-card h2 {
    margin: 0 0 24px;
    font-size: clamp(34px, 2.4vw, 52px);
}

.contact-big-text {
    margin: 0 0 28px;
    font-size: clamp(26px, 2.3vw, 44px);
    line-height: 1.18;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    padding: 18px 18px;
    font: inherit;
    color: var(--text-dark);
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    min-height: 54px;
    border: none;
    cursor: pointer;
}

.contact-copy {
    text-align: center;
}

.contact-copy h3 {
    color: var(--text-light);
    font-size: 32px;
}

.contact-copy p {
    margin-bottom: 38px;
}

.contact-points {
    display: flex;
    justify-content: center;
    gap: 54px;
    flex-wrap: wrap;
}

.contact-points div {
    display: grid;
    gap: 8px;
}

.contact-label {
    font-size: 18px;
    font-weight: 700;
}

.contact-points a {
    color: var(--text-light);
    font-size: 16px;
}

.site-footer {
    background: #4f4a4d;
    color: var(--text-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 42px 0 26px;
}

.footer-brand img {
    width: 235px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom a {
    text-decoration: underline;
}


.centered {
    text-align: center;
}
.hero-content-left {
    align-items: flex-start;
    text-align: left;
    padding-top: 120px;
    padding-bottom: 56px;
}

.hero-content-left h1 {
    max-width: 1120px;
    font-size: clamp(36px, 3.8vw, 58px);
    line-height: 1.08;
}

.hero-content-left .hero-divider {
    width: min(1120px, 100%);
    margin: 24px 0 24px;
}

.hero-content-left p {
    margin-left: 0;
    margin-right: 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.55;
}

.strom-benefits-section {
    background: #f3f3f3;
    padding-top: 92px;
    padding-bottom: 92px;
}

.strom-check-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(240px, auto));
    gap: 18px;
    align-items: stretch;
}

.strom-check-image {
    grid-row: 1 / span 2;
}

.strom-check-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.strom-check-card {
    background: #ecebea;
    border-radius: 18px;
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 240px;
}

.strom-check-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    margin-bottom: 22px;
    opacity: 0.95;
}

.strom-check-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.75);
    margin-bottom: 34px;
}

.strom-check-card h3 {
    margin: auto 0 0;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.12;
    color: var(--text-dark);
}

.strom-wide-text-section {
    padding: 96px 0 88px;
    background: #f5f5f5;
}

.strom-wide-text {
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
}

.strom-wide-text h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 3vw, 68px);
    line-height: 1.16;
    color: var(--text-dark);
}

.strom-cta-section {
    min-height: 430px;
}

.strom-cta-inner {
    position: relative;
    z-index: 1;
    padding: 54px 0;
}

.strom-cta-copy {
    max-width: 760px;
    color: var(--text-light);
}

.strom-cta-copy h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 2.7vw, 60px);
    line-height: 1.1;
    color: var(--text-light);
}

.strom-deadlines-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.strom-deadlines-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 76px;
    align-items: start;
}

.strom-deadlines-copy h2 {
    margin: 0 0 22px;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 2.4vw, 58px);
    line-height: 1.14;
    color: var(--text-dark);
}

.strom-deadlines-copy p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.strom-deadlines-list {
    display: grid;
}

.strom-deadlines-list div {
    padding: 28px 0;
    border-top: 1px solid rgba(76, 68, 66, 0.10);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.25;
    color: rgba(76, 68, 66, 0.85);
}

.strom-move-section {
    padding: 0 0 92px;
    background: #f5f5f5;
}

.strom-move-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
    align-items: stretch;
}

.strom-move-card {
    background: #ecebea;
    border-radius: 18px;
    padding: 54px;
}

.strom-move-card h2 {
    margin: 0 0 26px;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 2.3vw, 56px);
    line-height: 1.08;
    color: var(--text-dark);
}

.strom-move-card p {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.6;
}

.strom-move-list {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
}

.strom-move-list li {
    position: relative;
    padding: 22px 0 22px 54px;
    border-top: 1px solid rgba(76, 68, 66, 0.10);
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.4;
}

.strom-move-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-54%);
    font-size: 25px;
    line-height: 1;
    color: #4c4442;
    font-weight: 300;
}

.strom-move-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}


/* =========================
   MARKET ENERGY PAGE
   ========================= */

.market-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}

.market-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    padding-bottom: 34px;
    text-align: left;
}

.market-hero-content h1 {
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(38px, 3.7vw, 62px);
    line-height: 1.08;
}

.market-hero-content .hero-divider {
    width: min(1250px, 100%);
    margin: 24px 0 24px;
}

.market-hero-content p {
    max-width: 760px;
    margin: 0;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

.market-about {
    padding: 82px 0 70px;
    background: #f3f3f3;
}

.market-about-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 48px;
    align-items: start;
}

.market-about-copy .market-kicker {
    margin: 0 0 18px;
    color: #dfbf9b;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}


.market-about-copy h2 {
    margin: 0 0 26px;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 3.8vw, 60px);
    line-height: 1.06;
    color: var(--text-dark);
    max-width: 760px;
}

.market-about-copy > p {
    max-width: 760px;
    color: #8d8884;
    font-size: 18px;
    line-height: 1.6;
}

.market-about-meta {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 24px;
    align-items: center;
    margin-top: 80px;
    padding-top: 34px;
    border-top: 1px solid rgba(76, 68, 66, 0.10);

    max-width: 860px;
}

.market-about-meta-left {
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.2;
    color: var(--text-dark);
}

.market-about-meta-right {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 56px;
    line-height: 1;
    color: #dfcfb5;
    font-weight: 400;
}

.market-about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 170px 170px;
    gap: 16px;
    padding-top: 8px;
}

.market-about-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.market-about-gallery img:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.market-about-gallery img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.market-about-gallery img:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.market-about-gallery img:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / span 2;
}

.market-vision {
    padding: 96px 0 92px;
    background: #e4bc96;
}

.market-vision-intro {
    max-width: 920px;
    margin: 0 auto 56px;
    text-align: center;
}

.market-vision-intro h2 {
    margin: 0 0 18px;
    font-family: var(--font-serif);
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
}

.market-vision-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: #7f756e;
}

.market-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.market-vision-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.market-vision-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.16));
    border-radius: 20px;
    padding: 40px 40px 36px;
}

.market-vision-card h3 {
    margin: 0 0 22px;
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    color: #111;
}

.market-vision-card > p {
    margin: 0 0 34px;
    font-size: 17px;
    line-height: 1.65;
    color: #111;
}

.market-vision-line {
    height: 1px;
    background: rgba(76, 68, 66, 0.14);
    margin-bottom: 28px;
}

.market-vision-card h4 {
    margin: 0 0 20px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: #111;
}

.market-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.market-check-list li {
    position: relative;
    padding-left: 42px;
    font-size: 17px;
    line-height: 1.5;
    color: #111;
}

.market-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #7a6d71;
    color: #f2d0a7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.market-dynamic {
    padding: 96px 0 88px;
    background: #f3f3f3;
}

.market-dynamic-inner {
    max-width: 900px;
    text-align: center;
}

.market-dynamic-inner h2 {
    margin: 0 0 22px;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.1;
    color: var(--text-dark);
}

.market-dynamic-inner p {
    max-width: 820px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-dark);
}

.market-dynamic-cta-box {
    width: 100%;
    max-width: 410px;
    margin: 0 auto;
    padding: 30px 28px;
    border-radius: 18px;
    border: 1px solid rgba(76, 68, 66, 0.08);
    background: rgba(255,255,255,0.28);
}

.market-dynamic-cta-box .primary-button {
    width: 100%;
}

.market-banner-image {
    background: #f3f3f3;
}

.market-banner-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.market-principles {
    padding: 96px 0 70px;
    background: #f3f3f3;
}

.market-principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.market-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 18px;
    border-radius: 999px;
    background: #ebebeb;
    color: #4b596e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.market-principles-copy h2 {
    margin: 0 0 24px;
    max-width: 560px;
    font-family: var(--font-serif);
    font-size: clamp(44px, 4vw, 60px);
    line-height: 1.08;
    font-weight: 400;
    color: var(--text-dark);
}

.market-principles-copy p {
    max-width: 560px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #8b8885;
}

.market-principles-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.market-values {
    padding: 48px 0 92px;
    background: #f3f3f3;
}

.market-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    padding-top: 54px;
    border-top: 1px solid rgba(76, 68, 66, 0.10);
}

.market-value-card {
    display: flex;
    flex-direction: column;
}

.market-value-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin-bottom: 28px;
}

.market-value-card h3 {
    margin: 0 0 22px;
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1.22;
    font-weight: 400;
    color: var(--text-dark);
}

.market-value-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: #8b8885;
}


/* =========================
   HAUSVERWALTUNGEN PAGE
   ========================= */

.property-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}

.property-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    padding-bottom: 92px;
    text-align: left;
}

.property-hero-content h1 {
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 3.8vw, 62px);
    line-height: 1.08;
}

.property-hero-content .hero-divider {
    width: min(1180px, 100%);
    margin: 22px 0 22px;
    background: rgba(255, 255, 255, 0.22);
}

.property-hero-content p {
    max-width: 760px;
    margin: 0;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
}

.property-intro {
    padding: 96px 0 82px;
    background: #f4f4f4;
}

.property-intro-inner {
    max-width: 980px;
    text-align: center;
}

.property-intro-inner h2 {
    margin: 0 0 28px;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(42px, 3.5vw, 64px);
    line-height: 1.12;
    color: var(--text-dark);
}

.property-intro-inner p {
    max-width: 980px;
    margin: 0 auto 18px;
    color: #8c8582;
    font-size: 17px;
    line-height: 1.65;
}

.property-benefits {
    padding: 88px 0 110px;
    background: var(--bg-dark);
}

.property-benefits-intro {
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
}

.property-benefits-intro h2 {
    margin: 0 0 18px;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 3.3vw, 60px);
    line-height: 1.12;
}

.property-benefits-intro p {
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.35;
}

.property-benefits-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: stretch;
}

.property-benefits-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.property-benefit-card {
    min-height: 286px;
    padding: 32px 32px 30px;
    background: #f1f1f1;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
}

.property-benefit-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 26px;
}

.property-benefit-card h3 {
    margin: 0 0 18px;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.18;
}

.property-benefit-card p {
    margin: 0;
    color: #4c4442;
    font-size: 16px;
    line-height: 1.65;
}

.property-benefits-image img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    border-radius: 18px;
}

.property-timeline {
    padding: 110px 0 110px;
    background: var(--bg-dark);
}

.property-timeline-intro {
    max-width: 920px;
    margin: 0 auto 78px;
    text-align: center;
}

.property-timeline-intro h2 {
    margin: 0 0 22px;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(42px, 3.5vw, 64px);
    line-height: 1.12;
}

.property-timeline-intro p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 700;
}

.property-timeline-list {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0 40px;
}

.property-timeline-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(76, 68, 66, 0.45);
}

.property-step {
    position: relative;
    display: flex;
    margin-bottom: 42px;
}

.property-step-right {
    justify-content: flex-end;
    padding-left: calc(50% + 34px);
}

.property-step-left {
    justify-content: flex-start;
    padding-right: calc(50% + 34px);
}

.property-step-dot {
    position: absolute;
    top: 26px;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #f0c995;
    z-index: 2;
}

.property-step-card {
    width: 100%;
    max-width: 560px;
    min-height: 268px;
    padding: 34px 40px 30px;
    border-radius: 18px;
}

.property-step-accent .property-step-card {
    background: #e3be98;
}

.property-step-light .property-step-card {
    background: #f1f1f1;
}

.property-step-number {
    display: inline-block;
    margin-bottom: 14px;
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}

.property-step-accent .property-step-number {
    color: #8a7d79;
}

.property-step-light .property-step-number {
    color: #dfbf9b;
}

.property-step-card h3 {
    margin: 0 0 20px;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.16;
}

.property-step-card p {
    margin: 0;
    color: #2f2b2a;
    font-size: 16px;
    line-height: 1.65;
}

.property-step-line {
    width: 100%;
    height: 1px;
    margin-top: 26px;
    background: rgba(76, 68, 66, 0.10);
}

/* Optional helpers for temporary image placeholders */
.property-benefits-image.placeholder,
.property-hero.placeholder,
.property-banner.placeholder {
    background: linear-gradient(135deg, #8a817f, #6f6766);
}

/* =========================
   SOLAR PAGE
   ========================= */

.solar-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}

.solar-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    padding-bottom: 92px;
    text-align: left;
}

.solar-hero-content h1 {
    max-width: 1180px;
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 2vw, 40px);
    line-height: 1.08;
}

.solar-hero-content .hero-divider {
    width: min(1180px, 100%);
    margin: 22px 0 22px;
    background: rgba(255, 255, 255, 0.22);
}

.solar-hero-content p {
    max-width: 760px;
    margin: 0;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
}

.solar-intro {
    padding: 110px 0 92px;
    background: #f4f4f4;
}

.solar-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: stretch;
}

.solar-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 18px;
}

.solar-intro-copy {
    background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.92));
    border-radius: 18px;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solar-intro-copy h2 {
    margin: 0 0 24px;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(38px, 3.1vw, 58px);
    line-height: 1.12;
}

.solar-intro-copy p {
    margin: 0 0 18px;
    color: #2f2b2a;
    font-size: 17px;
    line-height: 1.7;
}

.solar-intro-line {
    width: 100%;
    height: 1px;
    margin: 26px 0 28px;
    background: rgba(76, 68, 66, 0.12);
}

.solar-intro-points {
    display: grid;
    gap: 18px;
}

.solar-intro-points div {
    position: relative;
    padding-left: 30px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.solar-intro-points div::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #8a7d79;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.solar-statement {
    padding: 96px 0 76px;
    background: #f4f4f4;
}

.solar-statement-inner {
    max-width: 1220px;
    text-align: center;
}

.solar-statement-inner h2 {
    margin: 0 0 28px;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(40px, 3.4vw, 64px);
    line-height: 1.18;
}

.solar-statement-inner p {
    max-width: 980px;
    margin: 0 auto;
    color: #39465a;
    font-size: 17px;
    line-height: 1.7;
}

.solar-values {
    padding: 38px 0 96px;
    background: #f4f4f4;
}

.solar-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.solar-value-card {
    min-height: 300px;
    padding: 34px 32px 30px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.92));
}

.solar-value-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 24px;
}

.solar-value-card h3 {
    margin: 0 0 18px;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.16;
}

.solar-value-card p {
    margin: 0;
    color: #58657a;
    font-size: 16px;
    line-height: 1.7;
}

.solar-process {
    padding: 104px 0 110px;
    background: #f4f4f4;
}

.solar-process-intro {
    max-width: 980px;
    margin: 0 auto 82px;
    text-align: center;
}

.solar-process-intro h2 {
    margin: 0 0 24px;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(42px, 3.5vw, 64px);
    line-height: 1.12;
}

.solar-process-intro p {
    max-width: 840px;
    margin: 0 auto;
    color: #111;
    font-size: 17px;
    line-height: 1.65;
}

.solar-process-list {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.solar-process-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(76, 68, 66, 0.08);
}

.solar-step {
    position: relative;
    display: flex;
    margin-bottom: 42px;
}

.solar-step-right {
    justify-content: flex-end;
    padding-left: calc(50% + 34px);
}

.solar-step-left {
    justify-content: flex-start;
    padding-right: calc(50% + 34px);
}

.solar-step-dot {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #7d7372;
    z-index: 2;
}

.solar-step-card {
    width: 100%;
    max-width: 560px;
    min-height: 320px;
    padding: 38px 40px 30px;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.solar-step-number {
    display: inline-block;
    margin-bottom: 16px;
    color: #dfbf9b;
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.solar-step-card h3 {
    margin: 0 0 22px;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.15;
}

.solar-step-card p {
    margin: 0;
    color: #7a8596;
    font-size: 16px;
    line-height: 1.7;
}

.solar-step-line {
    width: 100%;
    height: 1px;
    margin: 34px 0 26px;
    background: rgba(76, 68, 66, 0.08);
}

.solar-step-meta {
    display: grid;
    gap: 6px;
    padding-left: 42px;
    position: relative;
}

.solar-step-meta::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1dcc3;
}

.solar-step-meta::after {
    content: "↘";
    position: absolute;
    top: 3px;
    left: 7px;
    color: #d1a979;
    font-size: 14px;
    line-height: 1;
}

.solar-step-meta span {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.4;
}

.solar-step-meta strong {
    color: #8a8a8a;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive support for solar page */
@media (max-width: 1200px) {
    .solar-intro-grid,
    .solar-values-grid {
        grid-template-columns: 1fr;
    }

    .solar-intro-image img {
        min-height: 420px;
    }

    .solar-step-right,
    .solar-step-left {
        padding-left: calc(50% + 24px);
        padding-right: 0;
    }

    .solar-step-left {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .solar-hero-content {
        padding-bottom: 56px;
    }

    .solar-hero-content h1 {
        font-size: 36px;
    }

    .solar-intro,
    .solar-statement,
    .solar-values,
    .solar-process {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .solar-intro-copy,
    .solar-value-card,
    .solar-step-card {
        padding: 24px;
    }

    .solar-process-list::before {
        left: 18px;
        transform: none;
    }

    .solar-step {
        padding-left: 52px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .solar-step-dot {
        left: 18px;
        transform: translateX(-50%);
    }

    .solar-step-card {
        max-width: none;
        min-height: auto;
    }
}




@media (max-width: 1200px) {
    .card-grid-3,
    .card-grid-4,
    .card-grid-testimonials,
    .partner-strip,
    .split-layout,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 16px 0;
    }

    .main-nav,
    .header-actions {
        justify-content: center;
    }

    .site-header {
        position: relative;
    }

    .hero-section {
        min-height: 820px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .card-grid-3,
    .card-grid-4,
    .card-grid-testimonials,
    .partner-strip,
    .split-layout,
    .contact-grid,
    .form-row,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .main-nav {
        gap: 14px 18px;
    }

    .login-button {
        min-width: 180px;
    }

    .hero-content {
        padding-bottom: 34px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .welcome-section,
    .features-section,
    .testimonials-section,
    .about-section,
    .cta-content,
    .contact-grid {
        padding-top: 64px;
    }

    .welcome-section,
    .features-section,
    .testimonials-section {
        padding-bottom: 64px;
    }

    .info-card,
    .feature-card,
    .testimonial-card,
    .contact-form-card {
        padding: 24px;
    }



    .contact-points,
    .footer-nav {
        justify-content: flex-start;
    }

    .footer-top,
    .footer-bottom {
        justify-items: flex-start;
        justify-content: flex-start;
    }
}