/* Modern CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

:root {
    /* Modern Tech Color Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --max-width: 1400px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    background-attachment: fixed;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ============================================
   GLOBAL TYPOGRAPHY SYSTEM
   ============================================ */

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-top: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h5, h6 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

/* Paragraphs */
p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover,
a:focus {
    color: var(--primary-dark);
}

a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Strong and Emphasis */
strong, b {
    color: var(--text-primary);
    font-weight: 600;
}

em, i {
    font-style: italic;
}

/* Code */
code {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9em;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.2em 0.4em;
    border-radius: var(--radius-sm);
    color: var(--primary);
}

pre {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow-x: auto;
    margin: var(--spacing-lg) 0;
}

pre code {
    background: none;
    padding: 0;
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   GLOBAL LIST SYSTEM
   ============================================ */

ul, ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.8;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
}

li:last-child {
    margin-bottom: 0;
}

/* Unstyled lists (for navigation, etc.) */
ul.unstyled,
ol.unstyled {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* ============================================
   GLOBAL BUTTON SYSTEM
   ============================================ */

button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 44px;
    min-width: 44px;
}

button:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

button:focus,
.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Button Variants */
.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* ============================================
   GLOBAL CONTENT CONTAINER SYSTEM
   ============================================ */

/* Standard content container - 1400px for all pages */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Wide content container - same as standard for consistency */
.content-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Content sections */
.content-section {
    margin-bottom: var(--spacing-2xl);
}

.content-section h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   GLOBAL PAGE TEMPLATE - USE THESE FOR ALL PAGES
   ============================================ */

/* Page hero sections - use .page-hero for all page hero sections */
.page-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-2xl);
}

.page-hero h1 {
    margin-bottom: var(--spacing-md);
}

/* Page intro text - use .page-intro for all intro paragraphs */
.page-intro {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 1400px;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Page content area - use .page-content for all main content sections */
.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.page-content h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: var(--spacing-md);
}

/* Page CTA section - use .page-cta for all call-to-action sections */
.page-cta {
    text-align: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    margin-top: var(--spacing-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta h2 {
    margin-bottom: var(--spacing-md);
}

.page-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   STANDARD PAGE TEMPLATE STRUCTURE
   ============================================ */

/* Standard page wrapper - use this for all new pages */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Standard page structure - apply .page-template class to main or a wrapper */
.page-template {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Hero section within page template */
.page-template .page-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-2xl);
}

.page-template .page-hero h1 {
    margin-bottom: var(--spacing-md);
}

.page-template .page-intro {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 1400px;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Main content area within page template */
.page-template .page-content {
    max-width: 1400px;
    margin: 0 auto;
}

.page-template .page-content h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.page-template .page-content h2:first-of-type {
    margin-top: 0;
}

.page-template .page-content h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

.page-template .page-content p,
.page-template .page-content ul,
.page-template .page-content ol {
    margin-bottom: var(--spacing-md);
}

/* CTA section at bottom of page */
.page-template .page-cta {
    text-align: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    margin-top: var(--spacing-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.page-template .page-cta h2 {
    margin-bottom: var(--spacing-md);
}

.page-template .page-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   GLOBAL CARD SYSTEM
   ============================================ */

.card {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h2,
.card h3 {
    margin-top: 0;
}

.card p:last-child {
    margin-bottom: 0;
}

/* Modern Header with Glassmorphism */
header {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--accent) 80%, transparent);
    opacity: 0.6;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

header nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

header nav > a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

header nav > a.logo-link {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    display: flex;
    align-items: center;
    height: 70px;
}

header nav > a.logo-link .site-logo {
    height: auto;
    max-height: 65px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

header nav > a:hover,
header nav > a:focus {
    transform: scale(1.05);
    text-decoration: none;
}

header nav > a.logo-link:hover,
header nav > a.logo-link:focus {
    transform: none;
}

header nav > a.logo-link:hover .site-logo,
header nav > a.logo-link:focus .site-logo {
    transform: scale(1.05);
    opacity: 0.9;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    align-items: center;
}

header nav ul li a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
}

header nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: transform 0.3s ease;
}

header nav ul li a:hover::before,
header nav ul li a:focus::before {
    transform: translateX(-50%) scaleX(1);
}

header nav ul li a:hover,
header nav ul li a:focus {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

header nav ul li a[aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
}

header nav ul li a[aria-current="page"]::before {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.menu-toggle-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.menu-toggle:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.menu-toggle:hover .menu-toggle-icon span {
    background: linear-gradient(90deg, var(--primary-dark), var(--accent-dark));
}

/* Main Content */
main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-lg);
    animation: fadeIn 0.6s ease-out;
}

/* Hero Section - Full Width */
.hero {
    width: 100%;
    position: relative;
    padding: calc(var(--spacing-2xl) * 2) 0;
    margin-bottom: var(--spacing-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.5) 50%, rgba(255, 255, 255, 0.5) 100%);
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(99, 102, 241, 0.02) 2px,
            rgba(99, 102, 241, 0.02) 4px
        );
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-link-secondary {
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cta-link-secondary:hover,
.cta-link-secondary:focus {
    color: var(--primary);
    transform: translateX(4px);
}

.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.code-bracket {
    position: absolute;
    font-family: 'Space Grotesk', monospace;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 700;
    color: rgba(99, 102, 241, 0.03);
    line-height: 1;
    user-select: none;
    animation: float 6s ease-in-out infinite;
}

.code-bracket:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.code-bracket:nth-child(2) {
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
    transform: rotate(180deg);
}

/* Services Section */
.services {
    margin-bottom: var(--spacing-2xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    padding-left: 0;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    padding-left: 0;
}

/* Services Page Specific Styles */
.services-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-2xl);
}

.services-intro {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 1400px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Services list detailed - specific grid layout for services page */
.services-list-detailed {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.services-list-detailed li {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-list-detailed li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services-list-detailed li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.services-list-detailed li:hover::before {
    transform: scaleX(1);
}

.services-list-detailed .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    color: white;
    flex-shrink: 0;
}

.services-list-detailed .service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.services-list-detailed article h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
    color: var(--primary);
}

.services-list-detailed article h3 a {
    color: var(--primary);
    text-decoration: none;
}

.services-list-detailed article h3 a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.services-list-detailed article p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Services CTA now uses global .page-cta class */

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Individual Service Page Styles */
.service-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-2xl);
}

.service-intro {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 1400px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 500;
}

/* Service content now uses global .page-content class */

/* Service features list - uses global card system */
.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    padding: 0;
}

.service-features li {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.service-features h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.service-features p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Service CTA now uses global .page-cta class */

/* ============================================
   PROCESS TIMELINE / STEP-BY-STEP LAYOUTS
   ============================================ */

.process-timeline {
    position: relative;
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.process-step {
    position: relative;
    padding-left: calc(30px + var(--spacing-xl));
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--primary);
    z-index: 1;
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    flex-shrink: 0;
}

.process-step h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.process-step p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Two-column layout with image */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin: var(--spacing-xl) 0;
}

.content-with-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

/* Benefits grid with checkmarks */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

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

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }
.benefit-item:nth-child(7) { animation-delay: 0.7s; }
.benefit-item:nth-child(8) { animation-delay: 0.8s; }

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    color: white;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.benefit-item:hover .benefit-icon::after {
    opacity: 0.5;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
    position: relative;
    z-index: 1;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.3;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Image section */
.service-image {
    width: 100%;
    margin: var(--spacing-xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Industry Page Styles - now uses global .page-hero and .page-intro */

.industry-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.industry-benefits li {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.industry-benefits h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.industry-benefits p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.industry-item {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.industry-item h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.industry-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Industry CTA now uses global .page-cta class */

/* About Page Styles - now uses global .page-hero, .page-intro, and .page-content */

.about-services {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-lg) 0;
}

.about-services li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-services li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.about-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    padding: 0;
}

.about-benefits li {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.about-benefits h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.about-benefits p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 1rem;
}

/* About CTA now uses global .page-cta class */

/* Blog Page Styles */
/* Blog Page Styles - now uses global .page-hero, .page-intro, and .page-content */
/* .blog-content removed - use .page-content instead */

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

/* Blog post card extends global card with specific hover effect */
.blog-post-card {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.blog-post-card:hover::before {
    transform: scaleX(1);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-post-meta time {
    color: var(--text-secondary);
    font-weight: 500;
}

/* .blog-post-category removed - no longer used */

.blog-post-card h2 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.blog-post-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card h2 a:hover {
    color: var(--primary);
}

.blog-post-excerpt {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Individual Blog Post Styles - 1400px for consistency */
.blog-post {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.blog-post-header {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-2xl) var(--spacing-lg);
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 0.6) 50%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: var(--radius-lg);
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    margin-top: var(--spacing-lg);
    width: calc(100% + (2 * var(--spacing-lg)));
    box-sizing: border-box;
}

.blog-post-header h1 {
    margin-bottom: var(--spacing-md);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-sm);
}

.blog-post-header .blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.blog-post-header .blog-post-meta time {
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-post-author {
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-post-content {
    margin-bottom: var(--spacing-2xl);
}

.blog-post-intro {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: var(--spacing-xl);
}

/* Blog post content uses global content-section heading styles */
.blog-post-content {
    margin-bottom: var(--spacing-2xl);
}

.blog-post-content h2 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.blog-post-content h2:first-of-type {
    margin-top: var(--spacing-xl);
}

.blog-post-content h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

/* Blog post content uses global list and typography styles */
/* No overrides needed - uses global ul, ol, li, strong styles */

.blog-post-footer {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border);
}

.blog-post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.blog-post-nav-prev a,
.blog-post-nav-next a {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-nav-prev a:hover,
.blog-post-nav-next a:hover {
    color: var(--primary-dark);
    transform: translateX(-4px);
}

.blog-post-nav-next a:hover {
    transform: translateX(4px);
}

/* Contact Page Styles - now uses global .page-hero, .page-intro, and .page-content */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-info h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    margin-bottom: var(--spacing-xl);
}

.contact-details p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-details a {
    color: var(--primary);
    font-weight: 500;
}

.contact-note {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
}

.contact-note h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.contact-note p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.required {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    min-height: 1.25rem;
}

.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-group button[type="submit"] {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.form-group button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.services-list li {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services-list li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.services-list li:hover::before {
    transform: scaleX(1);
}

.services-list h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.services-list p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.cta-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.cta-link:hover::after {
    transform: translateX(4px);
}

.cta-link:hover {
    color: var(--primary-dark);
}

/* About Section */
.about {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.about > * {
    position: relative;
    z-index: 1;
}

.about h2 {
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    flex-shrink: 0;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    display: block;
    background: white;
    /* Blend white background with subtle filter */
    filter: contrast(1.1) brightness(0.95) saturate(1.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, filter 0.4s ease;
    position: relative;
    z-index: 10;
}

/* Decorative gradient frame behind image */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.98);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover::before {
    opacity: 0.8;
    transform: scale(1);
}

.about-image-wrapper:hover::after {
    opacity: 0.6;
}

.about-image-wrapper:hover .about-image {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18), 0 6px 20px rgba(0, 0, 0, 0.12);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

/* Clients Section */
.clients {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.clients h2 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.clients > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.client-item {
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.client-logo {
    width: 100%;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.client-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.client-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
    padding: var(--spacing-lg) var(--spacing-lg);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.client-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta h2,
.cta p {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta h2 {
    background: none;
    -webkit-text-fill-color: white;
}

/* CTA Button - extends global button with special effects */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before,
.cta-button:focus::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    color: var(--primary-dark);
}

.cta-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-xl);
    align-items: start;
}

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

.footer-business-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin: 0;
}

.footer-address {
    font-style: normal;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.footer-phone {
    margin: 0;
}

.footer-phone a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-phone a:hover,
.footer-phone a:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-content > nav {
    flex: 0 0 auto;
    margin: 0;
}

.footer-copyright {
    grid-column: 1 / -1;
    margin: var(--spacing-xl) 0 0 0;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}

.footer-nav {
    display: block;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav li {
    display: inline-block;
    list-style: none;
    margin: 0;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--primary);
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
    z-index: 10000;
    padding: var(--spacing-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cookie-banner-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    flex: 1;
    min-width: 250px;
}

.cookie-banner-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-button-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cookie-button-primary:hover,
.cookie-button-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-button-secondary {
    background: transparent;
    color: var(--text-secondary);
}

.cookie-button-secondary:hover,
.cookie-button-secondary:focus {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--text-primary);
}

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

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Responsive Design */
/* Large screens (1400px and up) */
@media (min-width: 1400px) {
    :root {
        --max-width: 1400px;
    }
}

/* Tablets and small desktops (1024px - 1399px) */
@media (max-width: 1399px) {
    main {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .services-grid,
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    header nav ul {
        gap: var(--spacing-md);
    }
}

/* Mobile landscape and small tablets (481px - 767px) */
@media (max-width: 767px) {
    :root {
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    header nav {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    header nav > a.logo-link .site-logo {
        max-height: 50px;
    }

    header nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh; /* Use dynamic viewport height for mobile */
        background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--spacing-xl) + 60px) var(--spacing-lg) var(--spacing-lg);
        gap: var(--spacing-xs);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        list-style: none;
    }

    header nav ul.menu-open {
        right: 0;
    }

    header nav ul::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        opacity: 0.15;
    }
    
    header nav ul::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
        pointer-events: none;
        z-index: -1;
    }

    header nav ul li {
        width: 100%;
        margin: 0;
    }

    header nav ul li a {
        display: block;
        width: 100%;
        padding: var(--spacing-md);
        border-radius: var(--radius-md);
        font-size: 1.125rem;
        transition: all 0.3s ease;
    }

    header nav ul li a::before {
        display: none;
    }

    header nav ul li a:hover,
    header nav ul li a:focus {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary);
        transform: translateX(4px);
    }

    /* Overlay when menu is open */
    body.menu-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    /* Prevent body scroll when menu is open */
    body.menu-active {
        overflow: hidden;
    }

    .hero {
        padding: var(--spacing-2xl) 0;
        margin-top: 0;
    }

    .cookie-banner {
        padding: var(--spacing-md);
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }

    .cookie-banner-content p {
        min-width: 100%;
        margin-bottom: var(--spacing-sm);
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-button {
        flex: 1;
        min-width: 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-link-secondary {
        text-align: center;
        justify-content: center;
    }

    .code-bracket {
        font-size: clamp(6rem, 15vw, 10rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

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

    .services-list-detailed {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin: var(--spacing-xl) 0;
        padding: 0;
        width: 100%;
    }

    .services-list-detailed li {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        padding-left: calc(20px + var(--spacing-lg));
    }

    .process-step::before {
        left: 10px;
        width: 18px;
        height: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .benefit-item {
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .benefit-content h3 {
        font-size: 1.125rem;
    }

    .benefit-content p {
        font-size: 0.9375rem;
    }

    main {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .about,
    .cta {
        padding: var(--spacing-lg);
    }

    .about {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .about h2 {
        margin-bottom: var(--spacing-xl);
        text-align: left;
        display: block;
        width: 100%;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        align-items: start;
    }

    .about-image-wrapper {
        max-width: 200px;
        width: 100%;
        order: -1;
        margin: var(--spacing-md) 0 0 0;
        justify-self: start;
    }

    .about-text {
        text-align: left;
        width: 100%;
    }

    .clients {
        padding: var(--spacing-lg);
    }

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

    .client-item {
        padding: 0;
        font-size: 1rem;
    }

    h2::after {
        width: 40px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact-form-wrapper,
    .contact-info {
        padding: var(--spacing-lg);
    }

    .blog-posts {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .blog-post-card {
        padding: var(--spacing-lg);
    }


    .blog-post {
        padding: 0 var(--spacing-md);
    }

    .blog-post-header {
        position: relative;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        margin-top: var(--spacing-md);
        padding: var(--spacing-xl) var(--spacing-md);
        text-align: center;
        box-sizing: border-box;
        z-index: 0;
    }

    .blog-post-header h1 {
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        max-width: 100%;
        text-align: center;
    }

    .blog-post-header .blog-post-meta {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    footer {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-xl);
        margin-bottom: 0;
        font-size: 0.875rem;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
        gap: var(--spacing-md);
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .footer-business-info {
        align-items: center;
    }

    .footer-business-name {
        font-size: 0.9375rem;
    }

    .footer-address {
        font-size: 0.875rem;
    }

    .footer-phone a {
        font-size: 0.875rem;
    }

    .footer-content > p {
        margin: 0;
        font-size: 0.875rem;
        width: 100%;
        line-height: 1.5;
    }

    .footer-copyright {
        margin-top: var(--spacing-md);
        padding-top: var(--spacing-md);
        font-size: 0.875rem;
    }

    .footer-content > nav {
        width: 100%;
        margin: 0;
    }

    .footer-nav {
        display: block;
        width: 100%;
    }

    .footer-nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }

    .footer-nav li {
        display: inline-block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-nav a {
        display: inline-block;
        padding: var(--spacing-xs) var(--spacing-sm);
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Small mobile devices (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --spacing-2xl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1.25rem;
    }

    header nav > a {
        font-size: 1.25rem;
        line-height: 1.2;
        display: flex;
        align-items: center;
    }

    header {
        padding: var(--spacing-sm) 0;
    }

    header nav {
        align-items: center;
        min-height: 44px; /* Ensure touch target size */
        padding: 0 var(--spacing-md);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: var(--spacing-xl) 0;
        margin-top: 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: calc(var(--spacing-xs) * 0.75) var(--spacing-sm);
    }

    .code-bracket {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .services-list li,
    .services-list-detailed li {
        padding: var(--spacing-lg);
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

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

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

    .clients-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .client-item {
        padding: 0;
        font-size: 0.9375rem;
    }

    .services-list-detailed .service-icon {
        width: 48px;
        height: 48px;
    }

    .services-list-detailed .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .about {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .about h2 {
        margin-bottom: var(--spacing-lg);
        text-align: left;
        display: block;
        width: 100%;
    }

    .about-image-wrapper {
        max-width: 180px;
        margin: var(--spacing-md) 0 var(--spacing-md) 0;
        justify-self: start;
    }

    .about-content-wrapper {
        gap: var(--spacing-lg);
    }

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

    main {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    footer {
        padding: var(--spacing-md);
        margin-top: var(--spacing-lg);
        margin-bottom: 0;
        font-size: 0.875rem;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .footer-content {
        padding: 0;
        gap: var(--spacing-xs);
    }

    .footer-content > p {
        margin: 0;
    }

    .footer-nav a {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-button {
        flex: 1;
        min-width: 120px;
    }
}

/* Very small devices (max-width: 320px) */
@media (max-width: 320px) {
    :root {
        --spacing-md: 1rem;
        --spacing-sm: 0.75rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    a, button, .cta-button {
        min-height: 44px;
        min-width: 44px;
    }

    header nav ul li a {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: var(--spacing-sm);
    text-decoration: none;
    z-index: 10000;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.skip-link:focus {
    top: var(--spacing-sm);
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Breadcrumb Navigation */
.breadcrumbs {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    font-size: 0.9375rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xs);
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-light);
    margin: 0 var(--spacing-xs);
    user-select: none;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

.breadcrumb-current span {
    color: var(--text-primary);
}

/* Mobile breadcrumbs */
@media (max-width: 767px) {
    .breadcrumbs {
        font-size: 0.875rem;
        padding: var(--spacing-xs) 0;
    }
    
    .breadcrumbs ol {
        gap: calc(var(--spacing-xs) / 2);
    }
}

/* Location Info Section */
.location-info {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.location-info h2 {
    margin-bottom: var(--spacing-md);
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.location-item {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.location-item h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.location-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Mobile adjustments for location section */
@media (max-width: 767px) {
    .location-info {
        padding: var(--spacing-lg);
    }

    .location-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .location-item {
        padding: var(--spacing-md);
    }
}

