:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --text-main: #334155;
    --text-dark: #0f172a;
    --bg-light: #f8fafc;
    --bg-dark: #1e293b;
    --border: #e2e8f0;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    z-index: 9999;
    font-weight: bold;
    transition: top 0.2s;
}

.skip-link:focus-visible {
    top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: 40px;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

nav a:hover, nav a:focus {
    color: var(--accent);
}

.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--primary) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Nav sliding layout */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    z-index: 999;
    transition: left 0.4s ease;
    padding: 40px 20px;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
}

.mobile-nav a {
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background wave */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    clip-path: ellipse(60% 80px at 50% 80px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #ffffff;
}

.hero-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Statistics Block */
.stats {
    padding: 50px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* workflow step layout */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border: 3px solid #ffffff;
}

.step-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Principles / Trust block */
.principles {
    background: var(--bg-light);
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.principles-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle-item {
    display: flex;
    gap: 20px;
}

.principle-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.principle-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* Service overview */
.services-section {
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-body {
    padding: 30px 24px;
}

.service-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--accent);
}

/* Features asymmetric section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.features-list {
    list-style: none;
    margin-top: 25px;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.features-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Pricing cards */
.pricing-section {
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: bold;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.pricing-card li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.pricing-card li i {
    color: var(--accent);
    margin-right: 10px;
}

/* Forms styling */
.form-section {
    background: var(--bg-dark);
    color: #ffffff;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-info h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.form-info p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-box h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 25px 0;
}

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-main);
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

/* FAQ layout */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background: #ffffff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    background: var(--bg-light);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

/* Trust Layer (Transparency Block) */
.trust-layer {
    background: var(--bg-light);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.trust-layer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.trust-layer p {
    line-height: 1.7;
}

.trust-layer-meta {
    text-align: right;
}

/* Footer style */
footer {
    background: var(--primary);
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.4rem;
    color: #ffffff;
}

.footer-about p {
    color: #94a3b8;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Cookie Consent CSS */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.85rem;
    border: none;
}

.cookie-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-deny {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* Map placeholder styles */
.map-placeholder {
    width: 100%;
    height: 350px;
    background: #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-dark);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Responsiveness rule sets */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-grid, .stats-grid, .workflow-grid, .principles-grid, .services-grid, .features-grid, .form-grid, .footer-grid, .trust-layer-content {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        gap: 40px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .trust-layer-meta {
        text-align: left;
    }
}