/* 
   Dan's Labrador Companions - Homepage CSS
   Prefix: dlc-
*/

:root {
    --dlc-black: #0c0d0f;
    --dlc-black-soft: #151619;
    --dlc-cream: #fff8ea;
    --dlc-cream-2: #f7ecd7;
    --dlc-white: #ffffff;
    --dlc-gold: #d99a2b;
    --dlc-gold-dark: #b67917;
    --dlc-gold-light: #f2c56b;
    --dlc-green: #22301f;
    --dlc-green-2: #31452d;
    --dlc-text: #202124;
    --dlc-muted: #6b665f;
    --dlc-border: rgba(217, 154, 43, 0.22);
    --dlc-shadow: 0 24px 70px rgba(28, 22, 12, 0.14);
    --dlc-radius-xl: 34px;
    --dlc-radius-lg: 24px;
    --dlc-radius-md: 16px;
    --dlc-transition: 260ms ease;
    --dlc-font-main: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --dlc-font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    font-family: var(--dlc-font-main);
    color: var(--dlc-text);
    background: var(--dlc-cream);
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.dlc-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.dlc-skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    padding: 10px 16px;
    background: var(--dlc-gold);
    color: var(--dlc-black);
    z-index: 9999;
    border-radius: 999px;
}

.dlc-skip-link:focus {
    top: 16px;
}

.dlc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--dlc-transition), box-shadow var(--dlc-transition), background var(--dlc-transition), color var(--dlc-transition);
    white-space: nowrap;
}

.dlc-btn:hover {
    transform: translateY(-3px);
}

.dlc-btn--gold {
    background: linear-gradient(135deg, var(--dlc-gold), var(--dlc-gold-light));
    color: #1d1609;
    box-shadow: 0 14px 30px rgba(217, 154, 43, 0.28);
}

.dlc-btn--gold:hover {
    box-shadow: 0 18px 42px rgba(217, 154, 43, 0.36);
}

.dlc-btn--dark {
    background: var(--dlc-green);
    color: var(--dlc-white);
}

.dlc-btn--outline {
    background: rgba(255, 255, 255, 0.65);
    color: var(--dlc-green);
    border-color: var(--dlc-border);
}

.dlc-pill,
.dlc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--dlc-gold-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.77rem;
}

.dlc-pill {
    text-transform: none;
    letter-spacing: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(217, 154, 43, 0.13);
    color: #8a5c15;
}

.dlc-section {
    padding: 96px 0;
    position: relative;
}

.dlc-section__heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.dlc-section__heading h2,
.dlc-section__content h2,
.dlc-faq h2,
.dlc-contact-card h2,
.dlc-final-cta h2 {
    font-size: clamp(2rem, 3.6vw, 3.65rem);
    line-height: 1.04;
    margin: 10px 0 16px;
    letter-spacing: -0.045em;
    color: var(--dlc-black);
}

.dlc-section__heading p,
.dlc-section__content p,
.dlc-faq p,
.dlc-contact-card p,
.dlc-final-cta p {
    color: var(--dlc-muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

.dlc-section__heading--light h2,
.dlc-section__heading--light p {
    color: var(--dlc-white);
}

.dlc-section__heading--light .dlc-eyebrow {
    color: var(--dlc-gold-light);
}

/* Top Bar */
.dlc-topbar {
    background: #08090b;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.dlc-topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dlc-topbar__left {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.dlc-topbar a:hover {
    color: var(--dlc-gold-light);
}

/* Header */
.dlc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 13, 15, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow var(--dlc-transition), background var(--dlc-transition);
}

.dlc-header.is-scrolled {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    background: rgba(12, 13, 15, 0.98);
}

.dlc-header__inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dlc-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 155px;
}

.dlc-logo img {
    width: 142px;
    height: 150px;
    object-fit: contain;
}

.dlc-logo__fallback {
    display: none;
    width: 112px;
    min-height: 58px;
    place-items: center;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #1c251b, #111);
    color: var(--dlc-gold-light);
    border: 1px solid rgba(217, 154, 43, 0.35);
    padding: 8px;
    line-height: 1.05;
}

.dlc-logo__fallback small {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.78);
}

.dlc-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 800;
}

.dlc-nav a {
    position: relative;
    padding: 8px 0;
}

.dlc-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--dlc-gold);
    transition: width var(--dlc-transition);
}

.dlc-nav a:hover,
.dlc-nav a.is-active {
    color: var(--dlc-gold-light);
}

.dlc-nav a:hover::after,
.dlc-nav a.is-active::after {
    width: 100%;
}

.dlc-nav-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: none;
    place-items: center;
    cursor: pointer;
}

.dlc-nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 3px 0;
    border-radius: 99px;
    transition: transform var(--dlc-transition), opacity var(--dlc-transition);
}

/* Hero */
.dlc-hero {
    min-height: 760px;
    padding: 80px 0 72px;
    position: relative;
    background:
        radial-gradient(circle at 15% 16%, rgba(217, 154, 43, 0.18), transparent 28%),
        radial-gradient(circle at 88% 5%, rgba(52, 87, 44, 0.15), transparent 34%),
        linear-gradient(135deg, #fffaf0 0%, #f7ecd7 50%, #fff8ea 100%);
    overflow: hidden;
}

.dlc-hero::after {
    content: "🐾";
    position: absolute;
    right: 8%;
    top: 18%;
    font-size: 140px;
    opacity: 0.05;
    transform: rotate(-18deg);
}

.dlc-hero__shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.75;
    pointer-events: none;
}

.dlc-hero__shape--one {
    width: 360px;
    height: 360px;
    left: -150px;
    top: 130px;
    background: rgba(217, 154, 43, 0.11);
    animation: dlc-float 7s ease-in-out infinite;
}

.dlc-hero__shape--two {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: 110px;
    background: rgba(34, 48, 31, 0.12);
    animation: dlc-float 9s ease-in-out infinite reverse;
}

.dlc-hero__grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 54px;
    position: relative;
    z-index: 2;
}

.dlc-hero__content h1 {
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    letter-spacing: -0.07em;
    line-height: 0.93;
    margin: 22px 0 8px;
    color: var(--dlc-black);
}

.dlc-hero__content h1 span {
    display: block;
}

.dlc-hero__content h2 {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    margin: 0 0 16px;
    color: var(--dlc-gold-dark);
    letter-spacing: -0.035em;
}

.dlc-hero__content p {
    max-width: 610px;
    line-height: 1.75;
    font-size: 1.08rem;
    color: #4f4a43;
}

.dlc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 30px;
}

.dlc-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dlc-trust-row div {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 10px;
    align-items: center;
    padding: 13px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(217, 154, 43, 0.22);
    box-shadow: 0 12px 28px rgba(28, 22, 12, 0.08);
}

.dlc-trust-row span {
    grid-row: 1 / 3;
    font-size: 1.8rem;
}

.dlc-trust-row strong {
    font-size: 1.08rem;
    color: var(--dlc-black);
}

.dlc-trust-row small {
    color: var(--dlc-muted);
    font-weight: 700;
}

.dlc-hero__visual {
    position: relative;
}

.dlc-hero__image-wrap {
    position: relative;
    min-height: 590px;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(28, 22, 12, 0.26);
    transform: rotate(1.2deg);
    isolation: isolate;
}

.dlc-hero__image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.14));
    z-index: 1;
}

.dlc-hero__image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    transform: scale(1.02);
}

.dlc-floating-card {
    position: absolute;
    z-index: 3;
    max-width: 230px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 248, 234, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    animation: dlc-float 5s ease-in-out infinite;
}

.dlc-floating-card strong,
.dlc-floating-card small {
    display: block;
}

.dlc-floating-card small {
    color: var(--dlc-muted);
    margin-top: 2px;
    font-weight: 700;
}

.dlc-floating-card--top {
    top: 26px;
    left: 26px;
}

.dlc-floating-card--bottom {
    right: 26px;
    bottom: 26px;
    animation-delay: 1.1s;
}

/* Stats */
.dlc-stats {
    background: linear-gradient(135deg, var(--dlc-green), #11160f);
    color: var(--dlc-white);
    padding: 30px 0;
    position: relative;
    z-index: 3;
}

.dlc-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dlc-stat {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 14px;
    align-items: center;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.dlc-stat:last-child {
    border-right: 0;
}

.dlc-stat span {
    grid-row: 1 / 3;
    color: var(--dlc-gold-light);
    font-size: 2rem;
}

.dlc-stat strong {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1;
}

.dlc-stat small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

/* About */
.dlc-about {
    background: var(--dlc-cream);
}

.dlc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.dlc-about__image {
    position: relative;
}

.dlc-about__image img {
    width: 100%;
    aspect-ratio: 1.15 / 0.78;
    object-fit: cover;
    border-radius: var(--dlc-radius-xl);
    box-shadow: var(--dlc-shadow);
}

.dlc-seal {
    position: absolute;
    left: -18px;
    bottom: -20px;
    width: 145px;
    height: 145px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 999px;
    color: #5a390b;
    background: linear-gradient(135deg, var(--dlc-gold-light), #fff3cc);
    border: 8px solid var(--dlc-cream);
    box-shadow: 0 20px 40px rgba(28, 22, 12, 0.18);
    padding: 16px;
    animation: dlc-slow-spin 18s linear infinite;
}

.dlc-seal span {
    font-size: 2rem;
}

.dlc-seal strong,
.dlc-seal small {
    display: block;
    font-size: 0.74rem;
    line-height: 1.1;
}

.dlc-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: grid;
    gap: 12px;
}

.dlc-check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--dlc-text);
    font-weight: 800;
}

.dlc-check-list li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    position: absolute;
    left: 0;
    top: 1px;
    border-radius: 999px;
    background: var(--dlc-green);
    color: #fff;
    font-size: 0.78rem;
}

/* Cards */
.dlc-card-grid {
    display: grid;
    gap: 24px;
}

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

.dlc-dog-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--dlc-border);
    border-radius: var(--dlc-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(28, 22, 12, 0.08);
    transition: transform var(--dlc-transition), box-shadow var(--dlc-transition);
}

.dlc-dog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(28, 22, 12, 0.15);
}

.dlc-dog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.dlc-dog-card__body {
    padding: 24px;
    text-align: center;
}

.dlc-dog-card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.dlc-dog-card p {
    margin: 0 0 14px;
    color: var(--dlc-muted);
    line-height: 1.65;
}

.dlc-dog-card a {
    color: var(--dlc-gold-dark);
    font-weight: 900;
}

/* Benefits */
.dlc-benefits,
.dlc-champions {
    background:
        radial-gradient(circle at 0 0, rgba(217, 154, 43, 0.13), transparent 36%),
        linear-gradient(135deg, #22301f, #10140f);
    color: var(--dlc-white);
}

.dlc-benefits__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.dlc-benefit-card {
    min-height: 190px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(255, 248, 234, 0.16);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    transition: transform var(--dlc-transition), background var(--dlc-transition), border-color var(--dlc-transition);
}

.dlc-benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(217, 154, 43, 0.45);
}

.dlc-benefit-card span {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 13px;
}

.dlc-benefit-card h3 {
    margin: 0 0 8px;
    font-size: 1.03rem;
}

.dlc-benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    font-size: 0.92rem;
}

/* Process */
.dlc-process {
    background:
        linear-gradient(180deg, #fff8ea, #f7ecd7);
    overflow: hidden;
}

.dlc-process::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 46%;
    border-top: 2px dashed rgba(217, 154, 43, 0.24);
}

.dlc-process__line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    z-index: 1;
}

.dlc-process-step {
    padding: 30px 18px;
    border-radius: var(--dlc-radius-lg);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--dlc-border);
    text-align: center;
    box-shadow: 0 14px 38px rgba(28, 22, 12, 0.07);
}

.dlc-process-step span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: var(--dlc-green);
    color: var(--dlc-white);
    font-weight: 900;
    border: 5px solid var(--dlc-cream-2);
}

.dlc-process-step strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.dlc-process-step p {
    margin: 0;
    color: var(--dlc-muted);
    line-height: 1.55;
    font-size: 0.94rem;
}

/* Champions */
.dlc-champions {
    padding-top: 92px;
}

.dlc-champions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dlc-champion-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 248, 234, 0.16);
    border-radius: var(--dlc-radius-lg);
    overflow: hidden;
    transition: transform var(--dlc-transition), border-color var(--dlc-transition);
}

.dlc-champion-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 154, 43, 0.52);
}

.dlc-champion-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.dlc-champion-card div {
    padding: 20px;
}

.dlc-champion-card h3 {
    color: var(--dlc-gold-light);
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.dlc-champion-card p,
.dlc-champion-card small {
    color: rgba(255, 255, 255, 0.76);
    margin: 0;
}

/* Gallery */
.dlc-gallery {
    background: var(--dlc-cream);
}

.dlc-gallery__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.dlc-gallery__top h2 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 3.4vw, 3.45rem);
    letter-spacing: -0.045em;
}

.dlc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.dlc-gallery__item {
    border: 0;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--dlc-cream-2);
    box-shadow: 0 16px 36px rgba(28, 22, 12, 0.1);
}

.dlc-gallery__item img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    transition: transform 420ms ease;
}

.dlc-gallery__item:hover img {
    transform: scale(1.08);
}

/* Reviews */
.dlc-reviews {
    background: linear-gradient(180deg, #f7ecd7, #fff8ea);
}

.dlc-review-card {
    position: relative;
    padding: 34px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--dlc-border);
    border-radius: var(--dlc-radius-lg);
    box-shadow: 0 16px 42px rgba(28, 22, 12, 0.08);
}

.dlc-quote {
    font-family: var(--dlc-font-display);
    font-size: 4rem;
    line-height: 0.55;
    color: rgba(217, 154, 43, 0.4);
}

.dlc-review-card p {
    color: var(--dlc-muted);
    line-height: 1.72;
}

.dlc-stars {
    color: var(--dlc-gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* FAQ + Contact */
.dlc-contact-wrap {
    background:
        radial-gradient(circle at 87% 30%, rgba(217, 154, 43, 0.14), transparent 28%),
        var(--dlc-cream);
}

.dlc-faq-contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 40px;
    align-items: start;
}

.dlc-accordion {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.dlc-accordion__item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--dlc-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(28, 22, 12, 0.06);
}

.dlc-accordion__item button {
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: var(--dlc-text);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.dlc-accordion__item button span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(217, 154, 43, 0.13);
    color: var(--dlc-gold-dark);
    display: grid;
    place-items: center;
    transition: transform var(--dlc-transition);
}

.dlc-accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease;
}

.dlc-accordion__content p {
    overflow: hidden;
    margin: 0;
    padding: 0 20px;
}

.dlc-accordion__item.is-open .dlc-accordion__content {
    grid-template-rows: 1fr;
}

.dlc-accordion__item.is-open .dlc-accordion__content p {
    padding-bottom: 18px;
}

.dlc-accordion__item.is-open button span {
    transform: rotate(45deg);
}

.dlc-contact-card {
    padding: 34px;
    border-radius: var(--dlc-radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 234, 0.86));
    border: 1px solid var(--dlc-border);
    box-shadow: var(--dlc-shadow);
}

.dlc-contact-card__header h2 {
    margin-bottom: 10px;
}

.dlc-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.dlc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dlc-form label {
    display: grid;
    gap: 7px;
    font-weight: 900;
    color: #453c2f;
}

.dlc-form label span {
    font-size: 0.84rem;
}

.dlc-form input,
.dlc-form select,
.dlc-form textarea {
    width: 100%;
    border: 1px solid rgba(217, 154, 43, 0.34);
    background: #fffdf6;
    color: var(--dlc-text);
    border-radius: 15px;
    padding: 14px 15px;
    outline: none;
    transition: border-color var(--dlc-transition), box-shadow var(--dlc-transition);
}

.dlc-form textarea {
    resize: vertical;
}

.dlc-form input:focus,
.dlc-form select:focus,
.dlc-form textarea:focus {
    border-color: var(--dlc-gold);
    box-shadow: 0 0 0 4px rgba(217, 154, 43, 0.12);
}

.dlc-form__button {
    border: 0;
    width: 100%;
}

.dlc-hidden-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.dlc-form-alert {
    padding: 13px 16px;
    border-radius: 14px;
    margin: 18px 0 8px;
    font-weight: 900;
}

.dlc-form-alert--success {
    background: rgba(34, 128, 74, 0.12);
    color: #17613b;
    border: 1px solid rgba(34, 128, 74, 0.22);
}

.dlc-form-alert--error {
    background: rgba(170, 45, 45, 0.1);
    color: #9b2323;
    border: 1px solid rgba(170, 45, 45, 0.2);
}

/* Final CTA */
.dlc-final-cta {
    padding: 58px 0;
    background: linear-gradient(135deg, var(--dlc-black), #181914);
    color: var(--dlc-white);
}

.dlc-final-cta__grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: center;
}

.dlc-final-cta__image img {
    width: 220px;
    height: 220px;
    border-radius: 999px;
    object-fit: cover;
    border: 8px solid rgba(217, 154, 43, 0.45);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.dlc-final-cta h2 {
    color: var(--dlc-white);
    max-width: 860px;
}

.dlc-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.dlc-contact-details a,
.dlc-contact-details span {
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.dlc-footer {
    background: #08090b;
    color: rgba(255, 255, 255, 0.74);
    padding: 64px 0 0;
}

.dlc-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
}

.dlc-footer h3 {
    color: #fff;
    margin: 0 0 16px;
}

.dlc-footer a,
.dlc-footer span {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.72);
}

.dlc-footer a:hover {
    color: var(--dlc-gold-light);
}

.dlc-footer__brand p {
    line-height: 1.7;
    max-width: 330px;
}

.dlc-logo--footer img {
    width: 170px;
}

.dlc-footer__bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

/* Lightbox */
.dlc-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.82);
    z-index: 999;
    padding: 24px;
}

.dlc-lightbox.is-open {
    display: grid;
}

.dlc-lightbox img {
    max-width: min(920px, 92vw);
    max-height: 82vh;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.dlc-lightbox__close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--dlc-gold);
    color: var(--dlc-black);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

/* Animation */
.dlc-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.dlc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes dlc-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes dlc-slow-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .dlc-header__cta {
        display: none;
    }

    .dlc-nav {
        gap: 18px;
    }

    .dlc-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dlc-champions__grid,
    .dlc-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .dlc-topbar__inner,
    .dlc-topbar__left {
        justify-content: center;
        text-align: center;
    }

    .dlc-topbar__right {
        display: none;
    }

    .dlc-nav-toggle {
        display: grid;
    }

    .dlc-nav {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 20px;
        background: rgba(12, 13, 15, 0.98);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    }

    .dlc-nav.is-open {
        display: flex;
    }

    .dlc-nav a {
        padding: 14px 10px;
    }

    .dlc-nav-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .dlc-nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .dlc-nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dlc-hero__grid,
    .dlc-about__grid,
    .dlc-faq-contact-grid,
    .dlc-final-cta__grid {
        grid-template-columns: 1fr;
    }

    .dlc-hero {
        padding-top: 58px;
    }

    .dlc-hero__image-wrap,
    .dlc-hero__image-wrap img {
        min-height: 440px;
    }

    .dlc-stats__grid,
    .dlc-card-grid--three,
    .dlc-process__line,
    .dlc-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dlc-stat:nth-child(2) {
        border-right: 0;
    }

    .dlc-process::before {
        display: none;
    }

    .dlc-gallery__top {
        align-items: start;
        flex-direction: column;
    }

    .dlc-final-cta__image img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .dlc-container {
        width: min(100% - 28px, 1180px);
    }

    .dlc-section {
        padding: 70px 0;
    }

    .dlc-header__inner {
        min-height: 72px;
    }

    .dlc-logo img,
    .dlc-logo__fallback {
        width: 96px;
    }

    .dlc-hero__content h1 {
        font-size: clamp(2.6rem, 14vw, 4.2rem);
    }

    .dlc-hero__actions,
    .dlc-trust-row,
    .dlc-contact-details {
        flex-direction: column;
        align-items: stretch;
    }

    .dlc-btn {
        width: 100%;
    }

    .dlc-hero__image-wrap,
    .dlc-hero__image-wrap img {
        min-height: 360px;
        border-radius: 30px;
    }

    .dlc-floating-card {
        position: static;
        margin-top: 12px;
        max-width: none;
        animation: none;
    }

    .dlc-stats__grid,
    .dlc-card-grid--three,
    .dlc-benefits__grid,
    .dlc-process__line,
    .dlc-champions__grid,
    .dlc-gallery__grid,
    .dlc-form__row,
    .dlc-footer__grid {
        grid-template-columns: 1fr;
    }

    .dlc-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .dlc-stat:last-child {
        border-bottom: 0;
    }

    .dlc-about__grid {
        gap: 44px;
    }

    .dlc-seal {
        width: 118px;
        height: 118px;
        left: 12px;
        bottom: -28px;
    }

    .dlc-gallery__item img {
        height: 220px;
    }

    .dlc-contact-card {
        padding: 24px;
        border-radius: 26px;
    }

    .dlc-footer__bottom {
        display: block;
    }
}
