body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f7f5f2;
    text-align: center;
    color: #111;
}

/* HEADER */
header {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ff7a00;
}

.site-header {
    padding: 16px 20px;
}

.header-inner {
    width: min(1180px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-note {
    color: #555;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* HERO */
.hero {
    margin-top: 70px;
    padding: 0 20px 80px;
}

.home-page {
    min-height: calc(100vh - 68px);
}

.home-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 64px 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
    grid-template-areas:
        "copy visual"
        "upload visual";
    gap: 26px 42px;
    align-items: center;
}

.hero-copy-block {
    grid-area: copy;
    text-align: left;
}

.home-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.upload-panel {
    grid-area: upload;
    width: min(100%, 500px);
    text-align: left;
}

.upload-panel button {
    width: 100%;
}

.result-hero {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: inline-block;
    background: #fff1e5;
    color: #ff7a00;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 18px;
}

h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 700;
    margin: 0 0 18px;
    line-height: 1.05;
    max-width: 820px;
}

.subtext {
    font-family: 'Inter', sans-serif;
    color: #5d5d5d;
    margin: 0 0 26px;
    font-size: 20px;
    max-width: 640px;
    line-height: 1.55;
}

/* HERO IMAGE */
.hero-image {
    width: 100%;
    max-width: 470px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0;
    box-shadow: 0 24px 60px rgba(25,18,12,0.12);
}

/* UPLOAD BOX */
.upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 30px;
    border: 2px dashed #d8d8d8;
    cursor: pointer;
    margin-bottom: 16px;
    background: #ffffff;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: 0.2s ease;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 16px 36px rgba(25,18,12,0.07);
}

.upload-box:hover {
    border-color: #ff7a00;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(25,18,12,0.09);
}

.upload-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff1e5;
    color: #ff7a00;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.upload-main {
    font-size: 19px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.upload-sub {
    font-size: 14px;
    color: #888;
}

/* PREVIEW BOX */
.upload-preview {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 0 0 16px;
    padding: 14px;
    width: 100%;
    box-sizing: border-box;
    background: white;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.upload-preview:hover {
    border-color: #ff7a00;
    transform: translateY(-1px);
}

.upload-preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
}

.preview-text {
    text-align: left;
    font-family: 'Inter', sans-serif;
    max-width: 260px;
}

.preview-text span {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
    word-break: break-word;
}

.preview-text small {
    color: #888;
    font-size: 13px;
}

/* PET NAME INPUT */
.pet-name-wrap {
    margin-bottom: 16px;
}

.pet-name-input {
    width: 100%;
    max-width: none;
    padding: 15px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.pet-name-input:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 4px rgba(255,122,0,0.08);
}

/* HIDDEN */
.hidden {
    display: none !important;
}

/* BUTTON */
button,
.secondary-btn,
.product-btn {
    display: inline-block;
    margin: auto;
    padding: 18px 38px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: #ff7a00;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s ease;
    box-shadow: 0 10px 22px rgba(255,122,0,0.25);
    text-decoration: none;
}

button:hover,
.secondary-btn:hover,
.product-btn:hover {
    background: #e96d00;
    transform: scale(1.03);
}

/* TRUST TEXT */
.trust-text {
    margin: 12px 0 0;
    font-size: 14px;
    color: #888;
    text-align: center;
}

/* RESULT PAGE */
.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
    align-items: start;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    margin-bottom: 18px;
}

.result-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    display: inline-block;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.result-image {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
}

.result-actions {
    margin-top: 40px;
}

/* PRODUCT SECTION */
.product-section {
    max-width: 1100px;
    margin: 70px auto 30px;
}

.product-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: 42px;
    margin-bottom: 12px;
}

.product-sub {
    color: #666;
    font-size: 18px;
    margin-bottom: 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.product-card {
    background: white;
    border-radius: 28px;
    padding: 34px 28px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.product-card.featured {
    border-color: #ff7a00;
    box-shadow: 0 22px 48px rgba(255,122,0,0.14);
}

.product-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    margin: 12px 0 10px;
}

.product-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.product-card ul {
    margin: 20px 0 26px;
    padding-left: 18px;
    color: #333;
    line-height: 1.9;
}

.product-badge {
    display: inline-block;
    background: #fff1e5;
    color: #ff7a00;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0 22px;
}

.size-btn {
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #111;
    box-shadow: none;
}

.size-btn.active {
    background: #111;
    color: white;
}

.product-btn {
    width: 100%;
}

/* TRUST STRIP */
.trust-strip {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 18px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
    color: #444;
    font-weight: 600;
}

.home-trust {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    color: #444;
    font-size: 14px;
}

.home-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-trust span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff7a00;
}

/* MOBILE */
@media (max-width: 768px) {
    .header-inner {
        width: 100%;
    }

    .header-note {
        display: none;
    }

    .home-hero {
        width: min(100% - 32px, 560px);
        padding: 38px 0 56px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .hero-copy-block {
        text-align: center;
    }

    .home-visual {
        order: 2;
    }

    .upload-panel {
        order: 3;
        width: 100%;
    }

    .home-trust {
        justify-content: center;
        gap: 10px 14px;
    }

    .hero {
        margin-top: 50px;
        padding: 0 18px 60px;
    }

    h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .product-heading {
        font-size: 34px;
    }

    .subtext {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 0;
    }

    .upload-box {
        min-width: auto;
        width: 100%;
        max-width: none;
        padding: 28px 20px;
    }

    .upload-main {
        font-size: 18px;
    }

    .upload-preview {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        padding: 16px 18px;
    }

    .preview-text {
        max-width: 220px;
    }

    .pet-name-input {
        max-width: none;
    }

    button,
    .secondary-btn,
    .product-btn {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .result-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .result-image {
        max-width: 100%;
    }

    .trust-strip {
        flex-direction: column;
        gap: 10px;
    }

    .product-card {
        text-align: left;
    }
}

header {
    padding: 18px 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ff7a00;
    text-align: center;
}

.secondary-btn:hover,
button:hover {
    transform: translateY(-1px);
}

/* ORANGE HOME REDESIGN */
body {
    background: #ffffff;
}

.site-header {
    background:
        radial-gradient(circle at 18px 18px, rgba(255,255,255,0.14) 0 1px, transparent 2px),
        #f97316;
    background-size: 34px 34px, auto;
    border-bottom: none;
    backdrop-filter: none;
}

.site-header .logo {
    color: #ffffff;
}

.home-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 800;
}

.home-nav a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
}

.home-nav a:hover {
    color: #ffffff;
}

.site-header .header-note {
    background: #ffffff;
    color: #f97316;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 10px 22px rgba(84, 35, 0, 0.12);
}

.home-page {
    background: #ffffff;
    overflow: hidden;
}

.home-hero {
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 56px max(28px, calc((100vw - 1180px) / 2)) 118px;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
    grid-template-areas:
        "copy visual"
        "upload visual";
    gap: 24px 56px;
    align-items: center;
    background:
        radial-gradient(circle at 30px 30px, rgba(255,255,255,0.18) 0 1px, transparent 2px),
        radial-gradient(circle at 75% 18%, rgba(255,255,255,0.22), transparent 24%),
        #f97316;
    background-size: 38px 38px, auto, auto;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -1px;
    height: 118px;
    background: #ffffff;
    clip-path: ellipse(62% 58% at 50% 100%);
    z-index: 0;
}

.home-hero > * {
    position: relative;
    z-index: 1;
}

.hero-copy-block {
    text-align: left;
}

.hero-copy-block .eyebrow {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
}

.home-hero h1 {
    color: #171717;
    font-size: clamp(50px, 6vw, 86px);
    line-height: 0.98;
    max-width: 760px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.16);
}

.home-hero .subtext {
    color: rgba(34, 23, 16, 0.78);
    font-size: 20px;
    max-width: 570px;
}

.home-trust {
    color: #171717;
    font-weight: 800;
}

.home-trust span::before {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.hero-image-shell {
    position: relative;
    width: min(100%, 390px);
    margin-left: auto;
}

.hero-image-shell::before {
    content: "";
    position: absolute;
    inset: 28px -18px -18px 28px;
    background: #191919;
    border-radius: 8px;
    opacity: 0.12;
    transform: rotate(3deg);
}

.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 26px 52px rgba(72, 30, 0, 0.24);
    transform: rotate(-1.5deg);
}

.before-after-hero {
    position: relative;
    width: min(100%, 500px);
    min-height: 500px;
    margin-left: auto;
}

.before-after-card {
    position: absolute;
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 24px 48px rgba(72, 30, 0, 0.22);
    text-align: left;
}

.before-after-card p {
    margin: 10px 2px 0;
    color: #333;
    font-size: 14px;
    font-weight: 800;
}

.before-card {
    width: 135px;
    left: 0;
    top: 168px;
    transform: rotate(-8deg);
    z-index: 3;
}

.after-card {
    width: 345px;
    right: 0;
    top: 18px;
    transform: rotate(2deg);
    z-index: 2;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.before-after-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    background: #f4f4f4;
}

.after-card .before-after-image {
    object-fit: contain;
    background: #fffdfa;
}

.after-card p {
    display: none;
}

.after-card .image-label {
    left: 22px;
    top: 22px;
    z-index: 4;
}

.print-preview-frame {
    position: relative;
    background: #f4ece0;
    border: 16px solid #f8f3eb;
    border-radius: 6px;
    padding: 12px;
    box-shadow:
        inset 0 0 0 1px rgba(104, 74, 44, 0.14),
        14px 16px 0 rgba(122, 76, 32, 0.22),
        0 26px 42px rgba(0,0,0,0.20);
}

.print-preview-frame::before {
    content: "";
    position: absolute;
    top: 16px;
    right: -18px;
    width: 18px;
    height: calc(100% - 2px);
    background: linear-gradient(90deg, #c5a47a, #9f7c50);
    transform: skewY(31deg);
    transform-origin: left top;
    border-radius: 0 3px 3px 0;
    z-index: -1;
}

.print-preview-frame::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: -18px;
    width: calc(100% - 4px);
    height: 18px;
    background: linear-gradient(180deg, #c5a47a, #9f7c50);
    transform: skewX(31deg);
    transform-origin: left top;
    border-radius: 0 0 3px 3px;
    z-index: -1;
}

.print-preview-frame .before-after-image {
    border-radius: 2px;
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.05),
        0 0 0 1px rgba(255,255,255,0.85);
}

.image-label {
    position: absolute;
    left: 22px;
    top: 22px;
    background: #171717;
    color: #ffffff;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.transform-arrow {
    position: absolute;
    left: 126px;
    top: 264px;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #171717;
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(0,0,0,0.18);
}

.before-card .image-label {
    left: auto;
    right: 22px;
}

.upload-panel {
    background: #ffffff;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 24px 48px rgba(72, 30, 0, 0.18);
    width: min(100%, 470px);
}

.upload-panel-kicker {
    color: #f97316;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.upload-panel h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    line-height: 1.05;
    margin: 0 0 16px;
}

.upload-box {
    box-shadow: none;
    background: #fffaf5;
    border-color: #f2c9a3;
}

.upload-icon {
    background: #f97316;
    color: #ffffff;
}

.pet-name-input {
    background: #ffffff;
}

.upload-panel button {
    background: #171717;
    box-shadow: 0 14px 26px rgba(0,0,0,0.18);
}

.upload-panel button:hover {
    background: #2a2a2a;
}

.home-info {
    max-width: 1120px;
    margin: 0 auto;
    padding: 62px 24px 76px;
    text-align: center;
}

.home-info-heading h2,
.example-copy h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 12px;
}

.home-info-heading p,
.example-copy p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

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

.home-info-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 28px;
    text-align: left;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #f97316;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 24px;
}

.home-info-card h3 {
    font-size: 21px;
    margin: 0 0 10px;
}

.home-info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.home-example-band {
    max-width: 1120px;
    margin: 0 auto 92px;
    padding: 24px;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 50px;
    align-items: center;
}

.example-shape {
    background:
        radial-gradient(circle at 18px 18px, rgba(255,255,255,0.2) 0 1px, transparent 2px),
        #f97316;
    background-size: 34px 34px, auto;
    border-radius: 36% 64% 52% 48% / 48% 38% 62% 52%;
    padding: 42px;
}

.example-shape img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transform: rotate(2deg);
    box-shadow: 0 22px 44px rgba(72, 30, 0, 0.18);
}

.example-copy {
    text-align: left;
}

.example-copy .eyebrow {
    border-radius: 8px;
}

.secondary-before-after {
    position: relative;
    min-height: 430px;
}

.mini-before-after-card {
    position: absolute;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 22px 44px rgba(72, 30, 0, 0.16);
}

.mini-before-after-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
}

.mini-before {
    width: 150px;
    left: 20px;
    top: 150px;
    z-index: 2;
    transform: rotate(-7deg);
}

.mini-after {
    width: 300px;
    right: 12px;
    top: 20px;
    z-index: 1;
    transform: rotate(3deg);
}

.mini-transform-arrow {
    position: absolute;
    left: 158px;
    top: 250px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #171717;
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(0,0,0,0.16);
}

.customer-preview-strip {
    max-width: 1120px;
    margin: -32px auto 86px;
    padding: 0 24px;
    text-align: center;
}

.customer-preview-copy h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 38px;
    line-height: 1.05;
    margin: 0 0 8px;
}

.customer-preview-copy p {
    color: #666;
    font-size: 16px;
    margin: 0 auto 26px;
}

.customer-preview-window {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 8px 0 16px;
}

.customer-preview-window::before,
.customer-preview-window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}

.customer-preview-window::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0));
}

.customer-preview-window::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255,255,255,0));
}

.customer-preview-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: previewCarousel 32s linear infinite;
}

.customer-preview-card {
    width: 150px;
    flex: 0 0 auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 18px 34px rgba(25,18,12,0.10);
}

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

@media (max-width: 900px) {
    .home-nav {
        display: none;
    }

    .home-hero {
        padding: 30px 22px 88px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .hero-copy-block {
        text-align: center;
        display: contents;
    }

    .home-hero h1 {
        font-size: 46px;
        margin-left: auto;
        margin-right: auto;
        order: 1;
    }

    .home-hero .subtext {
        margin-left: auto;
        margin-right: auto;
        order: 3;
    }

    .home-trust {
        justify-content: center;
        order: 4;
    }

    .hero-image-shell {
        margin: 0 auto;
        width: min(100%, 360px);
    }

    .home-visual {
        order: 2;
    }

    .before-after-hero {
        width: min(100%, 390px);
        min-height: 390px;
        margin: 0 auto;
    }

    .before-card {
        width: 112px;
        top: 148px;
    }

    .after-card {
        width: 270px;
    }

    .transform-arrow {
        left: 102px;
        top: 232px;
        width: 46px;
        height: 46px;
    }

    .upload-panel {
        width: min(100%, 500px);
        margin: 0 auto;
        box-sizing: border-box;
        order: 5;
    }

    .home-info-grid,
    .home-example-band {
        grid-template-columns: 1fr;
    }

    .home-example-band {
        margin-bottom: 56px;
        gap: 26px;
    }

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

    .secondary-before-after {
        width: min(100%, 430px);
        min-height: 390px;
        margin: 0 auto;
    }

    .mini-before {
        width: 124px;
        left: 0;
        top: 142px;
    }

    .mini-after {
        width: 270px;
        right: 0;
    }

    .mini-transform-arrow {
        left: 112px;
        top: 228px;
    }

    .customer-preview-strip {
        margin-top: -18px;
    }

    .customer-preview-window {
        max-width: 100%;
    }

    .customer-preview-card {
        width: 130px;
    }
}

@media (max-width: 560px) {
    .site-header .header-note {
        display: none;
    }

    .home-hero h1 {
        font-size: 39px;
    }

    .home-hero .subtext {
        font-size: 17px;
    }

    .home-info-heading h2,
    .example-copy h2 {
        font-size: 34px;
    }

    .example-shape {
        padding: 26px;
    }

    .customer-preview-copy h2 {
        font-size: 32px;
    }
}

/* FOOTER AND POLICY PAGES */
.logo {
    text-decoration: none;
}

.home-final-cta {
    max-width: 880px;
    margin: 0 auto 84px;
    padding: 0 24px;
    text-align: center;
}

.home-final-cta h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 12px;
}

.home-final-cta p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 auto 24px;
    max-width: 580px;
}

.cta-button {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 8px;
    background: #f97316;
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(249, 115, 22, 0.24);
}

.cta-button:hover {
    background: #e9660f;
    transform: translateY(-1px);
}

.site-footer {
    background: #171717;
    color: #ffffff;
    padding: 42px 24px 22px;
    text-align: left;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.8fr;
    gap: 34px;
}

.footer-logo {
    font-family: 'Fredoka', sans-serif;
    color: #ff7a00;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-brand p,
.footer-shipping p,
.footer-bottom {
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

.footer-shipping h3 {
    font-size: 16px;
    margin: 4px 0 10px;
}

.footer-shipping p {
    margin: 0 0 8px;
}

.footer-shipping strong {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-links a {
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1120px;
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.policy-header {
    background: #f97316;
}

.policy-page {
    background: #f7f5f2;
    padding: 64px 24px;
}

.policy-card {
    max-width: 840px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    padding: 42px;
    box-shadow: 0 20px 42px rgba(25,18,12,0.08);
    text-align: left;
}

.policy-back {
    color: #f97316;
    font-weight: 800;
    text-decoration: none;
}

.policy-card h1 {
    font-size: 48px;
    margin: 18px 0 14px;
    max-width: none;
}

.policy-intro {
    color: #555;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 30px;
}

.policy-card section {
    border-top: 1px solid #eeeeee;
    padding-top: 22px;
    margin-top: 22px;
}

.policy-card h2 {
    font-size: 22px;
    margin: 0 0 8px;
}

.policy-card p {
    color: #555;
    line-height: 1.7;
}

.policy-note {
    margin-top: 28px;
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .home-final-cta h2 {
        font-size: 34px;
    }

    .policy-page {
        padding: 34px 18px;
    }

    .policy-card {
        padding: 28px 22px;
    }

    .policy-card h1 {
        font-size: 38px;
    }
}
