/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --color-ochre: #C9A050;
    --color-anthracite: #242526;
    --color-anthracite-light: #343536;
    --color-anthracite-dark: #141516;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-section-alternate: #F8F9FA;
    --color-medium-gray: #E0E0E0;
    --color-text: #2C2C2C;
    --color-text-light: #6C6C6C;
    --color-accent: #D9B360;
    --color-success: #4CAF50;
    
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-button: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-family: var(--font-button);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: none;
}

.btn-primary {
    background-color: var(--color-ochre);
    color: var(--color-white);
    border-color: var(--color-ochre);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 160, 80, 0.3);
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 18px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    filter: brightness(1.1);
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
}

.navbar.scrolled .logo-image {
    display: block;
    opacity: 1;
    visibility: visible;
    mix-blend-mode: normal;
    filter: brightness(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-white);
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
    opacity: 1;
    visibility: visible;
}

.navbar.scrolled .logo-title {
    color: var(--color-ochre);
    opacity: 1;
    visibility: visible;
}

.logo-subtitle {
    font-size: 0.625rem;
    font-weight: 500;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    opacity: 1;
    visibility: visible;
}

.navbar.scrolled .logo-subtitle {
    color: var(--color-text-light);
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
    color: var(--color-anthracite);
}

.nav-menu a:hover {
    color: var(--color-ochre);
}

.nav-menu .btn-primary {
    padding: 0.625rem 1.5rem;
    background-color: var(--color-ochre);
    color: var(--color-white);
    border-color: var(--color-ochre);
}

.nav-menu .btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

/* Keep button styling consistent even when navbar is scrolled */
.navbar.scrolled .nav-menu .btn-primary {
    background-color: var(--color-ochre);
    color: var(--color-white);
    border-color: var(--color-ochre);
}

.navbar.scrolled .nav-menu .btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-toggle span {
    background-color: var(--color-anthracite);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background-color: var(--color-anthracite);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--color-white);
    padding: 12rem 0 8rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-family: var(--font-primary);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -1px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
}

.hero-logo-container {
    max-width: 100%;
    height: auto;
}

.hero-logo-container img {
    width: 100%;
    height: auto;
    max-width: 450px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
    /* mix-blend-mode macht schwarze Pixel transparent - funktioniert auch mit echten transparenten PNGs */
    mix-blend-mode: screen;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-label {
    display: inline-block;
    color: var(--color-ochre);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ===================================
   Problem Section
   =================================== */
.problem-section {
    background-color: var(--color-section-alternate);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background-color: var(--color-white);
}

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

.service-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-medium-gray);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--color-ochre);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: var(--color-ochre);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin: 0;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    background-color: var(--color-section-alternate);
}

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

.benefit-item {
    position: relative;
    padding-left: 4rem;
}

.benefit-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-ochre);
    opacity: 0.3;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    margin: 0;
}

/* ===================================
   Tech Section
   =================================== */
.tech-section {
    background-color: var(--color-white);
}

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

.tech-card {
    background-color: var(--color-light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.tech-card:hover {
    background-color: var(--color-anthracite);
    color: var(--color-white);
    transform: translateY(-5px);
}

.tech-card:hover h3,
.tech-card:hover p {
    color: var(--color-white);
}

.tech-card:hover .tech-icon {
    color: var(--color-ochre);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-anthracite);
    transition: var(--transition);
}

.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tech-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background-color: var(--color-section-alternate);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-ochre);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-founder {
    color: var(--color-anthracite);
    font-size: 1rem;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--color-medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    background-color: var(--color-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-ochre);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-anthracite) 0%, var(--color-anthracite-light) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background-color: var(--color-section-alternate);
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--color-anthracite);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--color-ochre);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin: 0;
}

/* Form Styles */
.contact-form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-anthracite);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-medium-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-ochre);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    display: block;
    mix-blend-mode: normal;
    filter: brightness(1);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.footer-logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--color-ochre);
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
}

.footer-logo-subtitle {
    font-size: 0.625rem;
    font-weight: 500;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column h4 {
    color: var(--color-ochre);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-ochre);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-logo-container img {
        max-width: 350px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero {
        padding: 10rem 0 6rem;
        position: relative;
    }
    
    /* Watermark logo behind text on mobile */
    .hero::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 280px;
        height: 280px;
        background-image: url('../images/knatec-logo-3d.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.08;
        z-index: 0;
        pointer-events: none;
        mix-blend-mode: screen;
    }
    
    .hero .container {
        position: relative;
        z-index: 1;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none; /* Hide the regular logo on mobile */
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta a {
        width: 100%;
        text-align: center;
    }
    
    .services-grid,
    .tech-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Hero Subpage */
.hero-subpage {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    padding: 180px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-subpage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(198, 146, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-subpage {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content-subpage h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(198, 146, 72, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(198, 146, 72, 0.2);
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 1.5rem;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 100px 0;
    background: #f8f8f8;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.problem-box,
.solution-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.problem-box {
    border-left: 5px solid #e74c3c;
}

.solution-box {
    border-left: 5px solid #c69248;
}

.problem-box h3,
.solution-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.problem-list li:last-child,
.solution-list li:last-child {
    border-bottom: none;
}

.icon-cross {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.3rem;
}

.icon-check {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.philosophy-box {
    background: linear-gradient(135deg, #c69248 0%, #d4a259 100%);
    color: white;
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
}

.philosophy-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.philosophy-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #c69248;
    border-width: 3px;
    background: linear-gradient(to bottom, #fff 0%, #fffbf5 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c69248 0%, #d4a259 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    text-align: center;
}

.price-tag {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #c69248;
    margin-bottom: 0.5rem;
}

.price-suffix {
    display: block;
    font-size: 1rem;
    color: #666;
}

.package-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.feature-list li:last-child {
    border-bottom: none;
}

.hosting-info {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hosting-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c69248;
    margin: 0.5rem 0;
}

.hosting-discount {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Hosting Details */
.hosting-details {
    background: #f8f8f8;
    padding: 4rem;
    border-radius: 15px;
}

.hosting-details h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

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

.hosting-feature {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.hosting-feature strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-size: 1.1rem;
}

.hosting-feature p {
    color: #666;
    font-size: 0.95rem;
}

.hosting-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

/* Holistic Approach Section */
.holistic-approach {
    padding: 100px 0;
    background: white;
}

.holistic-approach h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.approach-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.approach-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.approach-list li {
    padding: 1rem 0;
    border-left: 3px solid #c69248;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.approach-list strong {
    color: #c69248;
}

.process-steps {
    background: #f8f8f8;
    padding: 3rem 2rem;
    border-radius: 15px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #c69248 0%, #d4a259 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.3rem;
    color: #2d2d2d;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.process-arrow {
    text-align: center;
    color: #c69248;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .hosting-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content-subpage h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-badge {
        padding: 0.8rem 1.5rem;
    }
    
    .philosophy-box {
        padding: 2rem;
    }
    
    .hosting-features {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Featured Service Card */
.service-card-featured {
    background: linear-gradient(135deg, #fffbf5 0%, #fff 100%);
    border: 2px solid #c69248;
    position: relative;
    overflow: hidden;
}

.featured-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #c69248 0%, #d4a259 100%);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #c69248;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #d4a259;
    transform: translateX(5px);
}

.service-card-featured:hover {
    border-color: #d4a259;
    box-shadow: 0 10px 40px rgba(198, 146, 72, 0.2);
}
