/* ============================================================
   Design for Stories — Watercolor Visual System
   Palette: vivid blue (dominant) + emerald teal + hot pink accent, on clean white
   Bold & vibrant — glossy paint-splash accents

   NOTE: --dfs-pink now holds the BLUE hex (dominant/primary role) and
   --dfs-cyan holds the PINK hex (secondary accent role) — the property
   names are historical (kept from an earlier palette) and no longer match
   their literal color. Don't rename lightly: ~90 usages throughout this
   file reference them by these names.
   ============================================================ */

:root {
    --dfs-pink: #22A8E0;
    --dfs-pink-dark: #1B86B3;
    --dfs-pink-deep: #0D5478;
    --dfs-teal: #1FBF8F;
    --dfs-teal-dark: #159670;
    --dfs-cyan: #E4127A;
    --dfs-cyan-dark: #B81260;
    --dfs-wash: #FBEFF4;
    --dfs-cream: #FDFCFB;
    --dfs-ink: #24252B;
    --dfs-ink-soft: #6B6D75;
    --dfs-white: #FFFFFF;
}

/* Kept legacy variable names (still referenced by contact-page.php markup)
   repointed to the new palette so that page reskins automatically. */
:root {
    --tony-blue: var(--dfs-pink);
    --tony-blue-dark: var(--dfs-pink-dark);
    --tony-blue-deep: var(--dfs-pink-deep);
    --tony-warm: var(--dfs-cyan);
    --tony-warm-dark: var(--dfs-cyan-dark);
    --tony-deep: var(--dfs-ink);
    --tony-pale: var(--dfs-wash);
    --tony-cream: var(--dfs-cream);
    --tony-text: var(--dfs-ink);
    --tony-text-light: var(--dfs-ink-soft);
    --tony-white: #ffffff;
    --tony-shadow: 0 20px 60px rgba(27, 134, 179, 0.14);
    --tony-shadow-warm: 0 20px 60px rgba(228, 18, 122, 0.16);
    --tony-radius: 24px;
    --tony-radius-sm: 14px;
}

/* Override base theme vars (style.css .mc-* components) to the same palette */
:root {
    --mc-blue: var(--dfs-pink-dark);
    --mc-secondary: var(--dfs-cyan);
    --accent-color: var(--dfs-pink);
}

/* ===== SECTION HIGHLIGHT ROTATION ===== */
/* Apply one of these classes to a <section> to recolor every accent inside
   it (eyebrow, icons, numbers, bullets, links) with one of the 3 brand
   colors — sections rotate blue / teal / pink as you scroll down the page.
   Blue is the global default, so sections needing blue get no extra class. */
.dfs-hl-teal {
    --dfs-pink: var(--dfs-teal);
    --dfs-pink-dark: var(--dfs-teal-dark);
    --dfs-pink-deep: #0F6B4F;
}
.dfs-hl-pink {
    --dfs-pink: var(--dfs-cyan);
    --dfs-pink-dark: var(--dfs-cyan-dark);
    --dfs-pink-deep: #6B0D3A;
}
.dfs-hl-teal .dfs-eyebrow,
.dfs-hl-teal .dfs-hero-badge {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 56'%3E%3Cpath d='M10,28 C8,13 22,5 42,6 L282,3 C302,2 314,15 312,29 C314,45 300,53 280,52 L40,50 C20,51 8,43 10,28 Z' fill='%231FBF8F' fill-opacity='0.16'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.dfs-hl-pink .dfs-eyebrow,
.dfs-hl-pink .dfs-hero-badge {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 56'%3E%3Cpath d='M10,28 C8,13 22,5 42,6 L282,3 C302,2 314,15 312,29 C314,45 300,53 280,52 L40,50 C20,51 8,43 10,28 Z' fill='%23E4127A' fill-opacity='0.16'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ===== GLOBAL OVERRIDES ===== */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dfs-cream) !important;
    background-image: none !important;
    color: var(--dfs-ink) !important;
}

#servicii,
#portofoliu {
    scroll-margin-top: 100px;
}

/* Scroll-in reveal (see js/dfs-reveal.js) */
.dfs-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.dfs-reveal.dfs-visible {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dfs-ink);
}

#main-wrapper {
    background: var(--dfs-cream) !important;
    padding-top: 0 !important;
}

/* ===== HEADER ===== */
#site-header {
    background: rgba(251, 246, 239, 0.97) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 168, 224, 0.2) !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(27, 134, 179, 0.08);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-link:hover {
    color: var(--dfs-pink-dark) !important;
}

.dfs-header-cta {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    background: var(--dfs-pink-dark);
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 22px;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(27, 134, 179, 0.3);
    transition: transform .2s ease, box-shadow .2s ease;
    flex-shrink: 0;
}
.dfs-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(27, 134, 179, 0.4);
    color: #fff !important;
}

/* ===== BUTTONS ===== */
.tony-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.28s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shine sweep on hover */
.tony-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none;
    z-index: 1;
}
.tony-btn:hover::after {
    left: 125%;
}

.tony-btn-primary {
    background: var(--dfs-pink-dark);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(27, 134, 179, 0.35);
}
.tony-btn-primary:hover {
    background: var(--dfs-pink-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(27, 134, 179, 0.45);
    color: #fff !important;
}

.tony-btn-warm {
    background: var(--dfs-cyan);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(228, 18, 122, 0.35);
}
.tony-btn-warm:hover {
    background: var(--dfs-cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(228, 18, 122, 0.45);
    color: #fff !important;
}

.tony-btn-outline {
    background: transparent;
    color: var(--dfs-pink-dark) !important;
    border: 2px solid var(--dfs-pink);
    border-radius: 50px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    transition: background .2s, color .2s, transform .2s;
    cursor: pointer;
}
.tony-btn-outline:hover {
    background: var(--dfs-pink);
    color: #fff !important;
    transform: translateY(-2px);
}

.tony-btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, color .2s;
    cursor: pointer;
}
.tony-btn-outline-white:hover {
    background: #fff;
    color: var(--dfs-pink-dark);
    text-decoration: none;
}

.tony-btn-white {
    background: #fff;
    color: var(--dfs-pink-dark) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.tony-btn-white:hover {
    background: var(--dfs-cream);
    color: var(--dfs-pink-dark) !important;
    transform: translateY(-2px);
}

.tony-btn-ghost-white {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.tony-btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ============================================================
   CONTACT PAGE (page-templates/contact-page.php)
   ============================================================ */

.tony-inner-hero {
    background: linear-gradient(135deg, var(--tony-blue-deep) 0%, #146D96 60%, var(--tony-blue-dark) 100%);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tony-inner-hero--photo {
    background-image: var(--tony-inner-hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Photo is light/white, so swap the (white-on-dark) default hero text for
   dark ink with a soft white glow behind it — same legibility trick used
   on the homepage's photo hero card. */
.tony-inner-hero--photo .tony-chapter-label {
    color: var(--dfs-pink-dark);
    background: rgba(255, 255, 255, .55);
    border-color: rgba(255, 255, 255, .6);
}
.tony-inner-hero--photo .tony-inner-hero-title {
    color: var(--dfs-ink);
    text-shadow: 0 2px 18px rgba(255, 255, 255, .8);
}
.tony-inner-hero--photo .tony-inner-hero-subtitle {
    color: var(--dfs-ink-soft);
    text-shadow: 0 2px 14px rgba(255, 255, 255, .75);
}

.tony-inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 168, 224,.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(228, 18, 122,.16) 0%, transparent 50%);
    pointer-events: none;
}

.tony-inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.tony-inner-hero .tony-chapter-label {
    color: rgba(255,255,255,.75);
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    display: inline-block;
    margin-bottom: 18px;
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
}

.tony-chapter-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--dfs-pink-dark);
    margin-bottom: 16px;
}

.tony-inner-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 18px;
}

.tony-inner-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    margin: 0;
}

.dfs-package-hero-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 22px 0 6px;
}

.dfs-package-hero-delivery {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    margin: 0 0 26px;
}

.tony-inner-hero-content .tony-btn {
    margin-top: 22px;
}

.tony-chapter {
    padding: 88px 0;
    position: relative;
    background: var(--dfs-cream);
}

.tony-contact-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 36px;
    align-items: start;
}

.tony-diagnosis-card {
    background: #fff;
    border-radius: var(--tony-radius);
    padding: 32px;
    box-shadow: var(--tony-shadow);
}

.tony-diagnosis-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dfs-ink);
    margin-bottom: 20px;
}

.tony-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tony-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
    font-size: .95rem;
    color: var(--dfs-ink);
}

.tony-contact-list li:last-child {
    border-bottom: none;
}

.tony-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--dfs-ink-soft);
    font-weight: 600;
}

.tony-contact-form-card h3 {
    margin-bottom: 6px;
}

.tony-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.tony-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.tony-form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dfs-ink);
}

.tony-form-group input,
.tony-form-group textarea {
    border: 1.5px solid rgba(34, 168, 224,.3);
    border-radius: var(--tony-radius-sm);
    padding: 12px 16px;
    font-size: .95rem;
    color: var(--dfs-ink);
    background: #fff;
    transition: border-color .2s;
    outline: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.tony-form-group input:focus,
.tony-form-group textarea:focus {
    border-color: var(--dfs-pink-dark);
}

.tony-form-group textarea {
    resize: vertical;
}

.tony-form-actions {
    margin-top: 8px;
}

.tony-form-group--gdpr {
    margin-top: 4px;
}

.tony-gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: .85rem;
    color: var(--dfs-ink-soft);
    font-weight: 400;
    line-height: 1.5;
}

.tony-gdpr-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--dfs-pink-dark);
    cursor: pointer;
}

.tony-gdpr-label a {
    color: var(--dfs-pink-dark);
    text-decoration: underline;
}

.tony-form-message {
    padding: 14px 20px;
    border-radius: var(--tony-radius-sm);
    font-size: .9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.tony-form-message--success {
    background: #e4efdf;
    color: #3f5c37;
    border: 1px solid var(--dfs-pink);
}

.tony-form-message--error {
    background: #fbe6e0;
    color: #9c3b23;
    border: 1px solid #c0392b;
}

@media (max-width: 900px) {
    .tony-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tony-form-row {
        grid-template-columns: 1fr;
    }

    .tony-inner-hero {
        padding: 60px 0 50px;
    }
}

/* ===== FOOTER ===== */
.mc-footer {
    background: var(--dfs-ink) !important;
}

.mc-footer p,
.mc-footer li,
.mc-footer-bottom {
    color: rgba(255, 255, 255, 0.62) !important;
}

.mc-footer-title {
    color: #fff !important;
}

.mc-footer-links a {
    color: rgba(255, 255, 255, 0.65) !important;
}

.mc-footer-links a:hover {
    color: var(--dfs-cyan) !important;
}

.mc-footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.mc-footer-contact-card .mc-footer-title,
.mc-footer-contact-card .mc-footer-links li,
.mc-footer-contact-card .mc-footer-links li span,
.mc-footer-contact-card .mc-footer-links a {
    color: var(--dfs-ink) !important;
}

.mc-footer-contact-card .mc-footer-links a:hover {
    color: var(--dfs-pink-dark) !important;
}

/* ============================================================
   WATERCOLOR VISUAL SYSTEM — brush strokes, washes, dividers
   Used across the new front page (prefix: dfs-)
   ============================================================ */

/* Section dividers rendered via dfs_render_divider() in functions.php —
   a rough, hand-brushed edge (not a clean sine wave). */
.dfs-divider {
    display: block;
    line-height: 0;
    margin: -1px 0;
}
.dfs-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

@media (max-width: 767px) {
    .dfs-divider svg { height: 40px; }
}

/* ===== PAINT SPLASHES ===== */
/* Small, subtle watercolor paint-splash accents — a single discreet corner
   detail per section, not a dominant visual element (see /images/paint/
   and dfs_render_paint_splash() in functions.php). */
.dfs-splash {
    position: absolute;
    width: 160px;
    height: auto;
    opacity: .45;
    pointer-events: none;
    z-index: 0;
}

.dfs-splash--hero-tr { top: -20px; right: -20px; width: 180px; }
.dfs-splash--corner  { bottom: -15px; right: -15px; width: 150px; }
.dfs-splash--corner-left { top: -15px; left: -20px; width: 150px; transform: scaleX(-1); }

@media (max-width: 767px) {
    .dfs-splash--hero-tr { width: 120px; top: -10px; right: -10px; }
    .dfs-splash--corner, .dfs-splash--corner-left { width: 100px; }
}

/* ===== BRUSH STROKES ===== */
/* Pre-rendered dry-brush-stroke images with torn/bristled edges and visible
   fiber texture (see /images/paint/ and dfs_render_brush_stroke() in
   functions.php) — currently unused on the front page, kept for future use. */
.dfs-stroke {
    position: absolute;
    width: 520px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

/* Brush-stroke underline accent under headings/keywords */
.dfs-underline {
    position: relative;
    white-space: nowrap;
}
.dfs-underline::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -0.14em;
    height: 0.34em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 30' preserveAspectRatio='none'%3E%3Cpath d='M2 20 C60 6, 120 28, 180 14 S 260 4, 298 16' stroke='%23E4127A' stroke-width='9' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
    z-index: -1;
}

/* Eyebrow labels — handwritten accent on a rough brush-mark highlight */
.dfs-eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dfs-pink-dark);
    padding: 3px 20px 9px;
    margin: 0 0 10px -20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 56'%3E%3Cpath d='M10,28 C8,13 22,5 42,6 L282,3 C302,2 314,15 312,29 C314,45 300,53 280,52 L40,50 C20,51 8,43 10,28 Z' fill='%2322A8E0' fill-opacity='0.16'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ===== SECTION SHELL ===== */
#dfs-home section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

#dfs-home .container {
    position: relative;
    z-index: 1;
}

#dfs-home .dfs-section-alt { background: var(--dfs-wash); }
#dfs-home .dfs-section-cream { background: var(--dfs-cream); }
#dfs-home .dfs-section-dark {
    background: var(--dfs-ink);
    color: rgba(255,255,255,.88);
}
#dfs-home .dfs-section-dark h2,
#dfs-home .dfs-section-dark h3 { color: #fff; }
#dfs-home .dfs-section-dark .dfs-eyebrow {
    color: var(--dfs-pink);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 56'%3E%3Cpath d='M10,28 C8,13 22,5 42,6 L282,3 C302,2 314,15 312,29 C314,45 300,53 280,52 L40,50 C20,51 8,43 10,28 Z' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

#dfs-home .dfs-section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

#dfs-home .dfs-section-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--dfs-ink-soft);
    max-width: 640px;
    margin-bottom: 12px;
}
#dfs-home .dfs-section-dark .dfs-section-intro { color: rgba(255,255,255,.75); }

/* ===== HERO ===== */
.dfs-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--dfs-wash) 0%, var(--dfs-cream) 55%, #fff 100%);
    padding: 130px 0 80px;
}

/* Full-bleed photo hero — background set inline via style="background-image:..."
   in front-page.php. A frosted glass card holds the real headline/CTA so it
   stays legible over the busy paint-splash artwork behind it.
   NOTE: selector is prefixed with #dfs-home so its specificity beats the
   sitewide "#dfs-home section { padding: ... }" rule and the later
   ".dfs-hero { padding: ... }" mobile override — both used to silently win
   over a plain ".dfs-hero--photo" and undo this padding. */
#dfs-home .dfs-hero--photo {
    background-image: var(--dfs-hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 640px;
    padding: 130px 0 60px;
}

.dfs-hero-card {
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 28px;
    padding: 48px 44px;
    max-width: 540px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.dfs-hero-card--center {
    margin: 0 auto;
    text-align: center;
}
.dfs-hero-card--center .dfs-hero-actions {
    justify-content: center;
}

.dfs-hero-card .dfs-hero-title,
.dfs-hero-card .dfs-hero-subtitle {
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.75);
}

.dfs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dfs-pink-dark);
    padding: 9px 22px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 56'%3E%3Cpath d='M10,28 C8,13 22,5 42,6 L282,3 C302,2 314,15 312,29 C314,45 300,53 280,52 L40,50 C20,51 8,43 10,28 Z' fill='%2322A8E0' fill-opacity='0.14' stroke='%2322A8E0' stroke-opacity='0.3' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.dfs-hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dfs-ink);
    margin-bottom: 22px;
}

.dfs-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dfs-ink-soft);
    margin: 0 0 32px;
}

.dfs-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.dfs-hero-mobile-img { display: none; }

@media (max-width: 767px) {
    /* On mobile the full-bleed background photo is dropped in favor of a
       real <img> placed between the title and the subtitle/buttons — it
       always renders whole (never cropped, native aspect ratio) and can
       never overlap the text since it's a normal block in the document
       flow, not a background layered under a floating card. */
    #dfs-home .dfs-hero--photo {
        background-image: none;
        min-height: 0;
        display: block;
        padding: 50px 0 40px;
    }
    .dfs-hero-card {
        max-width: 100%;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        padding: 0 8px;
    }
    .dfs-hero-card .dfs-hero-title,
    .dfs-hero-card .dfs-hero-subtitle {
        text-shadow: none;
    }
    .dfs-hero-mobile-img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        margin: 20px 0 26px;
    }
    .dfs-hero-badge { margin-bottom: 16px; }
    .dfs-hero-title {
        font-size: clamp(1.7rem, 7vw, 2.6rem);
        margin-bottom: 6px;
    }
    .dfs-hero-subtitle { margin-bottom: 20px; }
    .dfs-eyebrow { margin-left: 0; }
}

/* ===== PORTFOLIO TEASER CAROUSEL ===== */
/* A row of every portfolio site, sitting below the hero (not overlapping
   it). Built on Swiper (js/dfs-reveal.js inits it) — autoplay + touch
   dragging are both handled by Swiper itself via transforms, not native
   scrollLeft, which is what a hand-rolled version kept fighting on real
   mobile touch (auto-scroll writes and the browser's own scroll-gesture
   recognition stepping on each other, freezing the row). */
.dfs-hero-previews-wrap {
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-bottom: 40px;
}

.dfs-hero-previews {
    padding: 16px 24px 20px;
    cursor: grab;
}
.dfs-hero-previews:active { cursor: grabbing; }

/* Specificity bumped to 2 classes on purpose: swiper-bundle.min.css loads
   after this file (see functions.php) and its own ".swiper-slide { width:
   100% }" rule has the same 1-class specificity — without this it wins the
   source-order tie and every card stretches to the full carousel width. */
.swiper-slide.dfs-hero-preview-slide {
    width: 380px;
}

.dfs-hero-preview-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.22);
    border: 6px solid #fff;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
    /* Prevent iOS's long-press link callout/preview from hijacking the
       swipe gesture when it starts on a card. */
    -webkit-touch-callout: none;
}
.dfs-hero-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 65px rgba(0, 0, 0, 0.3);
}

.dfs-hero-preview-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
    -webkit-user-drag: none;
}

.dfs-hero-preview-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .62), transparent);
}

@media (max-width: 600px) {
    .swiper-slide.dfs-hero-preview-slide { width: 260px; }
    .dfs-hero-preview-name { font-size: .88rem; padding: 10px 14px; }
}

/* ===== SERVICES ===== */
.dfs-services-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.dfs-services-intro-media img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .dfs-services-intro {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .dfs-services-intro-media { order: -1; }
}

.dfs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.dfs-service-card {
    background: #fff;
    border-radius: var(--tony-radius);
    padding: 34px 28px;
    box-shadow: var(--tony-shadow);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.dfs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(27, 134, 179, 0.2);
}

.dfs-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dfs-wash);
    color: var(--dfs-pink-dark);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.dfs-service-icon svg { width: 26px; height: 26px; }

.dfs-service-kicker {
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--dfs-pink-dark);
    font-weight: 700;
}

.dfs-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dfs-ink);
    margin: 6px 0 12px;
}

.dfs-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dfs-service-list li {
    font-size: .95rem;
    color: var(--dfs-ink-soft);
    padding-left: 20px;
    position: relative;
}
.dfs-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dfs-pink);
}

/* ===== PORTFOLIO ===== */
.dfs-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.dfs-portfolio-more {
    text-align: center;
    margin-top: 40px;
}

.dfs-portfolio-card-wrap {
    position: relative;
    align-self: start;
}

/* Paint puddle bleeding out from behind the bottom of the card, with a
   drip trail running further down — see /images/paint/puddle-*.png and
   dfs_render_portfolio_card() in functions.php. */
.dfs-portfolio-puddle {
    position: absolute;
    width: 90%;
    max-width: 300px;
    left: 4%;
    top: 80%;
    z-index: 0;
    pointer-events: none;
}

.dfs-portfolio-card {
    background: #fff;
    border-radius: var(--tony-radius);
    overflow: hidden;
    box-shadow: var(--tony-shadow);
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: transform .25s ease, box-shadow .25s ease;
}
.dfs-portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(27, 134, 179, 0.22);
}

.dfs-portfolio-thumb {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Mini mockup sits as the base layer — visible immediately and as a fallback
   if the live screenshot fails to load. */
.dfs-portfolio-thumb .dfs-mockup-mini {
    position: absolute;
    inset: 0;
}

/* Live screenshot layered on top; fades in once loaded, hides itself on error
   (see the inline onerror handler in front-page.php) so the mockup shows through. */
.dfs-portfolio-thumb img.dfs-portfolio-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    z-index: 2;
    background: var(--dfs-cream);
    transition: transform .45s ease, opacity .25s ease;
}
.dfs-portfolio-card:hover .dfs-portfolio-thumb img.dfs-portfolio-shot {
    transform: scale(1.07);
}

.dfs-portfolio-thumb--placeholder {
    background: linear-gradient(135deg, var(--dfs-wash), var(--dfs-cream));
}
.dfs-portfolio-thumb--placeholder span {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dfs-pink-dark);
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
}

/* ===== MINI BROWSER MOCKUP (portfolio cards without a real screenshot yet) ===== */
.dfs-mockup-mini {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--dfs-cream);
    transition: transform .45s ease;
}
.dfs-portfolio-card:hover .dfs-mockup-mini {
    transform: scale(1.05);
}

.dfs-mockup-mini-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    background: #fff;
    border-bottom: 1px solid rgba(36, 37, 43, 0.07);
    flex-shrink: 0;
}
.dfs-mockup-mini-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(36, 37, 43, 0.18);
}

.dfs-mockup-mini-body {
    flex: 1;
    position: relative;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dfs-mockup-mini-line {
    height: 10px;
    border-radius: 6px;
    background: rgba(36, 37, 43, 0.1);
}
.dfs-mockup-mini-line--wide { width: 72%; }
.dfs-mockup-mini-line--mid { width: 46%; }

.dfs-mockup-mini-blocks {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.dfs-mockup-mini-block {
    flex: 1;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
}

.dfs-mockup-mini-letter {
    position: absolute;
    right: 14px;
    bottom: 8px;
    font-family: 'Caveat', cursive;
    font-size: 2.6rem;
    line-height: 1;
    opacity: .16;
}

.dfs-mockup-mini--terracotta .dfs-mockup-mini-line,
.dfs-mockup-mini--terracotta .dfs-mockup-mini-letter { color: var(--dfs-teal-dark); }
.dfs-mockup-mini--terracotta .dfs-mockup-mini-line { background: rgba(31, 191, 143, 0.24); }
.dfs-mockup-mini--terracotta .dfs-mockup-mini-block:nth-child(1) { background: var(--dfs-teal); }
.dfs-mockup-mini--terracotta .dfs-mockup-mini-block:nth-child(2) { background: var(--dfs-cyan); }
.dfs-mockup-mini--terracotta .dfs-mockup-mini-block:nth-child(3) { background: var(--dfs-pink); }

.dfs-mockup-mini--sage .dfs-mockup-mini-letter { color: var(--dfs-pink-dark); }
.dfs-mockup-mini--sage .dfs-mockup-mini-line { background: rgba(34, 168, 224, 0.26); }
.dfs-mockup-mini--sage .dfs-mockup-mini-block:nth-child(1) { background: var(--dfs-pink); }
.dfs-mockup-mini--sage .dfs-mockup-mini-block:nth-child(2) { background: var(--dfs-teal); }
.dfs-mockup-mini--sage .dfs-mockup-mini-block:nth-child(3) { background: var(--dfs-cyan); }

.dfs-mockup-mini--gold .dfs-mockup-mini-letter { color: var(--dfs-cyan-dark); }
.dfs-mockup-mini--gold .dfs-mockup-mini-line { background: rgba(228, 18, 122, 0.26); }
.dfs-mockup-mini--gold .dfs-mockup-mini-block:nth-child(1) { background: var(--dfs-cyan); }
.dfs-mockup-mini--gold .dfs-mockup-mini-block:nth-child(2) { background: var(--dfs-pink); }
.dfs-mockup-mini--gold .dfs-mockup-mini-block:nth-child(3) { background: var(--dfs-teal); }

.dfs-portfolio-body {
    padding: 22px 24px 26px;
}

.dfs-portfolio-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dfs-pink-dark);
    margin-bottom: 8px;
    display: block;
}

.dfs-portfolio-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dfs-ink);
    margin-bottom: 8px;
}

.dfs-portfolio-card p {
    font-size: .92rem;
    line-height: 1.6;
    color: var(--dfs-ink-soft);
    margin-bottom: 14px;
}

.dfs-portfolio-link {
    font-size: .88rem;
    font-weight: 700;
    color: var(--dfs-pink-dark);
}

/* ===== STATS ===== */
.dfs-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dfs-stat {
    text-align: center;
    padding: 12px;
}

.dfs-stat-value {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--dfs-pink);
    display: block;
    margin-bottom: 6px;
}

.dfs-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    line-height: 1.45;
}

/* ===== PROCESS ===== */
.dfs-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.dfs-process-step {
    text-align: center;
    padding: 32px 26px;
    background: #fff;
    border: 2px solid var(--dfs-pink);
    border-radius: var(--tony-radius-sm);
    box-shadow: var(--tony-shadow);
}

.dfs-process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dfs-pink), var(--dfs-pink-dark));
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 10px 26px rgba(27, 134, 179,.32);
}

.dfs-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dfs-ink);
    margin-bottom: 10px;
}

.dfs-process-step p,
.dfs-process-step div {
    font-size: .92rem;
    color: var(--dfs-ink-soft);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.dfs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.dfs-testimonial-card {
    background: #fff;
    border-radius: var(--tony-radius);
    padding: 30px 28px;
    box-shadow: var(--tony-shadow);
    position: relative;
}

.dfs-testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--dfs-pink);
    opacity: .3;
    position: absolute;
    top: 4px;
    left: 20px;
    line-height: 1;
}

.dfs-testimonial-quote {
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--dfs-ink);
    margin: 22px 0 18px;
    position: relative;
    z-index: 1;
}

.dfs-testimonial-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--dfs-ink);
}

.dfs-testimonial-role {
    font-size: .82rem;
    color: var(--dfs-ink-soft);
}

/* ===== PRICING ===== */
.dfs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
    align-items: stretch;
}

.dfs-pricing-card {
    background: #fff;
    border-radius: var(--tony-radius);
    padding: 36px 30px;
    box-shadow: var(--tony-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.dfs-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(27, 134, 179, 0.2);
}

.dfs-pricing-card--highlight {
    background: var(--dfs-ink);
    color: #fff;
    box-shadow: 0 26px 60px rgba(36, 37, 43, 0.28);
}
.dfs-pricing-card--highlight .dfs-pricing-description,
.dfs-pricing-card--highlight .dfs-pricing-features li,
.dfs-pricing-card--highlight .dfs-pricing-delivery { color: rgba(255,255,255,.78); }
.dfs-pricing-card--highlight h3 { color: #fff; }
.dfs-pricing-card--highlight .dfs-pricing-price { color: var(--dfs-cyan); }
.dfs-pricing-card--highlight .dfs-pricing-features li::before { background: var(--dfs-cyan); }

.dfs-pricing-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: var(--dfs-cyan);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    box-shadow: 0 8px 18px rgba(228, 18, 122, 0.4);
}

.dfs-pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dfs-ink);
    margin-bottom: 6px;
}

.dfs-pricing-price {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dfs-pink-dark);
    margin-bottom: 10px;
}

.dfs-pricing-description {
    font-size: .92rem;
    color: var(--dfs-ink-soft);
    margin-bottom: 20px;
}

.dfs-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.dfs-pricing-features li {
    font-size: .92rem;
    color: var(--dfs-ink-soft);
    padding-left: 22px;
    position: relative;
}
.dfs-pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dfs-pink);
}

.dfs-pricing-delivery {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dfs-pink-dark);
    margin-bottom: 18px;
}

.dfs-pricing-cta {
    justify-content: center;
    width: 100%;
}

.dfs-pricing-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dfs-pricing-details-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--dfs-pink-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.dfs-pricing-details-link:hover { color: var(--dfs-pink); }
.dfs-pricing-card--highlight .dfs-pricing-details-link { color: rgba(255,255,255,.85); }
.dfs-pricing-card--highlight .dfs-pricing-details-link:hover { color: #fff; }

/* ===== INCLUDED FEATURES CHECKLIST ===== */
.dfs-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px 28px;
    margin-top: 44px;
}

.dfs-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .98rem;
    color: var(--dfs-ink);
    font-weight: 500;
}
.dfs-checklist-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--dfs-pink-dark);
    background: var(--dfs-wash);
    border-radius: 50%;
    padding: 4px;
    box-sizing: border-box;
}

/* ===== ADDON SERVICES ===== */
.dfs-addon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 44px;
}

.dfs-addon-tag {
    background: #fff;
    border: 1.5px solid var(--dfs-wash);
    color: var(--dfs-ink);
    font-size: .92rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 100px;
    box-shadow: 0 6px 16px rgba(27, 134, 179, 0.08);
    transition: transform .2s ease, border-color .2s ease;
}
.dfs-addon-tag:hover {
    transform: translateY(-3px);
    border-color: var(--dfs-pink);
}

/* ===== FAQ ===== */
.dfs-faq-list {
    max-width: 760px;
    margin: 44px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dfs-faq-item {
    background: #fff;
    border-radius: var(--tony-radius-sm);
    box-shadow: var(--tony-shadow);
    padding: 4px 26px;
}

.dfs-faq-item summary {
    padding: 20px 0;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--dfs-ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.dfs-faq-item summary::-webkit-details-marker { display: none; }
.dfs-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    line-height: 1;
    color: var(--dfs-pink-dark);
    flex-shrink: 0;
    transition: transform .2s ease;
}
.dfs-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.dfs-faq-item p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--dfs-ink-soft);
    margin: 0 0 22px;
}

/* ===== CONTACT CTA ===== */
.dfs-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--dfs-pink-dark) 0%, var(--dfs-cyan) 100%);
    border-radius: var(--tony-radius);
    padding: 72px 56px;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.dfs-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.dfs-cta p {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TRUST STRIP ===== */
.dfs-trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.dfs-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: var(--tony-radius-sm);
    padding: 20px 22px;
    box-shadow: var(--tony-shadow);
}

.dfs-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dfs-pink-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dfs-trust-icon svg { width: 20px; height: 20px; }

.dfs-trust-item p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.5;
    color: var(--dfs-ink);
    font-weight: 500;
}

/* ===== COMPARISON TABLE ===== */
.dfs-compare-table {
    margin-top: 44px;
    overflow-x: auto;
    border-radius: var(--tony-radius);
    box-shadow: var(--tony-shadow);
    background: #fff;
}

.dfs-compare-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.dfs-compare-table th,
.dfs-compare-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: .92rem;
    border-bottom: 1px solid var(--dfs-wash);
}

.dfs-compare-table thead th {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--dfs-ink);
    background: var(--dfs-wash);
}

.dfs-compare-table thead th:first-child { border-top-left-radius: var(--tony-radius); }

.dfs-compare-table tbody th {
    font-weight: 600;
    color: var(--dfs-ink-soft);
    white-space: nowrap;
}

.dfs-compare-table td {
    color: var(--dfs-ink-soft);
}

.dfs-compare-table tbody tr:last-child th,
.dfs-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.dfs-compare-highlight {
    background: rgba(34, 168, 224, 0.06);
    color: var(--dfs-pink-dark) !important;
    font-weight: 700;
}

/* ===== STICKY CTA ===== */
.dfs-sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dfs-pink-dark);
    color: #fff !important;
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 24px;
    border-radius: 100px;
    box-shadow: 0 14px 30px rgba(27, 134, 179, 0.35);
    text-decoration: none !important;
    z-index: 9998;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, background .2s ease, box-shadow .2s ease;
}
.dfs-sticky-cta--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.dfs-sticky-cta:hover {
    background: var(--dfs-pink-deep);
    color: #fff !important;
    box-shadow: 0 18px 36px rgba(27, 134, 179, 0.45);
}
.dfs-sticky-cta--stacked {
    bottom: 94px;
}

@media (max-width: 600px) {
    .dfs-sticky-cta {
        right: 16px;
        bottom: 16px;
        padding: 12px 18px;
        font-size: .85rem;
    }
    .dfs-sticky-cta--stacked { bottom: 82px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    #dfs-home section { padding: 64px 0; }
    .dfs-hero { padding: 110px 0 60px; min-height: auto; }
    .dfs-cta { padding: 44px 28px; }
}
