/* Trimlii Platform - Brand Optimized Styles */

/* Accessibility: Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8a6d46;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

/* CSS Variables for Brand Consistency */
:root {
    /* Brand Colors */
    --brand-primary: #8a6d46;
    --brand-secondary: #d4b896;
    --brand-accent: #a67f5a; /* Darker for better contrast */
    --brand-light-gold: #a67f5a;
    --brand-dark: #231C18;
    --brand-medium-dark: #2a201c;
    --brand-light-bg: #F7F7F7;
    --brand-warm-bg: #f3efeb;
    
    /* Text Colors */
    --text-primary: #626262;
    --text-dark: #5a4e47;
    --text-heading: #2a201c;
    --text-light: #666;
    --text-muted: #757575; /* Better contrast than #999 */
    
    /* State Colors */
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --success-bg: #d4edda;
    --success-text: #155724;
    
    /* Typography */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.7;
    
    /* Spacing System */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
    
    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-subtle: 0 4px 15px rgba(42, 32, 28, 0.08);
    --shadow-medium: 0 8px 25px rgba(138, 109, 70, 0.3);
    --shadow-heavy: 0 35px 80px rgba(42, 32, 28, 0.15);
    --shadow-focus: 0 0 0 3px rgba(138, 109, 70, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-primary), var(--brand-light-gold));
    --gradient-secondary: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    --gradient-accent: linear-gradient(135deg, var(--brand-accent), var(--brand-secondary));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--brand-warm-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-heading);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 25px;
}

h3 {
    font-size: clamp(24px, 3.5vw, 32px);
    margin-bottom: 20px;
}

h4 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-relaxed);
}

/* Links */
a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-light-gold);
}

/* Buttons */
.btn, .button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn:hover, .button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: var(--gradient-accent);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: white;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-lg) 0;
}

/* Card Components */
.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(138, 109, 70, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Form Elements */
input, textarea, select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-focus);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--brand-primary); }
.text-secondary { color: var(--brand-secondary); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }

.bg-primary { background-color: var(--brand-primary); }
.bg-secondary { background-color: var(--brand-secondary); }
.bg-light { background-color: var(--brand-light-bg); }
.bg-warm { background-color: var(--brand-warm-bg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }

/* Responsive Utilities */
/* COMPONENTS */

/* Hero Section - Editorial Vogue Style */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f3 50%, #ede7df 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 109, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 184, 150, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--brand-accent);
    border-radius: 50%;
    border: 3px solid #f8f6f3;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-headline .highlight {
    font-style: italic;
    font-weight: 400;
    color: var(--brand-primary);
    position: relative;
}

.hero-headline .highlight svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
}

.hero-headline .accent {
    color: var(--brand-primary);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
    font-weight: 300;
}

.hero-description strong {
    color: var(--brand-primary);
    font-weight: 500;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--brand-primary);
    margin-bottom: 45px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--brand-primary);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--brand-primary);
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    background: transparent;
    color: var(--brand-primary);
}

.hero-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-accent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-device {
    position: relative;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(42, 32, 28, 0.15);
    overflow: hidden;
    transform: rotate(-5deg);
}

.hero-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-floating-badge {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: 300;
    box-shadow: 0 20px 40px rgba(138, 109, 70, 0.3);
    transform: rotate(12deg);
    font-family: 'Playfair Display', serif;
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: -30px;
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(42, 32, 28, 0.1);
    border: 1px solid rgba(138, 109, 70, 0.1);
}

.hero-stats-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.hero-stats-value {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-primary);
}

/* Services Section - Tom Ford Bold Style */
.services-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 109, 70, 0.1), transparent);
    z-index: 1;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.services-header {
    margin-bottom: 80px;
}

.services-badge-line {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.services-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8a6d46;
    margin-right: 30px;
}

.services-accent-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #8a6d46, transparent);
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin: 0 0 30px;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-block {
    background: #1a1a1a;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-block:hover {
    border-color: #8a6d46;
    transform: scale(1.02);
}

.service-block:hover .service-overlay {
    opacity: 1;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 109, 70, 0.1), rgba(212, 184, 150, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-block-content {
    padding: 60px;
    position: relative;
    z-index: 2;
}

.service-block-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a6d46, #d4b896);
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0a0a0a;
    stroke-width: 2;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(138, 109, 70, 0.5);
    line-height: 1;
}

.service-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.service-block-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px;
}

.service-link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a6d46;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #d4b896;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-masonry {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: var(--spacing-md) 0;
    }
    
    h1 {
        margin-bottom: 20px;
    }
    
    h2 {
        margin-bottom: 18px;
    }
    
    /* Hero Section Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 60px 20px;
    }
    
    /* Services Section Mobile */
    .services-title {
        font-size: 40px;
    }
    
    .service-block-content {
        padding: 40px 30px;
    }
    
    .services-container {
        padding: 0 30px;
    }
}

/* Pricing Section - Hermès Elegance Style */
.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-grid {
    display: grid;
    gap: 40px;
    justify-content: center;
}

.pricing-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        max-width: 800px !important;
    }
    
    .pricing-card[style*="transform: scale"] {
        transform: scale(1) !important;
    }
    
    .pricing-card-featured {
        transform: none !important;
        box-shadow: 0 15px 30px rgba(138, 109, 70, 0.3) !important;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 60px 20px;
    }
    
    .pricing-header h2 {
        font-size: 42px !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    .pricing-card {
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .pricing-card-featured {
        transform: none !important;
        margin: 20px 0 !important;
    }
    
    .pricing-card-content {
        padding: 40px 30px !important;
    }
    
    .pricing-card div[style*="padding"] {
        padding: 40px 30px !important;
    }
}

/* Portfolio Section - Celine Editorial Style */
.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
    z-index: 2;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-item {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .portfolio-container div[style*="grid-template-columns: 1.2fr 0.8fr"] {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
    
    .portfolio-header div[style*="text-align: left"] {
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .portfolio-header h2 {
        font-size: 52px !important;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        padding: 80px 20px;
    }
    
    .portfolio-header h2 {
        font-size: 42px !important;
        line-height: 1.1 !important;
    }
    
    .portfolio-item div[style*="padding"] {
        padding: 50px 30px 40px !important;
    }
    
    .portfolio-container div[style*="gap: 60px"] {
        gap: 40px !important;
    }
    
    .portfolio-container div[style*="margin-bottom: 100px"] {
        margin-bottom: 60px !important;
    }
}

/* HEADER STYLES - The Maison — Architectural Precision */

.header {
    background: white;
    position: relative;
    box-shadow: 0 1px 0 rgba(138, 109, 70, 0.08);
}

.header-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--brand-primary) 20%, 
        var(--brand-accent) 40%, 
        var(--brand-secondary) 60%, 
        var(--brand-primary) 80%, 
        transparent 100%
    );
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 32px 40px;
    max-width: 1400px;
    gap: 60px;
}

.header-logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.header-logo-line {
    width: 3px;
    height: 44px;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-accent));
    margin-right: 16px;
    border-radius: 1px;
}

.header-logo-main {
    font-size: 26px;
    font-weight: 300;
    color: var(--text-heading);
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 3px;
}

.header-logo-sub {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--brand-primary);
    text-transform: uppercase;
}

.header-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    justify-items: center;
    position: relative;
}

.header-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 16px 24px;
    position: relative;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(138, 109, 70, 0.1);
}

.header-nav a.active {
    color: var(--brand-primary);
    background: rgba(138, 109, 70, 0.03);
}

.header-nav a:not(.active) {
    color: var(--text-dark);
}

.header-nav a:hover {
    color: var(--brand-primary);
    background: rgba(138, 109, 70, 0.02);
}

.header-contact {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-align: right;
    line-height: 1.6;
}

.header-contact-main {
    margin-bottom: 4px;
}

.header-contact-action {
    color: var(--brand-primary);
    font-weight: 500;
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--brand-primary);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(138, 109, 70, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(138, 109, 70, 0.15);
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu-nav {
    padding: 20px;
}

.mobile-menu-nav a {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(138, 109, 70, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.mobile-menu-nav a.active,
.mobile-menu-nav a:hover {
    color: var(--brand-primary);
}

.mobile-menu-nav a:last-child {
    border-bottom: none;
}

.mobile-menu-contact {
    background: var(--brand-warm-bg);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(138, 109, 70, 0.08);
}

.mobile-menu-contact-main {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.mobile-menu-contact-action {
    color: var(--brand-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr auto;
        gap: 20px;
        padding: 20px;
    }
    
    .header-nav,
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-logo-main {
        font-size: 20px;
    }
    
    .header-logo-sub {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .header-logo-line {
        width: 2px;
        height: 36px;
        margin-right: 12px;
    }
}

.header-contact-action:hover {
    text-decoration: underline;
}

/* Header Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr auto !important;
        gap: 20px !important;
        padding: 20px !important;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
}

/* PRICING SECTION STYLES - Hermès Elegance */

.pricing-section {
    padding: 120px 0;
    background: #f8f6f3;
    position: relative;
}

.pricing-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="%23d4b896" fill-opacity="0.05" cx="30" cy="30" r="2"/></g></svg>');
}

.pricing-badge-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-badge-line-left {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a6d46);
}

.pricing-badge-line-right {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #8a6d46, transparent);
}

.pricing-badge {
    background: #8a6d46;
    color: white;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 20px;
}

.pricing-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #2a201c;
    margin: 0 0 30px;
    line-height: 1.1;
    text-align: center;
}

.pricing-header h2 .light {
    font-weight: 300;
    font-style: italic;
}

.pricing-header h2 .accent {
    display: block;
    color: #8a6d46;
}

.pricing-header p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card-basic {
    background: white;
    border: 1px solid rgba(138, 109, 70, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card-featured {
    background: white;
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(138, 109, 70, 0.3);
    border: 3px solid #8a6d46;
}

.pricing-card-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 184, 150, 0.1), transparent);
}

.pricing-featured-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #8a6d46;
    color: white;
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.pricing-card-featured-border {
    border: 3px solid #8a6d46;
}

.pricing-card-content-featured {
    padding-top: 70px;
}

.pricing-card-content {
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-featured .pricing-card-content {
    padding: 70px 40px 50px;
}

.pricing-card-icon-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-card-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #8a6d46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #8a6d46;
    margin: 0 auto 30px;
}

.pricing-card-featured .pricing-card-icon {
    border-color: #8a6d46;
    color: #8a6d46;
}

.pricing-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2a201c;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.3;
}

.pricing-card-featured .pricing-card-title {
    color: #2a201c;
}

.pricing-card-price-wrapper {
    text-align: center;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(138, 109, 70, 0.2);
    border-bottom: 1px solid rgba(138, 109, 70, 0.2);
}

.pricing-card-featured .pricing-card-price-wrapper {
    border-top-color: rgba(138, 109, 70, 0.2);
    border-bottom-color: rgba(138, 109, 70, 0.2);
}

.pricing-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8a6d46;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-card-featured .pricing-card-price {
    color: #8a6d46;
}

.pricing-card-price-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card-featured .pricing-card-price-label {
    color: #666;
}

.pricing-card-starting-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pricing-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 40px;
}

.pricing-card-featured .pricing-card-description {
    color: #666;
}

.pricing-card-button {
    display: block;
    background: #8a6d46;
    color: white;
    text-align: center;
    padding: 16px 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #8a6d46;
}

.pricing-card-featured .pricing-card-button {
    background: #8a6d46;
    color: white;
    border-color: #8a6d46;
}

/* PORTFOLIO SECTION STYLES - Celine Editorial */

.portfolio-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.portfolio-grid-line-1 {
    position: absolute;
    top: 0;
    left: 33.33%;
    width: 1px;
    height: 100%;
    background: rgba(138, 109, 70, 0.1);
}

.portfolio-grid-line-2 {
    position: absolute;
    top: 0;
    left: 66.66%;
    width: 1px;
    height: 100%;
    background: rgba(138, 109, 70, 0.1);
}

.portfolio-grid-line-horizontal {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(138, 109, 70, 0.08);
}

.portfolio-header-content {
    text-align: left;
    margin-bottom: 100px;
    max-width: 600px;
}

.portfolio-header-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6b5439;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.portfolio-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 400;
    color: #2a201c;
    margin: 0 0 35px;
    line-height: 0.95;
    letter-spacing: -1px;
}

.portfolio-header h2 .italic {
    font-style: italic;
    font-weight: 300;
}

.portfolio-header h2 .accent {
    color: #8a6d46;
    font-weight: 600;
}

.portfolio-header-divider {
    width: 150px;
    height: 3px;
    background: #8a6d46;
    margin: 35px 0;
}

.portfolio-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-bottom: 100px;
}

.portfolio-item-featured {
    background: white;
    border: 1px solid rgba(138, 109, 70, 0.15);
    position: relative;
    box-shadow: 0 20px 40px rgba(138, 109, 70, 0.1);
}

.portfolio-item-featured-badge {
    position: absolute;
    top: -25px;
    left: 50px;
    background: #8a6d46;
    color: white;
    padding: 12px 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-item-content {
    padding: 80px 60px 60px;
}

.portfolio-mockup {
    position: relative;
    margin-bottom: 50px;
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(138, 109, 70, 0.1);
}

.portfolio-browser-chrome {
    background: #f0f0f0;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid rgba(138, 109, 70, 0.1);
}

.portfolio-browser-dots {
    display: flex;
    gap: 10px;
}

.portfolio-browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8a6d46;
}

.portfolio-browser-dot-1 {
    opacity: 0.4;
}

.portfolio-browser-dot-2 {
    opacity: 0.7;
}

.portfolio-browser-dot-3 {
    opacity: 1;
}

.portfolio-screenshot-link {
    display: block;
    position: relative;
}

.portfolio-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.portfolio-mobile-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 90px;
    background: white;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(138, 109, 70, 0.15);
    border: 1px solid rgba(138, 109, 70, 0.1);
}

.portfolio-mobile-screenshot {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.portfolio-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #2a201c;
    margin: 0 0 20px;
    line-height: 1.2;
}

.portfolio-item-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0 0 40px;
    line-height: 1.8;
}

.portfolio-item-link {
    display: inline-block;
    background: transparent;
    color: #8a6d46;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #8a6d46;
    transition: all 0.3s ease;
}

.portfolio-sidebar {
    display: grid;
    gap: 60px;
}

.portfolio-item-secondary {
    background: #8a6d46;
    position: relative;
    box-shadow: 0 15px 35px rgba(138, 109, 70, 0.25);
}

.portfolio-item-tertiary {
    background: white;
    border: 1px solid rgba(138, 109, 70, 0.15);
    position: relative;
    box-shadow: 0 10px 25px rgba(138, 109, 70, 0.08);
}

.portfolio-item-secondary-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: #d4b896;
    color: #2a201c;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-item-tertiary-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: #2a201c;
    color: white;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-item-secondary-content {
    padding: 60px 40px 45px;
}

.portfolio-item-tertiary-content {
    padding: 60px 40px 45px;
}

.portfolio-mockup-secondary {
    position: relative;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-mockup-tertiary {
    position: relative;
    margin-bottom: 35px;
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(138, 109, 70, 0.1);
}

.portfolio-browser-chrome-secondary {
    background: rgba(255, 255, 255, 0.1);
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-browser-chrome-tertiary {
    background: #f0f0f0;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid rgba(138, 109, 70, 0.1);
}

.portfolio-browser-dots-secondary {
    display: flex;
    gap: 8px;
}

.portfolio-browser-dots-tertiary {
    display: flex;
    gap: 8px;
}

.portfolio-browser-dot-secondary {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.portfolio-browser-dot-secondary-2 {
    background: rgba(255, 255, 255, 0.6);
}

.portfolio-browser-dot-secondary-3 {
    background: rgba(255, 255, 255, 0.4);
}

.portfolio-browser-dot-tertiary {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8a6d46;
    opacity: 0.4;
}

.portfolio-browser-dot-tertiary-2 {
    opacity: 0.7;
}

.portfolio-browser-dot-tertiary-3 {
    opacity: 1;
}

.portfolio-mobile-overlay-secondary {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-mobile-overlay-tertiary {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 60px;
    background: white;
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 6px 15px rgba(138, 109, 70, 0.15);
    border: 1px solid rgba(138, 109, 70, 0.1);
}

.portfolio-mobile-screenshot-small {
    width: 100%;
    height: auto;
    border-radius: 3px;
    display: block;
}

.portfolio-item-title-secondary {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin: 0 0 15px;
    line-height: 1.3;
}

.portfolio-item-title-tertiary {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #2a201c;
    margin: 0 0 15px;
    line-height: 1.3;
}

.portfolio-item-description-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 25px;
    line-height: 1.6;
}

.portfolio-item-description-tertiary {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0 0 25px;
    line-height: 1.6;
}

.portfolio-item-link-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
}

.portfolio-item-link-tertiary {
    display: inline-block;
    background: transparent;
    color: #8a6d46;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #8a6d46;
    transition: all 0.3s ease;
}

/* CTA SECTION STYLES - Chanel No. 5 with Hermès Background */

.cta-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #ede7df 50%, #e6ddd4 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-pattern-subtle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(138, 109, 70, 0.02) 25%, transparent 25%), 
                      linear-gradient(-45deg, rgba(138, 109, 70, 0.02) 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, rgba(138, 109, 70, 0.02) 75%), 
                      linear-gradient(-45deg, transparent 75%, rgba(138, 109, 70, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: 1;
}

.cta-frame-circle {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(138, 109, 70, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-frame-square {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(138, 109, 70, 0.2);
    transform: rotate(45deg);
    z-index: 1;
}

.cta-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(138, 109, 70, 0.03) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(138, 109, 70, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}

.cta-accent-line-vertical {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, #8a6d46, transparent);
    z-index: 1;
}

.cta-accent-line-horizontal {
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a6d46, transparent);
    z-index: 1;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: white;
    color: #2a201c;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-transform: uppercase;
    border: 1px solid rgba(138, 109, 70, 0.15);
    box-shadow: 0 8px 30px rgba(138, 109, 70, 0.08);
    position: relative;
}

.cta-badge-corner-tl {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #8a6d46;
    border-left: 2px solid #8a6d46;
}

.cta-badge-corner-tr {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #8a6d46;
    border-right: 2px solid #8a6d46;
}

.cta-badge-corner-bl {
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #8a6d46;
    border-left: 2px solid #8a6d46;
}

.cta-badge-corner-br {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #8a6d46;
    border-right: 2px solid #8a6d46;
}

.cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 300;
    color: #2a201c;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-headline-number {
    display: block;
    font-size: 42px;
    color: #8a6d46;
    margin-bottom: 15px;
    font-weight: 500;
}

.cta-headline-accent {
    color: #8a6d46;
    font-weight: 700;
    font-style: italic;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #6b5c54;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-quote-wrapper {
    margin: 50px 0;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-quote-mark-open {
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 60px;
    color: rgba(138, 109, 70, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.cta-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #8a6d46;
    font-size: 20px;
    font-weight: 500;
    padding: 0 30px;
    line-height: 1.6;
    margin: 0;
}

.cta-quote-mark-close {
    position: absolute;
    bottom: -30px;
    right: 15px;
    font-size: 60px;
    color: rgba(138, 109, 70, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transform: rotate(180deg);
}

.cta-button {
    display: inline-block;
    background: #2a201c;
    color: white;
    padding: 22px 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.cta-button-text {
    position: relative;
    z-index: 2;
}

.cta-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s;
    transform: skewX(-30deg);
}

.cta-quality-wrapper {
    margin-top: 80px;
}

.cta-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-separator-line {
    width: 50px;
    height: 1px;
    background: #8a6d46;
}

.cta-separator-dot {
    width: 8px;
    height: 8px;
    background: #8a6d46;
    border-radius: 50%;
    margin: 0 20px;
}

.cta-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.cta-quality-item {
    text-align: center;
}

.cta-quality-value {
    font-size: 24px;
    font-weight: 300;
    color: #8a6d46;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.cta-quality-label {
    font-size: 12px;
    color: #6b5c54;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ SECTION STYLES - Burberry Heritage */

.faq-section {
    padding: 100px 0;
    background: #f8f6f3;
    position: relative;
}

.faq-pattern-plaid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(138, 109, 70, 0.02) 0px, rgba(138, 109, 70, 0.02) 1px, transparent 1px, transparent 40px), 
                repeating-linear-gradient(90deg, rgba(138, 109, 70, 0.02) 0px, rgba(138, 109, 70, 0.02) 1px, transparent 1px, transparent 40px);
    z-index: 1;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-badge {
    display: inline-block;
    background: #8a6d46;
    color: white;
    padding: 8px 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2a201c;
    margin: 0;
    letter-spacing: -1px;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 25px auto 0;
    max-width: 600px;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(138, 109, 70, 0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 109, 70, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 109, 70, 0.15);
}

.faq-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #8a6d46, #d4b896);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-content {
    padding: 50px 45px 40px;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2a201c;
    margin: 0 0 20px;
    line-height: 1.3;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.faq-cta-wrapper {
    text-align: center;
    margin-top: 70px;
    background: white;
    padding: 50px;
    border: 1px solid rgba(138, 109, 70, 0.15);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(138, 109, 70, 0.1);
}

.faq-cta-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: #8a6d46;
    margin-bottom: 25px;
}

.faq-cta-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.faq-cta-button {
    display: inline-block;
    background: #8a6d46;
    color: white;
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.faq-cta-button:hover {
    background: #a67f5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 109, 70, 0.3);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-content {
        padding: 40px 30px 35px;
    }
    
    .faq-question {
        font-size: 20px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
    
    .faq-cta-wrapper {
        padding: 40px 30px;
    }
}

/* FOOTER STYLES - Celine Minimal */

.footer {
    background: white;
    color: #2a201c;
    padding: 80px 0;
    border-top: 1px solid rgba(138, 109, 70, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 20px;
    color: #2a201c;
}

.footer-brand-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 30px;
    max-width: 280px;
}

.footer-email {
    color: #8a6d46;
    text-decoration: none;
    font-size: 14px;
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2a201c;
    margin: 0 0 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8a6d46;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a201c;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: #8a6d46;
    color: #8a6d46;
}

.footer-bottom {
    border-top: 1px solid rgba(138, 109, 70, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.footer-tagline {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* DIGITAL PULSE CHECK STYLES */

/* Hero Section - Celine Minimal */
.digital-pulse-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 50%, #ede7df 100%);
    position: relative;
    overflow: hidden;
}

.digital-pulse-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 600px 400px at 80% 20%, rgba(138, 109, 70, 0.03), transparent);
    z-index: 1;
}

.digital-pulse-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.digital-pulse-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.digital-pulse-hero-content {
    padding-right: 40px;
}

.digital-pulse-hero-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #8a6d46;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.digital-pulse-hero-divider {
    width: 60px;
    height: 2px;
    background: #8a6d46;
    margin: 0 0 40px;
}

.digital-pulse-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 300;
    color: #2a201c;
    margin: 0 0 30px;
    line-height: 1;
    letter-spacing: -2px;
}

.digital-pulse-hero-title-accent {
    color: #8a6d46;
    font-weight: 400;
}

.digital-pulse-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 0 40px;
}

.digital-pulse-hero-cta {
    display: inline-block;
    background: #2a201c;
    color: white;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.digital-pulse-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-pulse-hero-chart {
    position: relative;
    background: white;
    border: 1px solid rgba(138, 109, 70, 0.1);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(138, 109, 70, 0.08);
    padding: 40px;
    width: 500px;
}

.digital-pulse-hero-chart-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2a201c;
    margin-bottom: 30px;
    text-align: center;
}

.digital-pulse-hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.digital-pulse-hero-metric {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(138, 109, 70, 0.1);
    border-radius: 8px;
}

.digital-pulse-hero-metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #8a6d46;
    margin-bottom: 10px;
}

.digital-pulse-hero-metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Section - Celine Minimal */
.digital-pulse-form {
    padding: 100px 0;
    background: white;
    position: relative;
}

.digital-pulse-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.digital-pulse-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.digital-pulse-form-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #8a6d46;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.digital-pulse-form-divider {
    width: 60px;
    height: 2px;
    background: #8a6d46;
    margin: 0 auto 40px;
}

.digital-pulse-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    color: #2a201c;
    margin: 0 0 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.digital-pulse-form-title-accent {
    color: #8a6d46;
    font-weight: 400;
}

.digital-pulse-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

.digital-pulse-form-wrapper {
    background: white;
    border: 1px solid rgba(138, 109, 70, 0.1);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(138, 109, 70, 0.08);
    padding: 60px 50px;
}

.digital-pulse-form-grid {
    display: grid;
    gap: 25px;
}

.digital-pulse-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.digital-pulse-form-group {
    display: flex;
    flex-direction: column;
}

.digital-pulse-form-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2a201c;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.digital-pulse-form-input,
.digital-pulse-form-select,
.digital-pulse-form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(138, 109, 70, 0.2);
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
    color: #2a201c;
}

.digital-pulse-form-input:focus,
.digital-pulse-form-select:focus,
.digital-pulse-form-textarea:focus {
    outline: none;
    border-color: #8a6d46;
    box-shadow: 0 0 0 3px rgba(138, 109, 70, 0.1);
}

.digital-pulse-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.digital-pulse-form-submit {
    width: 100%;
    background: #2a201c;
    color: white;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.digital-pulse-form-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 32, 28, 0.3);
}

/* Services Section - Bottega Veneta Craft */
.digital-pulse-services {
    padding: 110px 0;
    background: #f8f6f3;
    position: relative;
    overflow: hidden;
}

.digital-pulse-services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(138, 109, 70, 0.02) 49%, rgba(138, 109, 70, 0.02) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(138, 109, 70, 0.02) 49%, rgba(138, 109, 70, 0.02) 51%, transparent 52%);
    background-size: 20px 20px;
}

.digital-pulse-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.digital-pulse-services-header {
    text-align: center;
    margin-bottom: 70px;
}

.digital-pulse-services-badge {
    display: inline-block;
    border: 2px solid #8a6d46;
    padding: 10px 25px;
    margin-bottom: 35px;
    position: relative;
    background: white;
}

.digital-pulse-services-badge::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: #8a6d46;
}

.digital-pulse-services-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #8a6d46;
}

.digital-pulse-services-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a6d46;
}

.digital-pulse-services-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #2a201c;
    margin: 0 0 25px;
    line-height: 1.15;
}

.digital-pulse-services-title-accent {
    color: #8a6d46;
}

.digital-pulse-services-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.digital-pulse-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.digital-pulse-service-card {
    background: white;
    border: 3px solid #8a6d46;
    position: relative;
    box-shadow: 0 20px 50px rgba(138, 109, 70, 0.15);
    padding: 50px 40px;
}

.digital-pulse-service-card-accents::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 25px;
    width: 40px;
    height: 6px;
    background: #8a6d46;
    z-index: 3;
}

.digital-pulse-service-card-accents::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 25px;
    width: 40px;
    height: 6px;
    background: #8a6d46;
    z-index: 3;
}

.digital-pulse-service-card-side-accent-left {
    position: absolute;
    top: 25px;
    left: -3px;
    width: 6px;
    height: 40px;
    background: #8a6d46;
    z-index: 3;
}

.digital-pulse-service-card-side-accent-right {
    position: absolute;
    bottom: 25px;
    right: -3px;
    width: 6px;
    height: 40px;
    background: #8a6d46;
    z-index: 3;
}

.digital-pulse-service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 109, 70, 0.05) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(138, 109, 70, 0.05) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(138, 109, 70, 0.05) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(138, 109, 70, 0.05) 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
    z-index: 2;
}

.digital-pulse-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a6d46, #d4b896);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: white;
}

.digital-pulse-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2a201c;
    margin: 0 0 20px;
    line-height: 1.3;
}

.digital-pulse-service-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Social Proof Section - Hermès Precision */
.digital-pulse-social {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8dcc6 50%, #d4c4a8 100%);
    position: relative;
}

.digital-pulse-social-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30px 30px, rgba(212, 184, 150, 0.03) 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: 1;
}

.digital-pulse-social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.digital-pulse-social-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.digital-pulse-social-badge-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.digital-pulse-social-badge-line-left {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a6d46);
}

.digital-pulse-social-badge {
    background: rgba(138, 109, 70, 0.1);
    color: #8a6d46;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 15px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(138, 109, 70, 0.2);
}

.digital-pulse-social-badge-line-right {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #8a6d46, transparent);
}

.digital-pulse-social-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2a201c;
    margin: 0 0 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.digital-pulse-social-title-accent {
    color: #8a6d46;
}

.digital-pulse-social-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.digital-pulse-social-divider-line {
    width: 30px;
    height: 2px;
    background: #8a6d46;
}

.digital-pulse-social-divider-dot {
    width: 8px;
    height: 8px;
    background: #8a6d46;
    border-radius: 50%;
    margin: 0 15px;
}

.digital-pulse-social-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.digital-pulse-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.digital-pulse-social-image {
    position: relative;
    border: 1px solid rgba(138, 109, 70, 0.15);
    background: white;
    box-shadow: 0 12px 35px rgba(138, 109, 70, 0.08);
}

.digital-pulse-social-image-corners::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    border-top: 2px solid #8a6d46;
    border-left: 2px solid #8a6d46;
    z-index: 3;
}

.digital-pulse-social-image-corners::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid #8a6d46;
    border-right: 2px solid #8a6d46;
    z-index: 3;
}

.digital-pulse-social-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.digital-pulse-social-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 109, 70, 0.1) 0%, transparent 50%);
    z-index: 2;
}

/* PRICING PAGE STYLES */

/* Pricing Hero Section - Celine Minimal */
.pricing-hero {
    padding: 120px 0;
    background: white;
    position: relative;
}

.pricing-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-badge-wrapper {
    text-align: left;
    margin-bottom: 60px;
}

.pricing-hero-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-hero-divider {
    width: 80px;
    height: 2px;
    background: var(--brand-primary);
}

.pricing-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 300;
    color: var(--text-heading);
    margin: 0 0 40px;
    line-height: 1;
    letter-spacing: -2px;
    text-align: left;
}

.pricing-hero-title-accent {
    font-style: italic;
    font-weight: 400;
}

.pricing-hero-tagline {
    margin: 60px 0;
    padding-left: 40px;
    border-left: 3px solid var(--brand-primary);
}

.pricing-hero-tagline p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--brand-primary);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.pricing-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
}

/* Pricing Card Features Lists */
.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-card-features li {
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card-features.featured li {
    color: #666;
}

.pricing-card-features.featured li .checkmark {
    color: var(--brand-primary);
    font-weight: bold;
}

.pricing-card-features.white li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-features.white li .checkmark {
    color: white;
    font-weight: bold;
}

/* Extras & Add-Ons Section - Celine Minimal */
.addons-section {
    padding: 120px 0 140px 0;
    background: white;
    position: relative;
    margin-bottom: 0;
}

.addons-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.addons-content {
    max-width: 1000px;
    margin: 0 auto;
}

.addons-header {
    text-align: left;
    margin-bottom: 80px;
}

.addons-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.addons-divider {
    width: 80px;
    height: 2px;
    background: var(--brand-primary);
    margin-bottom: 40px;
}

.addons-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--text-heading);
    margin: 0 0 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.addons-title-accent {
    font-style: italic;
    font-weight: 400;
}

.addons-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
}

.addons-list {
    display: grid;
    gap: 1px;
    background: rgba(138, 109, 70, 0.1);
}

.addon-item {
    background: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.addon-item.featured {
    background: var(--brand-primary);
    padding: 50px 40px;
}

.addon-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.addon-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(138, 109, 70, 0.2);
}

.addon-number.white {
    color: rgba(255, 255, 255, 0.3);
}

.addon-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-heading);
    margin: 0 0 8px;
}

.addon-details.white h4 {
    color: white;
}

.addon-details p {
    font-family: 'Inter', sans-serif;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.addon-details.white p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px;
}

.addon-features {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.addon-features strong {
    color: rgba(255, 255, 255, 0.9);
}

.addon-features em {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Playfair Display', serif;
}

.addon-pricing {
    text-align: right;
    min-width: 120px;
}

.addon-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--brand-primary);
}

.addon-price.white {
    color: white;
}

.addon-price-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.addon-price-label.white {
    color: rgba(255, 255, 255, 0.7);
}

/* Service Features Section - Celine Minimal */
.features-section {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
    border-top: 1px solid rgba(138, 109, 70, 0.1);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8a6d46, transparent);
    opacity: 0.3;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-content {
    max-width: 1000px;
    margin: 0 auto;
}

.features-header {
    text-align: left;
    margin-bottom: 100px;
}

.features-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.features-divider {
    width: 80px;
    height: 2px;
    background: var(--brand-primary);
    margin-bottom: 40px;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--text-heading);
    margin: 0 0 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.features-title-accent {
    font-style: italic;
    font-weight: 400;
}

.features-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
}

.features-list {
    display: grid;
    gap: 1px;
    background: rgba(138, 109, 70, 0.1);
}

.feature-item {
    background: white;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 300;
    color: rgba(138, 109, 70, 0.2);
}

.feature-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--text-heading);
    margin: 0 0 15px;
}

.feature-details p {
    font-family: 'Inter', sans-serif;
    color: #666;
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
}

/* Bottom CTA Section - Celine Minimal */
.bottom-cta-section {
    padding: 120px 0;
    background: white;
    position: relative;
    border-top: 1px solid rgba(138, 109, 70, 0.1);
}

.bottom-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.bottom-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta-header {
    text-align: left;
    margin-bottom: 80px;
}

.bottom-cta-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bottom-cta-divider {
    width: 80px;
    height: 2px;
    background: var(--brand-primary);
    margin-bottom: 40px;
}

.bottom-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--text-heading);
    margin: 0 0 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.bottom-cta-title-accent {
    font-style: italic;
    font-weight: 400;
}

.bottom-cta-tagline {
    margin: 40px 0;
    padding-left: 40px;
    border-left: 3px solid var(--brand-primary);
}

.bottom-cta-tagline p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--brand-primary);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.bottom-cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    margin: 0 0 50px;
    max-width: 600px;
}

.bottom-cta-button {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    border: none;
}

.bottom-cta-quality {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(138, 109, 70, 0.1);
}

.bottom-cta-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.bottom-cta-quality-item {
    text-align: center;
}

.bottom-cta-quality-value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.bottom-cta-quality-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile Responsive Styles for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 42px;
    }
    
    .addons-title,
    .features-title {
        font-size: 42px;
    }
    
    .bottom-cta-title {
        font-size: 36px;
    }
    
    .addon-item,
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .addon-content,
    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .addon-pricing,
    .bottom-cta-quality-grid {
        margin-top: 20px;
    }
    
    .bottom-cta-quality-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .digital-pulse-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .digital-pulse-hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .digital-pulse-hero-title {
        font-size: 42px;
    }
    
    .digital-pulse-hero-chart {
        width: 100%;
        max-width: 400px;
    }
    
    .digital-pulse-form-row {
        grid-template-columns: 1fr;
    }
    
    .digital-pulse-form-wrapper {
        padding: 40px 30px;
    }
    
    .digital-pulse-services-grid {
        grid-template-columns: 1fr;
    }
    
    .digital-pulse-social-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}