/* ─── Theme override: hide TT25 chrome when df-site is present ─────────────── */
body.df-site header.wp-block-template-part,
body.df-site footer.wp-block-template-part,
body.df-site .wp-site-blocks > header,
body.df-site .wp-site-blocks > footer,
body.df-site .entry-header,
body.df-site .wp-block-post-title,
body.df-site .admin-bar,
body.df-site #wpadminbar { display: none !important; }

/* Remove TT25 content constraints */
body.df-site .wp-site-blocks,
body.df-site main,
body.df-site .wp-block-group,
body.df-site .wp-block-post-content,
body.df-site article.page {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    contain: none !important;
}

body.df-site { margin: 0; padding: 0; background: #19191b; }
html:has(.df-site) { scroll-padding-top: 80px; }

/* ─── Reset & base ─────────────────────────────────────────────────────────── */
.df-site *, .df-site *::before, .df-site *::after { box-sizing: border-box; margin: 0; padding: 0; }

.df-site {
    --df-bg: #19191b;
    --df-text: #ffffff;
    --df-teal: #6affdc;
    --df-cyan: #81ffff;
    --df-purple: #b692ff;
    --df-blue: #6a77ff;
    --df-dark: #212124;
    --df-card-bg: rgba(255,255,255,0.05);
    --df-card-border: rgba(255,255,255,0.1);
    --df-font-display: 'DM Sans', 'Neue Haas Grotesk Display Pro', sans-serif;
    --df-font-body: 'Instrument Sans', sans-serif;
    --df-font-ui: 'Outfit', sans-serif;
    --df-max: 1600px;
    --df-pad: 140px;
    background: var(--df-bg);
    color: var(--df-text);
    font-family: var(--df-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.df-page { --df-pad: 80px; }

html, body { scroll-behavior: smooth; scroll-padding-top: 80px; }
.df-site img { display: block; max-width: 100%; }
.df-site a { color: inherit; text-decoration: none; }

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.df-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 100px; font-family: var(--df-font-body);
    font-weight: 600; font-size: 16px; line-height: 1; cursor: pointer;
    border: 1px solid transparent; transition: opacity .2s, transform .15s;
    white-space: nowrap; text-decoration: none;
}
.df-btn:hover { opacity: .88; transform: translateY(-1px); }
.df-btn--primary  { background: #fff; color: #212124 !important; border-color: #fff; }
.df-btn--teal     { background: var(--df-teal); color: var(--df-dark); }
.df-btn--purple   { background: var(--df-purple); color: #fff; }
.df-btn--blue     { background: var(--df-blue); color: #fff; }
.df-btn--outline-cyan   { background: transparent; border-color: var(--df-cyan); color: #fff; }
.df-btn--outline-purple { background: transparent; border-color: var(--df-purple); color: #fff; }
.df-btn--outline-blue   { background: transparent; border-color: var(--df-blue); color: #fff; }
.df-btn--full { width: 100%; }

/* ─── Tag pill ─────────────────────────────────────────────────────────────── */
.df-tag {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.1); border-radius: 100px;
    padding: 8px 20px; font-size: 14px; font-weight: 500; color: #fff;
    margin-bottom: 24px;
}

/* ─── Glow helper ──────────────────────────────────────────────────────────── */
.df-glow {
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    filter: blur(120px); opacity: .35;
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */
.df-nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 60px); max-width: 1450px; z-index: 1000;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
    transition: background .3s, box-shadow .3s;
}
.df-nav.is-scrolled {
    background: rgba(20,20,22,0.9); box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.df-nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px 0 28px; height: 64px; gap: 20px;
}
.df-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.df-nav__logo img { height: 36px; width: auto; }
.df-nav__logo-text { font-family: var(--df-font-display); font-weight: 700; font-size: 18px; letter-spacing: .05em; }
.df-nav__links { display: flex; align-items: center; gap: 32px; }
.df-nav__links a { font-size: 16px; font-weight: 600; opacity: .9; transition: opacity .2s; }
.df-nav__links a:hover { opacity: 1; }
.df-nav__cta { background: #fff; color: var(--df-dark); padding: 10px 22px; border-radius: 100px; font-weight: 600; font-size: 15px; flex-shrink: 0; transition: opacity .2s; }
.df-nav__cta:hover { opacity: .85; }
.df-nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.df-nav__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.df-nav__mobile { display: none; flex-direction: column; gap: 6px; padding: 16px 28px 20px; border-top: 1px solid rgba(255,255,255,.08); }
.df-nav__mobile a { font-size: 16px; font-weight: 600; padding: 8px 0; }
.df-nav.is-open .df-nav__mobile { display: flex; }
.df-nav.is-open { border-radius: 24px; }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.df-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center; overflow: hidden;
    background: var(--df-bg) center/cover no-repeat;
    padding: 140px 40px 100px;
}
.df-hero__overlay { position: absolute; inset: 0; background: rgba(25,25,27,.55); z-index: 1; }
.df-hero__fade { position: absolute; bottom: 0; left: 0; right: 0; height: 220px; background: linear-gradient(to bottom, transparent, var(--df-bg)); z-index: 2; }
.df-hero__glow {
    position: absolute; width: 1300px; height: 1300px; border-radius: 50%;
    pointer-events: none; z-index: 1;
}
.df-hero__glow--left  { left: -30%; top: -40%; background: radial-gradient(circle, rgba(106,255,220,.22) 0%, transparent 65%); }
.df-hero__glow--right { right: -25%; top: 20%;  background: radial-gradient(circle, rgba(129,255,255,.12) 0%, transparent 65%); }
.df-hero__content { position: relative; z-index: 3; max-width: 860px; }
.df-hero__headline {
    font-family: var(--df-font-display); font-size: clamp(44px, 5vw, 70px);
    font-weight: 300; line-height: 1.08; letter-spacing: -.02em; text-transform: uppercase;
    margin-bottom: 28px;
}
.df-hero__headline strong { font-weight: 700; }
.df-hero__sub { font-size: 20px; line-height: 1.5; max-width: 560px; margin: 0 auto 40px; opacity: .9; }
.df-hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.df-hero__play {
    position: absolute; bottom: 80px; right: 120px; z-index: 3;
    display: flex; align-items: center; gap: 10px;
    background: rgba(129,255,255,.19); backdrop-filter: blur(5px);
    border: .5px solid var(--df-cyan); border-radius: 100px;
    padding: 6px 16px 6px 8px; cursor: pointer; color: #fff;
    font-size: 14px; font-weight: 500; font-family: var(--df-font-body);
    transition: background .2s;
}
.df-hero__play:hover { background: rgba(129,255,255,.28); }
.df-hero__play-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--df-cyan); }
.df-hero__play-icon {
    width: 28px; height: 28px; background: rgba(255,255,255,.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ─── About ────────────────────────────────────────────────────────────────── */
.df-about {
    position: relative; padding: 100px var(--df-pad) 60px; overflow: hidden;
}
.df-about__glow {
    position: absolute; left: -20%; top: -10%; width: 1100px; height: 1100px;
    background: radial-gradient(circle, rgba(106,255,220,.12) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.df-about__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: var(--df-max); margin: 0 auto; }
.df-about__content { max-width: 560px; }
.df-about__heading { font-family: var(--df-font-display); font-size: clamp(28px,3vw,45px); font-weight: 400; line-height: 1.2; margin-bottom: 24px; }
.df-about__body { font-size: 16px; line-height: 1.9; opacity: .9; }
.df-about__body p + p { margin-top: 16px; }
.df-about__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.df-about__image img { width: 100%; height: auto; border-radius: 20px; object-fit: cover; }

/* Stats strip */
.df-stats {
    position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; max-width: var(--df-max); margin: 60px auto 0; padding: 0 var(--df-pad);
    border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
}
.df-stats__item { padding: 40px 20px; text-align: center; }
.df-stats__item + .df-stats__item { border-left: 1px solid rgba(255,255,255,.1); }
.df-stats__number { font-family: var(--df-font-display); font-size: clamp(56px,5vw,70px); font-weight: 300; line-height: 1; }
.df-stats__label  { font-size: 18px; font-weight: 500; margin-top: 10px; opacity: .8; }

/* ─── Services ─────────────────────────────────────────────────────────────── */
.df-services {
    position: relative; padding: 100px 0 80px; overflow: hidden;
}
.df-services__bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: var(--df-font-display); font-size: clamp(160px,15vw,300px); font-weight: 700;
    color: rgba(255,255,255,.04); white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.df-services__glow {
    position: absolute; right: -10%; top: -20%; width: 1200px; height: 1200px;
    background: radial-gradient(circle, rgba(106,255,220,.1) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.df-services__inner { position: relative; z-index: 1; max-width: var(--df-max); margin: 0 auto; padding: 0 var(--df-pad); }
.df-services__heading { margin-bottom: 48px; }
.df-services__heading h2 { font-family: var(--df-font-display); font-size: clamp(28px,3vw,45px); font-weight: 400; line-height: 1.2; max-width: 700px; }

.df-services__carousel { position: relative; }
.df-services__track {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
}
.df-services__track::-webkit-scrollbar { display: none; }

.df-service-card {
    flex: 0 0 415px; scroll-snap-align: start;
    background: var(--df-card-bg); backdrop-filter: blur(25px);
    border-radius: 30px; overflow: hidden; transition: transform .2s;
}
.df-service-card--featured { border: 1px solid var(--df-teal); }
.df-service-card:hover { transform: translateY(-4px); }
.df-service-card__img { height: 280px; overflow: hidden; }
.df-service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.df-service-card__body { padding: 28px; }
.df-service-card__body h3 { font-family: var(--df-font-display); font-size: 22px; font-weight: 500; margin-bottom: 14px; }
.df-service-card__body p  { font-size: 15px; line-height: 1.7; opacity: .85; margin-bottom: 28px; }

.df-services__nav { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.df-carousel-prev, .df-carousel-next {
    width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,.08);
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #fff; transition: background .2s;
}
.df-carousel-prev:hover, .df-carousel-next:hover { background: rgba(255,255,255,.18); }

/* ─── Gallery ──────────────────────────────────────────────────────────────── */
.df-gallery {
    position: relative; padding: 100px var(--df-pad) 80px; overflow: hidden;
}
.df-gallery__bg-text {
    position: absolute; left: -5%; top: 50%; transform: translateY(-50%);
    font-family: var(--df-font-display); font-size: clamp(160px,15vw,300px); font-weight: 700;
    color: rgba(255,255,255,.04); white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.df-gallery__glow {
    position: absolute; left: -20%; top: 10%; width: 1200px; height: 1200px;
    background: radial-gradient(circle, rgba(182,146,255,.08) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.df-gallery__header { position: relative; z-index: 1; text-align: center; margin-bottom: 56px; }
.df-gallery__header h2 { font-family: var(--df-font-display); font-size: clamp(28px,3vw,45px); font-weight: 400; line-height: 1.2; max-width: 760px; margin: 0 auto 16px; }
.df-gallery__header p  { font-size: 16px; opacity: .8; }

/* Featured project */
.df-gallery__featured { position: relative; z-index: 1; margin-bottom: 40px; max-width: var(--df-max); margin-left: auto; margin-right: auto; }
.df-project-featured {
    display: grid; grid-template-columns: 55% 1fr;
    background: var(--df-card-bg); backdrop-filter: blur(25px);
    border: 1px solid var(--df-purple); border-radius: 30px; overflow: hidden; min-height: 800px;
}
.df-project-featured__media { position: relative; overflow: hidden; }
.df-project__slides { position: relative; height: 100%; }
.df-project__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s; }
.df-project__slide.is-active { opacity: 1; position: relative; }
.df-project__placeholder { width: 100%; height: 100%; min-height: 400px; background: rgba(255,255,255,.04); }
.df-project__dots { position: absolute; bottom: 20px; left: 24px; display: flex; gap: 8px; }
.df-project__dot { width: 66px; height: 4px; border-radius: 100px; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s; }
.df-project__dot.is-active { background: #fff; }
.df-project-featured__info { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.df-project-featured__info h3 { font-family: var(--df-font-display); font-size: 28px; font-weight: 500; margin: 12px 0 20px; }
.df-project-featured__info p  { font-size: 16px; line-height: 1.85; opacity: .85; }
.df-project__services-label { font-family: var(--df-font-display); font-size: 20px; font-weight: 400; margin-top: 40px; margin-bottom: 12px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.15); }
.df-project__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.df-project__tags span { background: rgba(255,255,255,.1); border-radius: 100px; padding: 8px 18px; font-size: 13px; }
.df-project__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* Status badge */
.df-project__status {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 10px; border-radius: 100px; font-size: 13px;
}
.df-status--ongoing  { background: rgba(255,201,94,.16); }
.df-status--complete { background: rgba(94,255,150,.16); }
.df-project__status-dot { width: 10px; height: 10px; border-radius: 50%; }
.df-status--ongoing  .df-project__status-dot { background: #ffc95e; }
.df-status--complete .df-project__status-dot { background: #5eff96; }

/* Filters */
.df-gallery__filters { position: relative; z-index: 1; display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; max-width: var(--df-max); margin-left: auto; margin-right: auto; }
.df-filter-btn {
    padding: 10px 22px; border-radius: 100px; background: rgba(255,255,255,.1);
    border: none; color: #fff; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .2s;
}
.df-filter-btn.is-active, .df-filter-btn:hover { background: rgba(255,255,255,.2); }

/* Grid */
.df-gallery__grid {
    position: relative; z-index: 1; display: grid;
    grid-template-columns: repeat(2, 1fr); gap: 20px;
    max-width: var(--df-max); margin: 0 auto;
}
.df-project-card { background: var(--df-card-bg); backdrop-filter: blur(25px); border-radius: 30px; overflow: hidden; }
.df-project-card__media { position: relative; height: 380px; overflow: hidden; }
.df-project-card__media img { width: 100%; height: 100%; object-fit: cover; }
.df-project-card__media .df-project__status { position: absolute; top: 20px; right: 20px; }
.df-project-card__info { padding: 28px 28px 24px; }
.df-project-card__info h4 { font-family: var(--df-font-display); font-size: 22px; font-weight: 500; }

.df-gallery__load-more { text-align: center; margin-top: 40px; position: relative; z-index: 1; }

/* ─── FAQs ─────────────────────────────────────────────────────────────────── */
.df-faqs {
    position: relative; padding: 100px var(--df-pad) 80px; overflow: hidden;
}
.df-faqs__bg-text {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    font-family: var(--df-font-display); font-size: clamp(160px,15vw,300px); font-weight: 700;
    color: rgba(255,255,255,.04); white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.df-faqs__header { position: relative; z-index: 1; text-align: center; margin-bottom: 56px; }
.df-faqs__header h2 { font-family: var(--df-font-display); font-size: clamp(26px,3vw,45px); font-weight: 400; line-height: 1.2; max-width: 760px; margin: 0 auto; }

.df-faq-list { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.df-faq-item { background: var(--df-card-bg); backdrop-filter: blur(25px); border-radius: 20px; overflow: hidden; }
.df-faq-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px; background: none; border: none; color: #fff; cursor: pointer;
    font-family: var(--df-font-body); font-size: 18px; line-height: 1.5; text-align: left; gap: 16px;
}
.df-faq-icon { font-size: 36px; font-weight: 300; flex-shrink: 0; line-height: 1; color: rgba(255,255,255,.7); }
.df-faq-answer { overflow: hidden; }
.df-faq-answer[hidden] { display: none; }
.df-faq-answer-inner { padding: 0 28px 24px; font-size: 16px; line-height: 1.85; opacity: .85; }

/* ─── Testimonials ─────────────────────────────────────────────────────────── */
.df-testimonials {
    position: relative; padding: 100px var(--df-pad) 80px; overflow: hidden;
}
.df-testimonials__glow {
    position: absolute; right: -15%; top: 10%; width: 1300px; height: 1300px;
    background: radial-gradient(circle, rgba(25,25,27,0) 0%, rgba(106,106,255,.08) 40%, transparent 65%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.df-testimonials__header { position: relative; z-index: 1; margin-bottom: 48px; max-width: var(--df-max); margin-left: auto; margin-right: auto; }
.df-testimonials__header h2 { font-family: var(--df-font-display); font-size: clamp(28px,3vw,45px); font-weight: 400; line-height: 1.2; max-width: 560px; margin-bottom: 16px; }
.df-testimonials__header p { font-size: 16px; opacity: .85; max-width: 380px; }
.df-testimonials__btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.df-testimonials__grid {
    position: relative; z-index: 1; display: flex; gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; max-width: var(--df-max); margin: 0 auto; padding-bottom: 4px;
}
.df-testimonials__grid::-webkit-scrollbar { display: none; }
.df-testimonial-card {
    flex: 0 0 475px; scroll-snap-align: start;
    background: rgba(255,255,255,.09); backdrop-filter: blur(25px);
    border-radius: 30px; padding: 32px; display: flex; flex-direction: column; gap: 20px;
}
.df-testimonial-card__meta { display: flex; align-items: center; gap: 16px; }
.df-testimonial-card__photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: rgba(255,255,255,.1); }
.df-testimonial-card__photo--placeholder { background: rgba(255,255,255,.1); }
.df-testimonial-card__meta strong { display: block; font-size: 15px; }
.df-testimonial-card__meta span   { display: block; font-size: 13px; opacity: .6; }
.df-testimonial-card__stars { margin-left: auto; color: #ffc95e; font-size: 14px; }
.df-testimonial-card p { font-size: 15px; line-height: 1.75; opacity: .85; flex: 1; }

/* ─── Contact ──────────────────────────────────────────────────────────────── */
.df-contact {
    position: relative; padding: 100px var(--df-pad) 80px; overflow: hidden;
}
.df-contact__glow {
    position: absolute; left: -15%; top: -10%; width: 1300px; height: 1300px;
    background: radial-gradient(circle, rgba(106,255,220,.1) 0%, transparent 55%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.df-contact__bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: var(--df-font-display); font-size: clamp(160px,15vw,300px); font-weight: 700;
    color: rgba(255,255,255,.03); white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.df-contact__inner {
    position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; max-width: var(--df-max); margin: 0 auto;
    background: rgba(255,255,255,.09); border: 1px solid var(--df-teal); border-radius: 20px;
    padding: 60px;
}
.df-contact__left h2, .df-contact__right h2 { font-family: var(--df-font-display); font-size: 35px; font-weight: 400; margin-bottom: 12px; }
.df-contact__left  > p, .df-contact__right > p { font-size: 16px; opacity: .85; line-height: 1.7; margin-bottom: 28px; }

/* Form */
.df-contact__form input[type=text],
.df-contact__form input[type=email],
.df-contact__form input[type=tel],
.df-contact__form textarea {
    display: block; width: 100%; background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.5); border-radius: 20px;
    padding: 16px 20px; color: #fff; font-family: var(--df-font-body); font-size: 16px;
    margin-bottom: 14px; outline: none; transition: border-color .2s;
}
.df-contact__form input::placeholder,
.df-contact__form textarea::placeholder { color: rgba(255,255,255,.55); }
.df-contact__form input:focus,
.df-contact__form textarea:focus { border-color: var(--df-teal); }
.df-contact__form textarea { resize: vertical; min-height: 120px; }
.df-form-honeypot { display: none; }

/* Services checkboxes */
.df-form__services { margin-bottom: 14px; }
.df-form__services-label { display: block; font-size: 16px; margin-bottom: 10px; opacity: .8; }
.df-form__services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.df-form__service-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 15px; }
.df-form__service-check input { width: 16px; height: 16px; accent-color: var(--df-teal); }

.df-contact__success { display: flex; align-items: center; gap: 12px; color: var(--df-teal); font-size: 18px; font-weight: 600; padding: 24px 0; }

/* Right column info */
.df-contact__info-item {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,.1); border-radius: 100px;
    padding: 12px 20px; margin-bottom: 12px; transition: background .2s;
}
.df-contact__info-item:hover { background: rgba(255,255,255,.15); }
.df-contact__info-icon {
    width: 63px; height: 63px; border-radius: 50%; background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.df-contact__info-item small { display: block; font-size: 12px; opacity: .7; font-weight: 500; }
.df-contact__info-item strong { display: block; font-family: var(--df-font-display); font-size: 22px; font-weight: 300; }
.df-contact__divider { height: 1px; background: rgba(255,255,255,.15); margin: 24px 0; }
.df-contact__socials { display: flex; gap: 12px; }
.df-contact__socials a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .2s; }
.df-contact__socials a:hover { background: rgba(255,255,255,.2); }
.df-contact__socials svg { width: 18px; height: 18px; }

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.df-footer {
    background: rgba(255,255,255,.11); border-radius: 40px;
    margin: 20px 30px 20px; overflow: hidden;
}
.df-footer__inner {
    display: grid; grid-template-columns: 200px 1fr; gap: 60px; align-items: start;
    padding: 52px 56px 40px;
}
.df-footer__brand { display: flex; flex-direction: column; }
.df-footer__logo { height: 40px; width: auto; }
.df-footer__logo-text { font-family: var(--df-font-display); font-weight: 700; font-size: 18px; letter-spacing: .05em; }
.df-footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.df-footer__col h4 { font-family: var(--df-font-display); font-size: 20px; font-weight: 500; margin-bottom: 16px; }
.df-footer__col a { display: block; font-size: 15px; opacity: .75; margin-bottom: 10px; transition: opacity .2s; }
.df-footer__col a:hover { opacity: 1; }
.df-footer__mailing-row { display: flex; background: rgba(255,255,255,.11); border: 1px solid #fff; border-radius: 100px; overflow: hidden; }
.df-footer__mailing-row input { flex: 1; background: none; border: none; padding: 12px 20px; color: rgba(255,255,255,.5); font-size: 15px; outline: none; }
.df-footer__mailing-row button { width: 44px; height: 44px; background: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 2px; flex-shrink: 0; }
.df-footer__socials { display: flex; gap: 10px; margin-top: 16px; }
.df-footer__socials a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .2s; }
.df-footer__socials a:hover { background: rgba(255,255,255,.2); }
.df-footer__socials svg { width: 16px; height: 16px; }
.df-footer__bar { padding: 20px 56px; border-top: 1px solid rgba(255,255,255,.1); }
.df-footer__bar p { font-size: 15px; font-weight: 600; }
.df-footer__bar a { text-decoration: underline; opacity: .8; }

/* ─── Standalone page ──────────────────────────────────────────────────────── */
.df-page__content { min-height: 60vh; padding: 120px var(--df-pad) 80px; position: relative; overflow: hidden; }
.df-page__glow {
    position: absolute; left: -20%; top: -20%; width: 1100px; height: 1100px;
    background: radial-gradient(circle, rgba(106,255,220,.08) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none;
}
.df-page__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.df-page__inner h1, .df-page__inner h2 { font-family: var(--df-font-display); font-size: clamp(24px,3vw,40px); font-weight: 400; margin-bottom: 20px; }
.df-page__inner h3 { font-family: var(--df-font-display); font-size: 22px; font-weight: 500; margin: 28px 0 12px; }
.df-page__inner p { font-size: 16px; line-height: 1.85; opacity: .85; margin-bottom: 18px; }
.df-page__inner ul, .df-page__inner ol { padding-left: 24px; margin-bottom: 18px; }
.df-page__inner li { font-size: 16px; line-height: 1.75; opacity: .85; margin-bottom: 8px; }

/* Confirmation */
.df-confirmation { text-align: center; padding: 40px 0; }
.df-confirmation__icon { margin: 0 auto 32px; width: 60px; height: 60px; }
.df-confirmation h1 { font-family: var(--df-font-display); font-size: clamp(28px,4vw,48px); font-weight: 400; margin-bottom: 20px; }
.df-confirmation p { font-size: 18px; opacity: .8; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }

/* ─── Video lightbox ───────────────────────────────────────────────────────── */
.df-video-lightbox {
    position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.88);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.df-video-lightbox.is-open { opacity: 1; pointer-events: auto; }
.df-video-lightbox__close {
    position: absolute; top: 24px; right: 28px; background: none; border: none;
    color: #fff; font-size: 40px; cursor: pointer; line-height: 1; z-index: 1;
    opacity: .7; transition: opacity .2s;
}
.df-video-lightbox__close:hover { opacity: 1; }
.df-video-lightbox__inner { width: min(900px, 94vw); aspect-ratio: 16/9; }
.df-video-lightbox__inner iframe { width: 100%; height: 100%; border-radius: 12px; }

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .df-site { --df-pad: 40px; }
    .df-about__inner { grid-template-columns: 1fr; gap: 40px; }
    .df-contact__inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .df-project-featured { grid-template-columns: 1fr; }
    .df-project-featured__media { min-height: 340px; }
    .df-gallery__grid { grid-template-columns: 1fr; }
    .df-footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .df-footer__cols { grid-template-columns: repeat(2,1fr); }
    .df-stats { grid-template-columns: repeat(2,1fr); }
    .df-stats__item + .df-stats__item { border-left: none; }
    .df-stats__item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
    .df-stats__item:nth-child(1), .df-stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 768px) {
    .df-site { --df-pad: 20px; }
    .df-nav__links { display: none; }
    .df-nav__cta    { display: none; }
    .df-nav__burger { display: flex; }
    .df-hero { padding: 120px 24px 80px; }
    .df-hero__play { bottom: 30px; right: 20px; }
    .df-service-card { flex: 0 0 300px; }
    .df-testimonial-card { flex: 0 0 300px; }
    .df-contact__inner { padding: 28px 24px; }
    .df-form__services-grid { grid-template-columns: repeat(2,1fr); }
    .df-footer { margin: 10px; border-radius: 20px; }
    .df-footer__cols { grid-template-columns: 1fr; }
    .df-footer__bar { padding: 16px 28px; }
    .df-stats { padding: 0 20px; grid-template-columns: repeat(2,1fr); }
}
