﻿
.weselny-page {
    --green: #123f37;
    --green-dark: #092e29;
    --green-light: #e8f0eb;
    --gold: #c89a47;
    --gold-light: #e5c987;
    --cream: #f8f5ee;
    --cream-dark: #eee7db;
    --white: #ffffff;
    --text: #172724;
    --text-light: #63706c;
    --border: rgba(18, 63, 55, 0.12);
    --shadow: 0 24px 70px rgba(20, 42, 36, 0.10);

    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow: hidden;
}

.weselny-page *,
.weselny-page *::before,
.weselny-page *::after {
    box-sizing: border-box;
}

.weselny-page img {
    max-width: 100%;
    display: block;
}

.weselny-page a {
    text-decoration: none;
}

.weselny-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.weselny-header {
    height: 82px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.weselny-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.weselny-header-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.weselny-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-dark);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
}

.weselny-logo-icon {
    color: var(--gold);
    font-size: 22px;
}

.weselny-nav {
    margin-left: auto;
    display: flex;
    gap: 31px;
    align-items: center;
}

.weselny-nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.weselny-nav a:hover {
    color: var(--gold);
}

.weselny-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: none;
    cursor: pointer;
}

.weselny-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--green);
    margin: 5px 0;
}


/* BUTTONS */

.weselny-btn {
    min-height: 54px;
    padding: 0 27px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.weselny-btn:hover {
    transform: translateY(-2px);
}

.weselny-btn-small {
    min-height: 44px;
    padding: 0 20px;
    color: #fff;
    background: var(--green);
}

.weselny-btn-primary {
    color: #fff;
    background: var(--green);
    box-shadow: 0 12px 28px rgba(18, 63, 55, 0.22);
}

.weselny-btn-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 16px 36px rgba(18, 63, 55, 0.28);
}

.weselny-btn-secondary {
    border: 1px solid rgba(18, 63, 55, 0.25);
    color: var(--green);
    background: rgba(255, 255, 255, 0.75);
}

.weselny-btn-secondary:hover {
    background: #fff;
}

.weselny-btn-gold {
    color: #172724;
    background: linear-gradient(135deg, #e9cf8c, #c99b48);
    box-shadow: 0 14px 35px rgba(200, 154, 71, 0.25);
}

.weselny-btn-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}


/* HERO */

.weselny-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(222, 198, 142, 0.18), transparent 31%),
        linear-gradient(115deg, #fcfaf6 0%, #f7f4ed 55%, #edf2ee 100%);
    position: relative;
    min-height: 690px;
}

.weselny-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(200, 154, 71, 0.15);
    border-radius: 50%;
    right: -170px;
    top: 80px;
}

.weselny-hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.weselny-hero-content {
    padding: 75px 0;
}

.weselny-eyebrow,
.weselny-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    font-weight: 700;
    font-size: 11px;
}

.weselny-eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.weselny-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: var(--green-dark);
    font-size: clamp(40px, 4.1vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    text-wrap: balance;
    margin: 22px 0 24px;
}

.weselny-hero h1 span {
    display: block;
}

.weselny-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 590px;
    margin: 0;
}

.weselny-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.weselny-payment-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
    font-size: 12px;
    color: var(--text-light);
}

.weselny-payment-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.weselny-payment-info i {
    color: var(--gold);
    font-size: 10px;
}


/* HERO VISUAL */

.weselny-hero-visual {
    height: 590px;
    position: relative;
}

.weselny-hero-photo {
    position: absolute;
    inset: 40px -100px 0 90px;
    border-radius: 180px 0 0 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 45, 39, 0.15),
            rgba(10, 45, 39, 0)
        ),
        var(--weselny-couple-photo)
        center / cover no-repeat;
    opacity: 0.25;
}

.weselny-browser {
    position: absolute;
    width: 470px;
    height: 330px;
    background: #fff;
    border: 9px solid #1d2624;
    border-bottom-width: 17px;
    border-radius: 17px;
    box-shadow: 0 35px 60px rgba(16, 37, 32, 0.25);
    top: 80px;
    right: -20px;
    transform: rotate(1deg);
    overflow: hidden;
}

.weselny-browser-bar {
    height: 25px;
    padding: 8px 11px;
    display: flex;
    gap: 5px;
    background: #f2f2f0;
}

.weselny-browser-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bbb;
}

.weselny-browser-content {
    padding: 19px;
}

.weselny-browser-screen {
    height: calc(100% - 25px);
    overflow: hidden;
    background: #f8f7f3;
}

.weselny-page .weselny-desktop-screenshot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.weselny-browser-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.weselny-browser-top small {
    font-size: 8px;
    color: var(--text-light);
    display: block;
}

.weselny-browser-top strong {
    font-family: "Playfair Display", serif;
    font-size: 19px;
}

.weselny-browser-heart {
    color: var(--gold);
}

.weselny-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 85px 85px;
    gap: 6px;
}

.weselny-gallery > div {
    border-radius: 6px;
    background-image:
        linear-gradient(rgba(12, 44, 38, 0.03), rgba(12, 44, 38, 0.03)),
        var(--weselny-couple-photo);
    background-size: cover;
}

.weselny-gallery-main {
    grid-row: 1 / 3;
    background-position: 30% center;
}

.weselny-gallery-small.one {
    background-position: 55% center;
}

.weselny-gallery-small.two {
    background-position: 65% center;
}

.weselny-gallery-small.three {
    background-position: 72% center;
}

.weselny-gallery-small.four {
    background-position: 80% center;
}

.weselny-phone {
    position: absolute;
    width: 195px;
    height: 390px;
    left: -10px;
    top: 135px;
    z-index: 4;
    background: #151c1a;
    border: 6px solid #151c1a;
    border-radius: 30px;
    padding: 7px;
    box-shadow: 0 35px 60px rgba(18, 40, 35, 0.28);
    transform: rotate(-2deg);
}

.weselny-phone::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 5px;
    border-radius: 10px;
    background: #060808;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.weselny-phone-screen {
    height: 100%;
    border-radius: 20px;
    background: #fff;
    padding: 12px 0 0;
    overflow: hidden;
}

/* Print studio: a small, interactive preview of the included stationery tool. */
.weselny-print-showcase { background:#f8f7f2; }
.weselny-print-grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:70px; }
.weselny-page .weselny-print-copy h2 { margin:18px 0 22px; color:var(--green); font-size:clamp(32px,3.4vw,48px); line-height:1.15; font-weight:500; letter-spacing:-.025em; }
.weselny-print-copy>p { color:var(--text-light); font-size:15px; line-height:1.8; max-width:470px; }
.weselny-page .weselny-print-benefits { list-style:none; padding:0; margin:28px 0; display:grid; gap:22px; }
.weselny-print-benefits li { display:flex; gap:16px; align-items:flex-start; }
.weselny-print-benefits li>span { display:grid; place-items:center; flex:0 0 32px; height:32px; border:1px solid #d5dfd6; border-radius:50%; color:#647b6a; font-size:11px; }
.weselny-print-benefits strong { font-size:14px; color:var(--green); font-weight:600; }
.weselny-print-benefits p { font-size:13px; line-height:1.7; color:var(--text-light); margin:5px 0 0; }
.weselny-print-copy .weselny-print-included { font-size:12px; margin:14px 0 0; }
.weselny-print-studio { --paper:#fafbf5; --paper-ink:#345640; --paper-line:#aab995; position:relative; min-width:0; background:#e8ede5; border:1px solid #dfe6dc; border-radius:26px; padding:24px; }
.weselny-print-studio[data-print-style=rose] { --paper:#fff1f1; --paper-ink:#874d5d; --paper-line:#c797a5; }
.weselny-print-studio[data-print-style=night] { --paper:#192f46; --paper-ink:#f2dfb6; --paper-line:#b7a071; }
.weselny-print-studio-label { display:flex; justify-content:space-between; align-items:center; gap:12px; color:#5a7162; font-size:9px; letter-spacing:.15em; }
.weselny-print-studio-label>span:last-child { letter-spacing:0; font-size:11px; background:#ffffffa8; padding:7px 12px; border-radius:30px; }
.weselny-print-composition { height:442px; position:relative; margin:14px 0; }
.weselny-print-paper { position:absolute; width:250px; height:354px; box-shadow:0 18px 38px #16302321; }
.weselny-print-paper-back { top:42px; left:calc(50% - 155px); transform:rotate(-12deg); background:#ede2d3; padding:34px 22px; color:#816449; border:1px solid #d7c8b4; }
.weselny-print-paper-back>span { font:24px/1.3 Georgia,serif !important; }
.weselny-print-paper-front { top:30px; left:calc(50% - 110px); transform:rotate(5deg); padding:18px; background:var(--paper); color:var(--paper-ink); transition:background .25s,color .25s; }
.weselny-print-paper-inner { height:100%; border:1px solid var(--paper-line); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:14px 8px; }
.weselny-print-paper-kicker { font-size:8px; letter-spacing:.18em; margin-bottom:20px; }
.weselny-page .weselny-print-paper h3 { font:500 24px/1.2 'Playfair Display',Georgia,serif; color:inherit; margin:0 0 12px; }
.weselny-print-paper p { font-size:9px; line-height:1.65; color:inherit; margin:0 0 17px; }
.weselny-print-paper img { width:78px; height:78px; object-fit:contain; background:#fff; padding:5px; }
.weselny-print-paper-caption { font-size:7px; margin:9px 0 18px; }
.weselny-print-paper-signature { font:italic 11px Georgia,serif !important; }
.weselny-print-export { position:absolute; bottom:16px; right:0; background:#fff; border:1px solid #e1e7df; border-radius:14px; box-shadow:0 8px 24px #1630230d; padding:14px 18px; font-size:12px; color:#123f37; transform:rotate(-3deg); }
.weselny-print-export i { margin-right:8px; }
.weselny-print-export small { display:block; color:#7d8b82; font-size:9px; margin:4px 0 0 22px; }
.weselny-print-style-picker { display:flex; align-items:center; justify-content:center; gap:7px; flex-wrap:wrap; }
.weselny-print-style-picker>span { width:100%; text-align:center; font-size:10px; color:#63786a; margin-bottom:5px; }
.weselny-page .weselny-print-style-picker button { display:inline-flex; width:auto; min-height:38px; padding:8px 13px; border:1px solid #c9d6ca; background:transparent; color:#123f37; border-radius:30px; font:500 11px/1.3 'DM Sans',sans-serif; box-shadow:none; cursor:pointer; }
.weselny-page .weselny-print-style-picker button[aria-pressed=true] { background:#123f37; border-color:#123f37; color:#fff; }
.weselny-print-sample-note { font-size:10px; line-height:1.6; color:#65796b; text-align:center; margin:16px auto 0; max-width:320px; }
@media(max-width:1000px) { .weselny-print-grid { gap:34px; } .weselny-print-studio { padding:18px; } }
@media(max-width:760px) { .weselny-print-grid { grid-template-columns:1fr; gap:32px; } .weselny-print-studio { width:100%; max-width:480px; justify-self:center; } .weselny-print-composition { height:410px; } .weselny-print-paper { width:224px; height:330px; } .weselny-print-paper-back { left:calc(50% - 133px); } .weselny-print-paper-front { left:calc(50% - 100px); } .weselny-print-paper-kicker { margin-bottom:12px; } .weselny-print-copy .weselny-btn { font-size:13px; } }
@media(prefers-reduced-motion:reduce) { .weselny-print-paper-front { transition:none; } }

.weselny-page .weselny-phone-screenshot {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
}

.weselny-phone-title {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(18, 63, 55, 0.1);
}

.weselny-phone-title small,
.weselny-phone-title span {
    display: block;
    font-size: 8px;
    color: var(--text-light);
}

.weselny-phone-title strong {
    display: block;
    margin: 5px 0;
    font-family: "Playfair Display", serif;
    font-size: 16px;
}

.weselny-phone-apps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding-top: 13px;
}

.weselny-phone-apps div {
    min-height: 72px;
    border-radius: 8px;
    background: #fff;
    padding: 9px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    font-size: 8px;
}

.weselny-phone-apps i {
    font-size: 16px;
    color: var(--gold);
}

.weselny-phone-apps .featured {
    background: var(--green);
    color: #fff;
}

.weselny-phone-apps .featured i {
    color: var(--gold-light);
}

.weselny-qr-card {
    position: absolute;
    right: 30px;
    bottom: 70px;
    z-index: 5;
    width: 165px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: rotate(3deg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.weselny-qr-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.weselny-qr-card strong {
    font-size: 10px;
    display: block;
    color: var(--green);
}

.weselny-qr-card span {
    font-size: 8px;
    color: var(--text-light);
}


/* TRUST */

.weselny-trust {
    margin-top: -29px;
    position: relative;
    z-index: 10;
}

.weselny-trust-grid {
    min-height: 108px;
    padding: 22px 25px;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.weselny-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 5px 17px;
    border-right: 1px solid var(--border);
}

.weselny-trust-item:last-child {
    border: 0;
}

.weselny-trust-item > i {
    color: var(--gold);
    font-size: 24px;
}

.weselny-trust-item strong,
.weselny-trust-item span {
    display: block;
}

.weselny-trust-item strong {
    font-size: 13px;
    margin-bottom: 3px;
}

.weselny-trust-item span {
    font-size: 10px;
    color: var(--text-light);
}


/* GLOBAL SECTIONS */

.weselny-section {
    padding: 105px 0;
}

.weselny-section-heading {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 58px;
}

.weselny-section-heading h2,
.weselny-why-content h2,
.weselny-final h2 {
    color: var(--green-dark);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.weselny-section-heading h2 {
    font-size: clamp(37px, 4vw, 53px);
    line-height: 1.1;
    margin: 13px 0 17px;
}

.weselny-section-heading p {
    margin: 0 auto;
    max-width: 620px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}


/* STEPS */

.weselny-how {
    background: #fff;
}

.weselny-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.weselny-step {
    border: 1px solid var(--border);
    padding: 38px 34px;
    min-height: 290px;
    border-radius: 14px;
    position: relative;
    background: linear-gradient(135deg, #fff, #fcfbf8);
    transition: 0.25s;
}

.weselny-step:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.weselny-step-number {
    position: absolute;
    right: 25px;
    top: 18px;
    font-family: "Playfair Display", serif;
    font-size: 35px;
    color: rgba(200, 154, 71, 0.18);
}

.weselny-step-icon,
.weselny-feature-icon {
    width: 59px;
    height: 59px;
    border-radius: 13px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
}

.weselny-step h3 {
    font-family: "Playfair Display", serif;
    color: var(--green-dark);
    font-size: 23px;
    margin: 26px 0 11px;
}

.weselny-step p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}


/* FEATURES */

.weselny-features {
    background: var(--cream);
}

.weselny-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.weselny-feature-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    min-height: 265px;
    border-radius: 14px;
    padding: 27px;
    transition: 0.25s;
}

.weselny-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(20, 42, 36, 0.09);
}

.weselny-feature-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    color: var(--green-dark);
    margin: 22px 0 9px;
}

.weselny-feature-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.weselny-feature-highlight {
    background:
        radial-gradient(circle at 90% 0%, rgba(229, 201, 135, 0.2), transparent 40%),
        var(--green);
    border-color: var(--green);
}

.weselny-feature-highlight h3,
.weselny-feature-highlight p {
    color: #fff;
}

.weselny-feature-highlight .weselny-feature-icon {
    background: rgba(255, 255, 255, 0.11);
    color: var(--gold-light);
}

.weselny-feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 9px;
    border-radius: 30px;
    background: var(--gold-light);
    color: var(--green-dark);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.weselny-feature-cta {
    background: transparent;
    border: 1px dashed rgba(18, 63, 55, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.weselny-feature-cta span {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.weselny-feature-cta a {
    color: var(--green);
    font-weight: 700;
}


/* WHY */

.weselny-why {
    background: #fff;
}

.weselny-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.weselny-why-photo {
    min-height: 590px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.weselny-why-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weselny-why-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 38, 33, 0.68),
        transparent 55%
    );
}

.weselny-photo-caption {
    position: absolute;
    z-index: 2;
    bottom: 35px;
    left: 36px;
    color: #fff;
}

.weselny-photo-caption span,
.weselny-photo-caption strong {
    display: block;
}

.weselny-photo-caption span {
    font-size: 16px;
}

.weselny-photo-caption strong {
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.weselny-why-content h2 {
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    margin: 14px 0 33px;
}

.weselny-benefits {
    display: grid;
    gap: 25px;
}

.weselny-benefit {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
}

.weselny-benefit > div {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.weselny-benefit p {
    margin: 0;
    line-height: 1.65;
    font-size: 14px;
    color: var(--text-light);
}

.weselny-benefit strong {
    color: var(--text);
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}


/* OPINIE */

.weselny-testimonials {
    margin-top: 75px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.weselny-testimonial {
    padding: 28px;
    background: var(--cream);
    border-radius: 13px;
}

.weselny-stars {
    display: flex;
    gap: 3px;
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 17px;
}

.weselny-testimonial p {
    margin: 0 0 20px;
    color: var(--text);
    line-height: 1.65;
    font-family: "Playfair Display", serif;
    font-size: 17px;
}

.weselny-testimonial strong {
    font-size: 11px;
    color: var(--text-light);
}


/* PRICE */

.weselny-pricing {
    background:
        radial-gradient(circle at 0% 50%, rgba(200, 154, 71, 0.1), transparent 28%),
        var(--cream);
}

.weselny-price-card {
    width: min(900px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    background: #fff;
    border: 1px solid rgba(200, 154, 71, 0.5);
    border-radius: 17px;
    padding: 50px;
    position: relative;
    box-shadow: var(--shadow);
}

.weselny-price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--green-dark);
    border-radius: 50px;
    padding: 8px 19px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.weselny-price-left {
    padding-right: 45px;
    border-right: 1px solid var(--border);
}

.weselny-price-name {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: var(--green-dark);
}

.weselny-price {
    font-size: 67px;
    line-height: 1;
    font-family: "Playfair Display", serif;
    color: var(--green-dark);
    font-weight: 600;
    margin: 16px 0 8px;
}

.weselny-price small {
    font-size: 27px;
}

.weselny-price-left > p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 25px;
}

.weselny-price-button {
    width: 100%;
}

.weselny-safe-payment {
    display: block;
    margin-top: 13px;
    text-align: center;
    color: var(--text-light);
    font-size: 10px;
}

.weselny-safe-payment i {
    margin-right: 4px;
}

.weselny-price-features {
    padding-left: 48px;
}

.weselny-price-features h3 {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.weselny-price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.weselny-price-features li {
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.weselny-price-features li i {
    margin-top: 3px;
    color: var(--gold);
}


/* FAQ */

.weselny-faq-section {
    background: #fff;
}

.weselny-faq {
    width: min(920px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 11px;
}

.weselny-faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.weselny-faq-question {
    width: 100%;
    min-height: 68px;
    padding: 19px 23px;
    background: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
}

.weselny-faq-question i {
    color: var(--gold);
    transition: 0.25s;
}

.weselny-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows .4s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.weselny-faq-answer > div {
    min-height: 0;
    overflow: hidden;
    padding: 0 23px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.weselny-faq-answer > div::after { content: ''; display: block; height: 23px; }
.weselny-faq-item.active .weselny-faq-answer { grid-template-rows: 1fr; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    .weselny-faq-answer, .weselny-faq-question i { transition: none; }
}

.weselny-faq-item.active .weselny-faq-question i {
    transform: rotate(45deg);
}


/* FINAL CTA */

.weselny-final {
    position: relative;
    padding: 105px 0;
    color: #fff;
    overflow: hidden;
    background: var(--green-dark);
}

.weselny-final-background {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background:
        linear-gradient(
            90deg,
            var(--green-dark) 0%,
            rgba(9, 46, 41, 0.68) 50%,
            rgba(9, 46, 41, 0.2)
        ),
        var(--weselny-couple-photo)
        right 30% center / cover no-repeat;
}

.weselny-final-content {
    width: min(670px, 100%);
    position: relative;
    z-index: 2;
}

.weselny-final-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 11px;
}

.weselny-final h2 {
    color: #fff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
    margin: 18px 0 22px;
}

.weselny-final h2 span {
    display: block;
    color: var(--gold-light);
}

.weselny-final p {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    font-size: 16px;
}

.weselny-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}


/* FOOTER */

.weselny-footer {
    padding: 32px 0;
    background: #fff;
}

.weselny-footer-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.weselny-footer p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

.weselny-footer-links {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.weselny-footer-links a {
    font-size: 11px;
    color: var(--text-light);
}

.weselny-footer-links a:hover {
    color: var(--green);
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .weselny-nav {
        gap: 18px;
    }

    .weselny-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .weselny-browser {
        width: 420px;
        right: -70px;
    }

    .weselny-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .weselny-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .weselny-trust-item {
        border: 0;
    }
}


@media (max-width: 850px) {

    .weselny-header {
        height: 70px;
    }

    .weselny-header-inner > .weselny-btn {
        display: none;
    }

    .weselny-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .weselny-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 25px 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
    }

    .weselny-nav.active {
        display: flex;
    }

    .weselny-nav a {
        padding: 8px 0;
    }

    .weselny-hero {
        min-height: auto;
    }

    .weselny-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .weselny-hero-content {
        padding: 70px 0 10px;
        text-align: center;
    }

    .weselny-eyebrow {
        justify-content: center;
    }

    .weselny-hero-description {
        margin-inline: auto;
    }

    .weselny-hero-actions,
    .weselny-payment-info {
        justify-content: center;
    }

    .weselny-hero-visual {
        width: min(600px, 100%);
        margin: auto;
        height: 520px;
    }

    .weselny-browser {
        right: 0;
        width: 80%;
    }

    .weselny-phone {
        left: 0;
    }

    .weselny-trust {
        margin-top: 0;
    }

    .weselny-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .weselny-steps {
        grid-template-columns: 1fr;
    }

    .weselny-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .weselny-why-photo {
        min-height: 500px;
    }

    .weselny-testimonials {
        grid-template-columns: 1fr;
    }

    .weselny-price-card {
        grid-template-columns: 1fr;
        padding: 42px 30px;
    }

    .weselny-price-left {
        padding: 0 0 35px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .weselny-price-features {
        padding: 35px 0 0;
    }

    .weselny-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .weselny-footer-links {
        margin-left: 0;
    }
}


@media (max-width: 600px) {

    .weselny-container {
        width: min(100% - 28px, 1180px);
    }

    .weselny-logo {
        font-size: 19px;
    }

    .weselny-hero-content {
        padding-top: 55px;
    }

    .weselny-hero h1 {
        font-size: 43px;
    }

    .weselny-hero-description {
        font-size: 15px;
    }

    .weselny-hero-actions {
        flex-direction: column;
    }

    .weselny-hero-actions .weselny-btn {
        width: 100%;
    }

    .weselny-payment-info {
        gap: 9px 15px;
    }

    .weselny-hero-visual {
        height: 410px;
        margin-top: 15px;
    }

    .weselny-browser {
        width: 86%;
        height: 265px;
        top: 55px;
        right: -35px;
    }

    .weselny-browser-content {
        padding: 12px;
    }

    .weselny-gallery {
        grid-template-rows: 62px 62px;
    }

    .weselny-phone {
        width: 140px;
        height: 295px;
        top: 100px;
        left: 3px;
    }

    .weselny-phone-screen {
        padding: 10px 0 0;
    }

    .weselny-phone-apps div {
        min-height: 50px;
    }

    .weselny-phone-apps i {
        font-size: 12px;
    }

    .weselny-phone-apps span {
        font-size: 6px;
    }

    .weselny-qr-card {
        display: none;
    }

    .weselny-trust-grid {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
    }

    .weselny-trust-item {
        padding: 12px 8px;
    }

    .weselny-trust-item > i {
        font-size: 19px;
    }

    .weselny-trust-item strong {
        font-size: 11px;
    }

    .weselny-trust-item span {
        font-size: 9px;
    }

    .weselny-section {
        padding: 75px 0;
    }

    .weselny-section-heading {
        margin-bottom: 38px;
    }

    .weselny-section-heading h2 {
        font-size: 38px;
    }

    .weselny-features-grid {
        grid-template-columns: 1fr;
    }

    .weselny-feature-card {
        min-height: unset;
    }

    .weselny-why-photo {
        min-height: 390px;
    }

    .weselny-why-content h2 {
        font-size: 39px;
    }

    .weselny-price-card {
        padding: 42px 22px 28px;
    }

    .weselny-price {
        font-size: 59px;
    }

    .weselny-price-features ul {
        grid-template-columns: 1fr;
    }

    .weselny-final {
        padding: 80px 0;
        text-align: center;
    }

    .weselny-final h2 {
        font-size: 42px;
    }

    .weselny-final-actions {
        flex-direction: column;
    }

    .weselny-final-actions .weselny-btn {
        width: 100%;
    }

    .weselny-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Keep the landing page typography independent of the legacy theme. */
.weselny-page :where(a, li, p, span, div) { font-family: inherit; }
.weselny-page h1, .weselny-page h2, .weselny-page h3 { font-family: "Playfair Display", serif; }
.weselny-page .weselny-hero h1 { margin-top: 22px !important; }
.weselny-page .weselny-faq-answer { max-height: none; }
.weselny-page .weselny-faq-answer[hidden] { display: none; }
.weselny-page a:focus-visible, .weselny-page button:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.weselny-page section[id] { scroll-margin-top: 24px; }
.weselny-page .woocommerce-Price-amount { color: inherit; }
.weselny-price .woocommerce-Price-currencySymbol { font-size: 24px; }
@media (prefers-reduced-motion: reduce) {
  .weselny-page *, .weselny-page *::before, .weselny-page *::after { transition: none !important; }
}

/* Keep the whole device composition within small screens. */
@media (max-width:600px) {
 .weselny-page .weselny-hero-content { padding-top:36px; padding-bottom:0; }
 .weselny-page .weselny-hero h1 { font-size:clamp(34px,9.5vw,43px); }
 .weselny-page .weselny-hero-visual { width:100%; max-width:480px; height:auto; aspect-ratio:1.08; margin:20px auto 0; }
 .weselny-page .weselny-hero-photo { inset:3% 0 2% 12%; border-radius:90px 18px 18px 18px; }
 .weselny-page .weselny-browser { width:83%; height:auto; aspect-ratio:1.43; top:8%; right:2%; border-width:6px; border-bottom-width:11px; border-radius:12px; box-shadow:0 18px 32px #10252026; }
 .weselny-page .weselny-browser-bar { height:16px; padding:5px 8px; gap:3px; }
 .weselny-page .weselny-browser-bar span { width:4px; height:4px; }
 .weselny-page .weselny-browser-screen { height:calc(100% - 16px); }
 .weselny-page .weselny-phone { width:36%; height:auto; aspect-ratio:.49; top:22%; left:2%; border-width:4px; padding:5px; border-radius:23px; box-shadow:0 18px 32px #12282326; }
 .weselny-page .weselny-phone-screen { height:100%; padding-top:9px; border-radius:15px; }
 .weselny-page .weselny-phone::after { width:38%; height:4px; top:6px; }
 .weselny-page .weselny-payment-info { flex-wrap:wrap; gap:7px 12px; font-size:11px; }
 .weselny-page .weselny-trust-grid { margin-top:18px; padding:12px; gap:0; border:1px solid #e4e9e1; border-radius:18px; box-shadow:0 12px 30px #123f3708; }
 .weselny-page .weselny-trust-item { min-width:0; padding:14px 10px; gap:10px; align-items:center; border:0; }
 .weselny-page .weselny-trust-item > i { flex:0 0 20px; text-align:center; }
 .weselny-page .weselny-trust-item strong { font-size:12px; line-height:1.4; }
 .weselny-page .weselny-trust-item span { font-size:10px; line-height:1.5; margin-top:3px; }
 .weselny-page .weselny-trust-item:last-child { grid-column:1/-1; justify-content:center; border-top:1px solid #e4e9e1; margin-top:6px; padding-top:16px; }
}
