/* ===================================
   MARTLAND PREMIUM WEBSITE STYLES
   ULTRA LUXURY EDITION
   ================================ */

/* CSS Variables */
:root {
    /* Colors - Premium FMCG Palette */
    --color-primary: #0a0a0a;
    --color-secondary: #1a1a1a;
    --color-accent: #EA580C;
    --color-accent-dark: #C2410C;
    --color-accent-light: #FB923C;
    --color-gold: #D4AF37;
    --color-text: #0a0a0a;
    --color-text-light: #525252;
    --color-text-lighter: #737373;
    --color-bg: #ffffff;
    --color-bg-alt: #fafafa;
    --color-bg-dark: #0a0a0a;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 10rem;
    
    /* Shadows - Ultra Premium */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 32px 80px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(234, 88, 12, 0.15);
    
    /* Transitions */
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-serif);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--color-text-light);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.125rem 3rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    border-radius: 50px;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    transition: var(--transition-slow);
    z-index: -1;
    opacity: 0;
    border-radius: 50px;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
    z-index: -1;
    border-radius: 50px;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    backdrop-filter: blur(10px);
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
    border-radius: 50px;
}

.btn-light:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-light:hover::before {
    opacity: 1;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent) 30%, 
        var(--color-accent) 70%, 
        transparent 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.nav.scrolled::after {
    opacity: 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: relative;
    z-index: 1;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition-base);
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(234, 88, 12, 0.3));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.nav-links a:not(.nav-cta)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::before,
.nav-links a:not(.nav-cta).active::before {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    transition: var(--transition-slow);
    z-index: -1;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(234, 88, 12, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    filter: blur(80px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite reverse;
    filter: blur(100px);
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    33% { 
        transform: translate(30px, -50px) scale(1.1) rotate(5deg); 
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.95) rotate(-5deg); 
    }
}

.hero-content {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 950px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.hero-title-main {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleAppear 1.2s ease-out;
}

@keyframes titleAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.1em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.02em;
    }
}

.hero-title-sub {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-serif);
    font-style: italic;
    position: relative;
    animation: subtitleSlide 1.2s ease-out 0.2s both;
}

@keyframes subtitleSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title-sub::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent));
}

.hero-description {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 750px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 5rem;
    padding-top: 2.5rem;
    border-top: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, transparent, var(--color-accent), transparent) border-box;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transition: var(--transition-slow);
    border-radius: 2px;
}

.stat-item:hover::after {
    width: 100%;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-lighter);
    animation: fadeIn 1.5s ease-out 1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    animation: scrollLineMove 2.5s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes scrollLineMove {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(-20px); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-content {
    position: sticky;
    top: 120px;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.about-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-item strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.location-item span {
    font-size: 1rem;
    color: var(--color-text-light);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    perspective: 1000px;
}

.visual-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem;
    border: 1px solid var(--color-border-light);
    transition: var(--transition-slow);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-md);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-slow);
    border-radius: 0;
}

.visual-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-slow);
    border-radius: 0;
}

.visual-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}

.visual-card:hover::before {
    opacity: 1;
}

.visual-card:hover::after {
    opacity: 0.3;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.visual-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.visual-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transition: var(--transition-slow);
    border-radius: 2px;
}

.visual-card:hover h3::after {
    width: 100%;
}

.visual-card p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.card-2 {
    margin-left: 4rem;
    animation-delay: 0.2s;
}

.card-3 {
    margin-left: 2rem;
    animation-delay: 0.4s;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content {
        position: static;
    }
    
    .card-2, .card-3 {
        margin-left: 0;
    }
}

/* Services Section */
.services {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-bg-dark);
    color: white;
}

.services .section-title,
.services .section-subtitle {
    color: white;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold), var(--color-accent-light));
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    left: 100%;
    transition: var(--transition-slow);
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(234, 88, 12, 0.2);
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-slow);
}

.service-card:hover .service-number {
    opacity: 0.7;
    transform: scale(1.1);
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transition: var(--transition-slow);
    border-radius: 2px;
}

.service-card:hover .service-title::after {
    width: 100%;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 2rem;
    transition: var(--transition-base);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.service-features li:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 2.5rem;
}

.service-features li:hover::before {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Help Section */
.help-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-bg-alt);
}

.help-content {
    max-width: 1000px;
    margin: 0 auto;
}

.help-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.help-text p:first-of-type::first-letter {
    font-size: 4rem;
    font-family: var(--font-serif);
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    color: var(--color-accent);
}

/* CTA Highlights */
.cta-highlights {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-bg);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.highlight-card {
    padding: 5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    border-radius: 0;
    transition: var(--transition-slow);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: var(--transition-slow);
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
    border-radius: 50%;
}

.highlight-brand::before {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
}

.highlight-export::before {
    background: 
        linear-gradient(135deg, rgba(234, 88, 12, 0.95) 0%, rgba(194, 65, 12, 0.95) 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.highlight-packaging::before {
    background: 
        linear-gradient(135deg, rgba(5, 150, 105, 0.95) 0%, rgba(4, 120, 87, 0.95) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.highlight-delivery::before {
    background: 
        linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(109, 40, 217, 0.95) 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.highlight-card:hover::before {
    transform: scale(1.05);
}

.highlight-card:hover::after {
    width: 500px;
    height: 500px;
}

.highlight-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-premium);
}

.highlight-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 500px;
}

.highlight-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.highlight-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        min-height: 300px;
        padding: 3rem;
    }
}

/* Marketplace Section */
.marketplace-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #000000 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.marketplace-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.marketplace-header .section-title {
    color: white;
}

.marketplace-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

.marketplace-logos {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
}

.marketplace-logos::before,
.marketplace-logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marketplace-logos::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, transparent 100%);
}

.marketplace-logos::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-bg-dark) 0%, transparent 100%);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
}

.marketplace-logo {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.marketplace-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.marketplace-logo:hover {
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.3);
}

.marketplace-logo:hover::before {
    opacity: 0.3;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Technology Section */
.technology {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-bg-alt);
}

.tech-header {
    text-align: center;
    margin-bottom: 5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tech-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3.5rem;
    border: 1px solid var(--color-border-light);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold) 50%, var(--color-accent-light) 100%);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    border-radius: 50%;
}

.tech-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 
        var(--shadow-premium),
        0 0 60px rgba(234, 88, 12, 0.15);
    border-color: transparent;
}

.tech-card:hover::before {
    opacity: 0.5;
}

.tech-card:hover::after {
    opacity: 1;
    transform: translate(20px, -20px);
}

.tech-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    color: var(--color-accent);
    filter: drop-shadow(0 4px 12px rgba(234, 88, 12, 0.2));
    transition: var(--transition-slow);
    position: relative;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotateY(10deg);
    color: var(--color-accent-dark);
}

.tech-card h3 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.tech-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transition: var(--transition-slow);
    border-radius: 2px;
}

.tech-card:hover h3::after {
    width: 100%;
}

.tech-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.trust-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-logos {
    overflow: hidden;
}

.trust-track {
    display: flex;
    gap: 3rem;
    animation: scroll 40s linear infinite;
}

.trust-logo-item {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-lighter);
    padding: 1rem 2rem;
    border: 2px solid var(--color-border);
    transition: var(--transition-base);
}

.trust-logo-item:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, #ffffff 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3.5rem;
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 15rem;
    font-family: var(--font-serif);
    color: rgba(234, 88, 12, 0.03);
    line-height: 1;
    z-index: 0;
    transition: var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}

.testimonial-card:hover::before {
    opacity: 0.3;
}

.testimonial-card:hover::after {
    color: rgba(234, 88, 12, 0.08);
    transform: scale(1.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-accent);
    font-family: var(--font-serif);
    line-height: 0;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, var(--color-accent), var(--color-gold)) border-box;
    position: relative;
    z-index: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.author-info strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.author-info span {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-alt) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(234, 88, 12, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid var(--color-border-light);
    padding: 2.5rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent), var(--color-gold));
    transition: var(--transition-slow);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.faq-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    padding-right: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: var(--transition-base);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 0;
    padding-top: 1rem;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xxl) 0;
    background: 
        linear-gradient(135deg, var(--color-bg-alt) 0%, #ffffff 100%),
        radial-gradient(ellipse at bottom left, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
    transition: var(--transition-base);
}

.contact-detail-item:hover {
    border-color: var(--color-gold);
    padding-left: 2rem;
}

.contact-detail-item strong {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-detail-item a {
    font-size: 1.25rem;
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition-base);
}

.contact-detail-item a:hover {
    color: var(--color-accent-dark);
    transform: translateX(5px);
}

.contact-detail-item span {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 4.5rem;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold), var(--color-accent-light));
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.contact-form-wrapper:hover::before {
    opacity: 0.2;
}

.contact-form {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.form-group label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    border: 2px solid var(--color-border);
    background-color: white;
    color: var(--color-text);
    transition: var(--transition-base);
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-lighter);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info {
        position: static;
    }
    
    .contact-form-wrapper {
        padding: 3rem;
    }
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Premium Loading State */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading {
    background: linear-gradient(90deg, 
        var(--color-bg-alt) 0%, 
        #ffffff 50%, 
        var(--color-bg-alt) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-gold) 100%);
    border-radius: 6px;
    border: 2px solid var(--color-bg-alt);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
}

/* Selection Color */
::selection {
    background-color: var(--color-accent);
    color: white;
}

::-moz-selection {
    background-color: var(--color-accent);
    color: white;
}

/* Print Styles */
@media print {
    .nav,
    .scroll-indicator,
    .btn,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --color-border: #000000;
        --shadow-md: none;
        --shadow-lg: none;
        --shadow-xl: none;
    }
    
    .btn {
        border: 3px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-line {
        animation: none;
    }
    
    .logo-track,
    .trust-track {
        animation: none;
    }
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --color-bg: #0a0a0a;
        --color-bg-alt: #1a1a1a;
        --color-text: #fafafa;
        --color-text-light: #d4d4d4;
        --color-border: #2d2d2d;
    }
    */
}

/* Ultra-wide screen optimization */
@media (min-width: 2000px) {
    .container {
        max-width: 1600px;
    }
    
    .section-title {
        font-size: 5rem;
    }
    
    .hero-title-main {
        font-size: 7rem;
    }
}

/* Tablet landscape optimization */
@media (min-width: 768px) and (max-width: 1024px) {
    .services-grid,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    :root {
        --spacing-xxl: 5rem;
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-title-sub::before {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 1.25rem;
    }
    
    .nav-links a:not(.nav-cta) {
        font-size: 0.8rem;
    }
    
    .nav-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .service-card,
    .tech-card,
    .testimonial-card {
        padding: 2.5rem 2rem;
    }
    
    .marketplace-logo {
        font-size: 1.75rem;
        padding: 1.25rem 2.5rem;
    }
    
    .highlight-card {
        padding: 3.5rem 2rem;
        min-height: 350px;
    }
    
    .highlight-content h3 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}
