/* ===========================
   DIGITAL LANDSCAPE PAGE
   Clean, Modern, Ready.so-inspired
   =========================== */

/* CSS VARIABLES - Aligned with Zephoric Brand */
:root {
    /* Zephoric Brand Colors */
    --gold: #956d46;
    --white: #FFFFFF;
    --black: #000000;
    --marble-white: #FAFAFA;
    --light-gray: #F8F8F8;
    --zephoric-navy: #1B365D;
    --zephoric-dark: #001524;

    /* Extended Palette */
    --off-white: #FAFAFA;
    --medium-gray: #E0E0E0;
    --text-dark: #000000;
    --text-medium: #4A4A4A;
    --text-light: #888888;

    /* Typography - Zephoric Fonts */
    --font-serif: 'EB Garamond', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;

    /* Spacing - Tightened for better balance */
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4.5rem;
    --spacing-xxl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius - Elegant subtle curves */
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* FADE-IN ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Video layers are always visible - no fade-in animation */
.video-layer {
    opacity: 1;
}

/* Stagger animation delays for child elements */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 9999;
    padding: var(--spacing-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--zephoric-navy);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--zephoric-navy);
}

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 0.5rem auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-brand-name {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    text-transform: none;
    letter-spacing: 0.08em;
}

.hero-brand-name .trademark {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 400;
}

.hero-brand-subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: 0.03em;
}

.hero-badge-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: 0.05em;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

/* Hero-specific button styles */
.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary-large:hover,
.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

/* ABOUT SECTION */
.about-section {
    padding: 0;
    background: var(--marble-white);
    position: relative;
    overflow: hidden;
}

.about-split-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.about-text {
    width: 60%;
    padding: var(--spacing-xl) 5%;
    z-index: 2;
    position: relative;
    background: var(--marble-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    width: 40%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, var(--marble-white) 0%, rgba(250, 250, 250, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: var(--spacing-md);
}

/* VIDEO SHOWCASE SECTION */
.video-showcase-section {
    padding: var(--spacing-xl) 0;
    background: var(--zephoric-dark);
    width: 100%;
    position: relative;
}

.video-visual {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Video Stack Container - Full Width */
.video-stack {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 800px;
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* All video layers same size - portrait layout for webpage scroll */
.video-layer {
    position: absolute;
    width: 503px;
    height: 618px;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 3px solid #956d46;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.video-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #e9ecef 0%, #eff1f3 50%, #f8f9fa 100%);
}

/* Rear Left - no rotation, positioned left */
.video-rear-left {
    left: 60px;
    top: 50%;
    transform: translate3d(0, -50%, 0) scale(0.88);
    z-index: 1;
    opacity: 0.85;
}

/* Rear Right - no rotation, positioned right */
.video-rear-right {
    right: 60px;
    top: 50%;
    transform: translate3d(0, -50%, 0) scale(0.88);
    z-index: 2;
    opacity: 0.85;
}

/* Front Center - straight, elevated, centered, 20% larger */
.video-front-center {
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale(1.2);
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Hover effects - subtle lift */
.video-front-center:hover {
    transform: translate3d(-50%, -50%, 0) scale(1.2) translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.06);
}

.video-rear-left:hover {
    transform: translate3d(-80px, -50%, 0) scale(0.88);
    opacity: 1;
}

.video-rear-right:hover {
    transform: translate3d(80px, -50%, 0) scale(0.88);
    opacity: 1;
}

/* CAROUSEL SECTION */
.carousel-section {
    padding: var(--spacing-lg) 0 0 0;
    background: var(--white);
    overflow: hidden;
}

.carousel-section .container {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s ease;
    padding: 20px 0 40px 0;
}

.carousel-card {
    min-width: 350px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    cursor: grab;
    user-select: none;
}

.carousel-card:active {
    cursor: grabbing;
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.carousel-card.highlighted {
    background: linear-gradient(135deg, var(--zephoric-navy) 0%, rgba(27, 54, 93, 0.9) 50%, var(--coastal-blue) 100%);
    color: var(--white);
}

.carousel-card.highlighted .card-metric,
.carousel-card.highlighted .card-title {
    color: var(--white);
}

.carousel-card.highlighted .card-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.card-title {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.card-metric {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.carousel-card.highlighted .card-description {
    color: rgba(255, 255, 255, 0.9);
}

.card-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-medium);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--zephoric-navy);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--zephoric-navy);
    color: var(--white);
    border-color: var(--zephoric-navy);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: var(--medium-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* SERVICES INTRO */
.services-intro {
    padding: 20px 0 var(--spacing-xl) 0;
    text-align: center;
    background: var(--white);
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-sm);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
}

/* SERVICE SECTIONS */
.service-section {
    padding: var(--spacing-lg) 0;
    /* Background is always visible - no opacity animation on section itself */
    opacity: 1;
    transform: none;
}

/* Alternating luxury tech backgrounds */
/* +6 offset for 6 new Digital Landscape sections added before services */
/* Service 1 is at position 12 - ODD service, DARK */
.service-section:nth-of-type(12) {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
}

/* Service 2 is at position 13 - EVEN service, WHITE */
.service-section:nth-of-type(13) {
    background: var(--white);
    color: var(--text-dark);
}

/* Service 3 is at position 14 - ODD service, DARK */
.service-section:nth-of-type(14) {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
}

/* Service 4 is at position 15 - EVEN service, WHITE */
.service-section:nth-of-type(15) {
    background: var(--white);
    color: var(--text-dark);
}

/* Service 5 is at position 16 - ODD service, DARK */
.service-section:nth-of-type(16) {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
}

/* Service 6 is at position 17 - EVEN service, WHITE */
.service-section:nth-of-type(17) {
    background: var(--white);
    color: var(--text-dark);
}

/* Service 7 is at position 18 - ODD service, DARK */
.service-section:nth-of-type(18) {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
}

/* Service 8 is at position 19 - EVEN service, WHITE */
.service-section:nth-of-type(19) {
    background: var(--white);
    color: var(--text-dark);
}

/* Service 9 is at position 20 - ODD service, DARK */
.service-section:nth-of-type(20) {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
}

/* Service 10 is at position 21 - EVEN service, WHITE */
.service-section:nth-of-type(21) {
    background: var(--white);
    color: var(--text-dark);
}

/* Dark service sections - Gold headlines, white content (+6 offset) */
.service-section:nth-of-type(12) .service-title,
.service-section:nth-of-type(14) .service-title,
.service-section:nth-of-type(16) .service-title,
.service-section:nth-of-type(18) .service-title,
.service-section:nth-of-type(20) .service-title {
    color: var(--gold);
}

.service-section:nth-of-type(12) .service-description,
.service-section:nth-of-type(14) .service-description,
.service-section:nth-of-type(16) .service-description,
.service-section:nth-of-type(18) .service-description,
.service-section:nth-of-type(20) .service-description,
.service-section:nth-of-type(12) .feature-item h4,
.service-section:nth-of-type(14) .feature-item h4,
.service-section:nth-of-type(16) .feature-item h4,
.service-section:nth-of-type(18) .feature-item h4,
.service-section:nth-of-type(20) .feature-item h4,
.service-section:nth-of-type(12) .feature-item p,
.service-section:nth-of-type(14) .feature-item p,
.service-section:nth-of-type(16) .feature-item p,
.service-section:nth-of-type(18) .feature-item p,
.service-section:nth-of-type(20) .feature-item p {
    color: var(--white);
}

.service-section:nth-of-type(12) .service-link,
.service-section:nth-of-type(14) .service-link,
.service-section:nth-of-type(16) .service-link,
.service-section:nth-of-type(18) .service-link,
.service-section:nth-of-type(20) .service-link {
    color: var(--gold);
}

.service-section:nth-of-type(12) .feature-item,
.service-section:nth-of-type(14) .feature-item,
.service-section:nth-of-type(16) .feature-item,
.service-section:nth-of-type(18) .feature-item,
.service-section:nth-of-type(20) .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Service section 10 full-width luxury list styling (+6 offset) */
.service-section:nth-of-type(21) h3 {
    color: var(--gold) !important;
}

.service-section:nth-of-type(21) ul,
.service-section:nth-of-type(21) li {
    color: var(--zephoric-navy) !important;
}

.service-section:nth-of-type(21) li span {
    color: var(--gold) !important;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: stretch; /* Changed from center to stretch for height matching */
    position: relative;
    z-index: 2;
}

.service-right .service-container {
    grid-template-columns: 1fr 1fr;
}

/* Service Content - Ensure proper display */
.service-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(149, 109, 70, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
}

.service-title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.service-features {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-item {
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.feature-item:hover {
    background: var(--off-white);
    transform: translateX(8px);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    margin-bottom: 0.4rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.feature-price {
    display: inline-block;
    font-weight: 500;
    color: var(--gold);
    font-size: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: var(--gold);
    font-size: 1.05rem;
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* SERVICE VISUALS */
.service-visual {
    position: relative;
    display: flex;
    flex-direction: column;
}

.visual-placeholder {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    min-height: 400px;
    height: 100%; /* Stretch to match content height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent child elements from overflowing */
}

.visual-placeholder > * {
    max-width: 100%;
    max-height: 100%;
}

/* Branding Visual */
.brand-mockup {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-display {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.color-palette {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Website Visual */
.website-mockup {
    width: 100%;
    max-width: 100%;
}

.mockup-browser {
    width: 100%;
    max-width: 100%;
}

.website-mockup .browser-content {
    min-height: 300px;
    width: 100%;
    max-width: 100%;
}

.web-hero {
    background: linear-gradient(135deg, var(--zephoric-navy) 0%, rgba(27, 54, 93, 0.85) 50%, var(--coastal-blue) 100%);
    height: 150px;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
}

.web-content {
    padding: var(--spacing-sm);
}

.web-text {
    background: var(--light-gray);
    height: 20px;
    border-radius: 4px;
    margin-bottom: var(--spacing-xs);
}

.web-text.short {
    width: 70%;
}

/* Social Visual */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 100%;
}

.social-post {
    background: var(--white);
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Photography Visual */
.photo-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 400px;
}

.photo-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.photo-item.large {
    grid-row: 1 / 3;
}

/* SEO Visual */
.seo-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 100%;
    height: 200px;
    padding: var(--spacing-md);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(149, 109, 70, 0.85) 50%, rgba(149, 109, 70, 0.7) 100%);
    border-radius: 8px 8px 0 0;
    min-height: 40px;
}

/* Booking Visual */
.booking-interface {
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.booking-calendar {
    background: var(--white);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-button {
    background: var(--gold);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    display: inline-block;
}

/* Global Visual */
.globe-visual {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--coastal-blue) 0%, var(--zephoric-navy) 100%);
    border-radius: 50%;
    margin: 0 auto;
}

.globe-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px rgba(149, 109, 70, 0.5);
}

/* Email Visual */
.email-mockup {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.email-header {
    background: var(--zephoric-navy);
    height: 60px;
}

.email-content {
    padding: var(--spacing-md);
}

.email-line {
    background: var(--light-gray);
    height: 12px;
    border-radius: 4px;
    margin-bottom: var(--spacing-xs);
}

.email-line.short {
    width: 60%;
}

/* Reviews Visual */
.review-stars {
    text-align: center;
}

.star-rating {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.rating-number {
    font-size: 3rem;
    font-weight: 500;
    color: var(--zephoric-navy);
}

/* CTA SECTION */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--zephoric-navy) 0%, rgba(27, 54, 93, 0.85) 50%, var(--coastal-blue) 100%);
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-primary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.cta-section .btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* FOOTER */
.footer {
    padding: var(--spacing-lg) 0;
    background: var(--off-white);
    border-top: 1px solid var(--medium-gray);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-brand h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--zephoric-navy);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--zephoric-navy);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .service-right .service-container {
        grid-template-columns: 1fr;
    }

    .service-right .service-visual {
        order: -1;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ZEPHORIC TYPOGRAPHY OVERRIDES */
.hero-title,
.section-title,
.card-title,
.service-title,
.cta-title,
.footer-brand h3 {
    font-family: var(--font-serif) !important;
    font-weight: 500 !important;
}

.nav-logo {
    font-family: var(--font-serif) !important;
    font-size: 1.5rem !important;
    color: var(--gold) !important;
    letter-spacing: 0.05em;
}

.hero-badge {
    background: var(--gold) !important;
    color: var(--black) !important;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Button Refinements - Removed conflicting styles */

/* ===========================
   ELEGANT REFINEMENTS
   Soft edges, gradients, elevated sophistication
   =========================== */

/* Carousel Cards - Elegant Rounded Corners */
.carousel-card {
    border-radius: var(--border-radius-lg) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid rgba(149, 109, 70, 0.1);
}

.carousel-card:hover {
    box-shadow: 0 8px 30px rgba(149, 109, 70, 0.15);
    transform: translateY(-4px);
}

/* Service Cards - Soft Edges */
.service-card {
    border-radius: var(--border-radius) !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.service-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(149, 109, 70, 0.2);
}

/* Video Layers - Elegant Corners */
.video-layer {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Navigation - Subtle Rounded Bottom */
.nav {
    border-bottom: 1px solid rgba(149, 109, 70, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Buttons - Soft Corners for Elegance */
.btn {
    border-radius: var(--border-radius-sm) !important;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.nav-cta {
    border-radius: var(--border-radius-sm) !important;
}

/* Hero Badge - Elegant Pill Shape */
.hero-badge {
    border-radius: 50px !important;
    box-shadow: 0 2px 12px rgba(149, 109, 70, 0.3);
}

/* Card Tags - Soft Pills */
.card-tag {
    border-radius: 50px !important;
    background: linear-gradient(135deg, rgba(149, 109, 70, 0.1) 0%, rgba(149, 109, 70, 0.07) 50%, rgba(149, 109, 70, 0.05) 100%);
    border: 1px solid rgba(149, 109, 70, 0.2);
}

/* Tier Cards - Premium Rounded Look */
.tier-card {
    border-radius: var(--border-radius-lg) !important;
    border: 1px solid rgba(149, 109, 70, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-slow);
}

.tier-card:hover {
    box-shadow: 0 12px 40px rgba(149, 109, 70, 0.12);
    transform: translateY(-6px);
    border-color: var(--gold);
}

/* Featured Tier Highlight */
.tier-featured {
    box-shadow: 0 12px 48px rgba(149, 109, 70, 0.2) !important;
    border: 2px solid var(--gold) !important;
}

/* Contact Form - Elegant Container */
.contact-form,
.contact-container {
    border-radius: var(--border-radius-lg) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Input Fields - Subtle Rounds */
input, textarea, select {
    border-radius: var(--border-radius-sm) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(149, 109, 70, 0.1);
}

/* Stats/Numbers - Gold Gradient Accent */
.card-metric {
    background: linear-gradient(135deg, var(--gold), #b8936d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Containers - Soft Padding with Gradient Background */
.services-section,
.tiers-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--marble-white) 50%, var(--white) 100%);
}

/* Footer - Elegant Top Border with Gradient */
.footer {
    border-top: 1px solid rgba(149, 109, 70, 0.2);
    background: linear-gradient(to bottom, var(--marble-white) 0%, rgba(250, 250, 250, 0.5) 50%, var(--white) 100%);
}

/* Testimonial/Quote Cards */
.testimonial,
.quote-card {
    border-radius: var(--border-radius) !important;
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Image Containers - Soft Overflow */
.image-container,
.video-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

/* Dividers - Subtle Gradient Lines with true fade */
hr, .divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, rgba(149, 109, 70, 0) 0%, rgba(149, 109, 70, 0.15) 25%, rgba(149, 109, 70, 0.3) 50%, rgba(149, 109, 70, 0.15) 75%, rgba(149, 109, 70, 0) 100%);
    margin: var(--spacing-lg) 0;
}

/* Feature Icons/Badges - Circular Elegance */
.feature-icon,
.card-icon {
    border-radius: 50% !important;
    background: linear-gradient(135deg, rgba(149, 109, 70, 0.1) 0%, rgba(149, 109, 70, 0.07) 50%, rgba(149, 109, 70, 0.05) 100%);
    box-shadow: 0 2px 8px rgba(149, 109, 70, 0.15);
}

/* Service Container Backgrounds - Elegant Edge Softening */
.service-container {
    position: relative;
}

/* Carousel Navigation - Softer Circles */
.carousel-nav {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(149, 109, 70, 0.15);
}

.carousel-nav:hover {
    box-shadow: 0 4px 16px rgba(149, 109, 70, 0.2);
}

/* Globe Visual - Softer Radial Gradient */
.globe-visual {
    background: radial-gradient(circle, var(--coastal-blue) 0%, rgba(27, 54, 93, 0.8) 60%, var(--zephoric-navy) 100%);
}

/* Service Number Badge - Elegant Gradient */
.service-number {
    background: linear-gradient(135deg, rgba(149, 109, 70, 0.15) 0%, rgba(149, 109, 70, 0.08) 100%);
    border: 1px solid rgba(149, 109, 70, 0.2);
}

/* Feature Items - Enhanced Gradient Background */
.feature-item {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 248, 248, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(250, 250, 250, 0.9) 100%);
    box-shadow: 0 4px 12px rgba(149, 109, 70, 0.08);
}

/* FAQ SECTION */
.faq-section {
    background: var(--marble-white);
    padding: var(--spacing-lg) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: var(--spacing-md) auto 0 auto;
    column-gap: var(--spacing-xl);
}

.faq-item {
    border-left: 3px solid var(--gold);
    transition: all var(--transition-base);
    cursor: pointer;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    padding: var(--spacing-xs) var(--spacing-sm);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 var(--spacing-sm);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--spacing-xs) var(--spacing-sm) var(--spacing-sm) var(--spacing-sm);
}

/* PORTFOLIO ELIGIBILITY SECTION */
.eligibility-section {
    background: var(--white);
    padding: var(--spacing-lg) 0 0 0;
}

.property-block {
    background: var(--marble-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    border: 2px solid rgba(149, 109, 70, 0.2);
    margin-bottom: var(--spacing-md);
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(149, 109, 70, 0.2);
}

.property-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
}

.remove-property {
    background: transparent;
    border: 1px solid rgba(149, 109, 70, 0.3);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.remove-property:hover {
    background: rgba(149, 109, 70, 0.1);
    border-color: var(--gold);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--zephoric-navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(149, 109, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-sans);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-submit-eligibility {
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1.1rem 2.5rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-submit-eligibility:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===========================
   DIGITAL LANDSCAPE VALUE PROP SECTIONS
   (Slides 2-7 from PPTX)
   =========================== */

.dl-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.dl-dark {
    background: linear-gradient(135deg, #0d1b2a 0%, #0a1628 50%, #001524 100%);
    color: var(--white);
}

.dl-light {
    background: var(--marble-white);
    color: var(--text-dark);
}

.dl-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
}

/* Labels */
.dl-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(149, 109, 70, 0.15);
    border: 1px solid rgba(149, 109, 70, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-sm);
}

.dl-label-dark {
    background: rgba(149, 109, 70, 0.08);
    border-color: rgba(149, 109, 70, 0.2);
}

/* Titles */
.dl-title {
    font-family: var(--font-serif) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500 !important;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.dl-title-dark {
    color: var(--zephoric-navy);
}

/* Lead paragraphs */
.dl-lead {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    text-align: left;
}

.dl-lead-dark {
    color: var(--text-medium);
}

/* Icons */
.dl-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.dl-icon-dark img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(15%) saturate(1250%) hue-rotate(350deg) brightness(90%) contrast(85%);
}

/* Three-column layout (Slide 2) */
.dl-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.dl-col-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dl-col-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Two-column card layout (Slide 3) */
.dl-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    text-align: left;
}

.dl-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    border: 1px solid rgba(149, 109, 70, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.dl-card .dl-icon {
    margin: 0 0 var(--spacing-sm) 0;
}

.dl-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    margin-bottom: var(--spacing-sm);
}

.dl-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dl-card ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dl-card ul li:last-child {
    border-bottom: none;
}

.dl-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Six-item grid (Slides 4 & 6) */
.dl-six-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.dl-grid-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

.dl-grid-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(149, 109, 70, 0.3);
    transform: translateY(-4px);
}

.dl-grid-item h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.dl-grid-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Info grid variant (Slide 6 - no icons) */
.dl-info-grid {
    grid-template-columns: repeat(2, 1fr);
}

.dl-info-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    text-align: left;
    border-left: 3px solid var(--gold);
    transition: all var(--transition-base);
}

.dl-info-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
}

.dl-info-item h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.dl-info-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* Three-step flow (Slide 5) */
.dl-three-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.dl-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(149, 109, 70, 0.12);
    position: relative;
}

.dl-step-number {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(149, 109, 70, 0.08);
    border: 1px solid rgba(149, 109, 70, 0.2);
    width: 36px;
    height: 36px;
    line-height: 34px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
}

.dl-step h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--zephoric-navy);
    margin-bottom: 0.35rem;
}

.dl-step p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.dl-step-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 300;
    align-self: center;
    margin-top: 2rem;
    flex-shrink: 0;
}

/* Comparison table (Slide 7) */
.dl-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    text-align: left;
}

.dl-compare-col {
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
}

.dl-compare-traditional {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dl-compare-zephoric {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 100%);
    border: 1px solid rgba(149, 109, 70, 0.3);
}

.dl-compare-col h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.dl-compare-traditional h3 {
    color: var(--text-medium);
}

.dl-compare-zephoric h3 {
    color: var(--gold);
}

.dl-compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dl-compare-col ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dl-compare-col ul li:last-child {
    border-bottom: none;
}

.dl-compare-traditional ul li {
    color: var(--text-medium);
}

.dl-compare-traditional ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

.dl-compare-zephoric ul li {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.06);
}

.dl-compare-zephoric ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Responsive for DL sections */
@media (max-width: 768px) {
    .dl-three-col,
    .dl-six-grid {
        grid-template-columns: 1fr;
    }

    .dl-two-col,
    .dl-info-grid,
    .dl-comparison {
        grid-template-columns: 1fr;
    }

    .dl-three-steps {
        flex-direction: column;
        align-items: center;
    }

    .dl-step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .dl-step {
        max-width: 100%;
    }
}
