/* Scandinavian Light Design System for CERTIFY Accounting */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
    --bg-accent: #f1f5f9;
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --text-light: #94a3b8; /* Slate 400 */
    --primary-blue: #111a30; /* New Sophisticated Navy Accent */
    --primary-hover: #1e2c4d;
    --border-light: #e2e8f0;
    --border-focus: #cbd5e1;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Transparent Blue Glassmorphism */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8); /* Lighter background for better logo blending */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    padding: 0.75rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(37, 99, 235, 0.05);
    padding: 0.5rem 0;
}

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

.logo img {
    height: 52px; /* Adjusted for better proportion */
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.cta-btn {
    background: var(--primary-blue);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.cta-btn.secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.cta-btn.secondary:hover {
    background: var(--bg-soft);
    border-color: var(--border-focus);
}

/* Hero Section - Airy & Light */
.hero {
    padding: 8rem 0 6rem;
    background-color: var(--bg-white);
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-align: left;
}

.text-blue {
    color: var(--primary-blue);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: left;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: transparent; /* Säkerställ ingen bakgrundsfärg som ser ut som en ram */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03); /* Skala upp bilden något för att dölja eventuell inbyggd vit ram i filen */
}

/* Services Grid - Minimalist Cards */
.services {
    background-color: var(--bg-soft);
    padding: 6rem 0;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    min-height: 160px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
    color: var(--primary-blue);
    stroke-width: 1.5;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
    color: var(--text-main);
    line-height: 1.3;
}

.service-card p {
    display: none; /* Hide snippet, will show in modal */
}

/* Image card exclusion */
.service-card[style*="padding: 0"] {
    cursor: default;
    min-height: auto;
}

/* Digitalization Section */
.info-section {
    padding: 8rem 0;
}

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

.info-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.info-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-image {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ - Nordic Minimalism */
.faq {
    padding: 6rem 0;
    background-color: var(--bg-soft);
}

.faq-container {
    max-width: 700px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
}

/* Contact - Clean & Functional */
.contact {
    padding: 100px 0;
}

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

.contact-form-container {
    background: var(--bg-soft);
    padding: 3rem;
    border-radius: var(--radius-md);
}

.contact-visual-bridge {
    margin-top: 3rem;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-visual-bridge img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%), 
                        linear-gradient(to left, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%), 
                linear-gradient(to left, black 50%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}



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


.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.05);
}

/* Footer - Sophisticated & Modern */
.footer {
    padding: 4rem 0 2rem; /* Krympt vertikalt enligt önskemål */
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 7.5rem); /* Slutar snyggt vid linjen ovanför copyright */
    background-image: url('../img/footer.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 70%);
    mask-image: linear-gradient(to left, black 0%, transparent 70%);
}




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


.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}


.footer-logo {
    height: 44px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 100%;
    line-height: 1.7;
}

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

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-blue);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between; /* Flytta sigillet till höger */
    align-items: center;
    color: var(--text-light);
    font-size: 0.8rem;
}

.sekura-badge {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.sekura-badge:hover {
    opacity: 0.8;
}

.sekura-badge a {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Justera texten till höger */
    text-decoration: none;
    color: inherit;
}

.sekura-badge img {
    height: 18px; /* Halverad storlek (från 35px) */
    width: auto;
    margin-bottom: 0.2rem;
    filter: grayscale(100%);
}

.sekura-badge span {
    font-size: 0.55rem; /* Mindre text för att matcha loggan */
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        gap: 1.5rem;
    }
}

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


/* Animations - Fallback for no-js or initial load */
.reveal {
    opacity: 1; /* Default to visible */
    transform: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only hide if JS is likely to be running (handled by reveal class logic in script) */
@media (prefers-reduced-motion: no-preference) {
    .reveal:not(.active) {
        opacity: 0;
        transform: translateY(20px);
    }
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .info-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .nav-links { display: none; }
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.system-logos {
    text-align: center;
}

.system-logos p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: nowrap; /* Force one row */
}

.logo-row img {
    height: 32px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-row img.hogia-logo {
    height: 128px;
}

.logo-row img.pyramid-logo {
    height: 45px;
}

.logo-row img.capego-logo {
    height: 54px;
}

.logo-row img:not([style*="display:none"]):hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .logo-row { gap: 2.5rem; flex-wrap: wrap; }
    .logo-row img { height: 24px; }
}

.logo-row img { height: 20px; }
}

/* Why Us Section */
.why-us {
    padding: 100px 0 160px; /* Mer luft i botten */
    background-color: var(--bg-white);
    overflow: visible;
}

.why-header {
    margin-bottom: 3.5rem;
}

.why-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.why-header p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 850px;
}

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

.why-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-icon-container {
    width: 60px;
    height: 60px;
    background: #f8faff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    border: 1px solid rgba(0,0,0,0.02);
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-main);
}

.why-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.why-footer-banner {
    background-color: #f8faff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(0,0,0,0.01);
    margin-bottom: 2rem; /* Avstånd från sektionens botten */
}

.why-footer-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.why-footer-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    white-space: nowrap;
}

.why-footer-text strong {
    color: var(--text-main);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .why-us { padding: 80px 0; }
    .why-header h2 { font-size: 2.75rem; }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .why-footer-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .why-footer-text {
        white-space: normal;
    }
}

/* Modern Workflow Section - Re-refined to match image */
.workflow {
    padding: 100px 0;
    background-color: var(--bg-soft);
}

.workflow-modern {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding-left: 80px;
}

.workflow-line-dashed {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dashed var(--border-light);
    opacity: 0.5;
}

/* Add arrows between steps */
.workflow-item::before {
    content: '↓';
    position: absolute;
    left: -48px;
    top: -25px;
    color: var(--border-light);
    font-size: 1.2rem;
    font-weight: 300;
}

.workflow-item:first-child::before { display: none; }

.workflow-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.workflow-number {
    position: absolute;
    left: -65px;
    width: 50px;
    height: 50px;
    background: #777; /* Darker gray like image */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.workflow-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    width: 100%;
    transition: all 0.4s ease;
    align-items: center;
}

.workflow-icon-box {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
}

.workflow-icon-box svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
    opacity: 0.7;
}

.workflow-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 700;
}

.workflow-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.workflow-footer {
    margin-top: 3rem;
    background: #eee; /* Light gray box at bottom */
    padding: 1rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #444;
    justify-content: center;
}

@media (max-width: 768px) {
    .workflow-modern { padding-left: 60px; }
    .workflow-line-dashed { left: 30px; }
    .workflow-number { left: -55px; width: 40px; height: 40px; font-size: 0.9rem; }
    .workflow-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 2rem; }
    .workflow-item::before { left: -38px; }
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.blog-post {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-blue);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.4;
}

.blog-post p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-blue);
}

.blog-link:hover::after {
    transform: translateX(3px);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: var(--bg-white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2001;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-soft);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 350px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    line-height: 1.3;
}

.modal-body {
    padding: 0 2.5rem 3rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    overflow-x: hidden;
}

.modal-body p {
    margin-bottom: 1.5rem;
}

.modal-body h4 {
    color: var(--text-main);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

/* Custom scrollbar for modal */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .modal { padding: 1rem; }
    .modal-image { height: 200px; }
    .modal-header, .modal-body { padding: 1.5rem; }
    .modal-header h2 { font-size: 1.5rem; }

    /* Extra Mobile Polish */
    .container { padding: 0 1.2rem; }
    
    .hero { padding: 90px 0 50px; text-align: center; }
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
        text-align: center;
    }
    .hero h1 { font-size: 2rem; margin-bottom: 1.25rem; line-height: 1.25; }
    .hero p { 
        font-size: 0.95rem; 
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .hero-btns { 
        gap: 0.75rem; 
    }
    .hero-image { 
        margin-top: 1rem;
    }
    .hero-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    .nav-links { display: none; } /* Hide links for minimalism */
    nav { padding: 0.75rem 0; }
    nav .container { 
        padding: 0 1rem;
    }
    .logo img {
        height: 32px;
    }
    nav .cta-btn { 
        padding: 0.4rem 0.75rem; 
        font-size: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services { padding: 80px 0; }
    .section-header h2 { font-size: 2rem; }
    
    .partners-grid { gap: 2rem; grid-template-columns: repeat(2, 1fr); }
    .partners-grid img { height: 35px; }

    .contact { padding: 60px 0; }
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
        text-align: left; 
    }
    .contact-info-item {
        align-items: center;
    }
    .contact-form-container { padding: 2.5rem 1.5rem; }
    
    footer { padding: 60px 0 30px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-section { text-align: center; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .sekura-seal { 
        position: relative !important; 
        right: auto !important; 
        bottom: auto !important; 
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.6rem; }
    .partners-grid { grid-template-columns: 1fr; }
}


/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.05);
}

.cookie-banner.active {
    bottom: 0;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cookie-icon {
    width: 44px;
    height: 44px;
    background: rgba(17, 26, 48, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .cta-btn {
        flex: 1;
        text-align: center;
    }
}

/* Cookie Settings Styles */
.settings-header {
    margin-bottom: 1.5rem;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.setting-info {
    display: flex;
    flex-direction: column;
}

.setting-info strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.setting-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.setting-toggle input[type="checkbox"] {
    width: 40px;
    height: 20px;
    cursor: pointer;
}

/* Contact Info Styles */
.contact-info-list {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(17, 26, 48, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.info-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    color: var(--text-main);
}

.info-value {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-visual-bridge {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-visual-bridge img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Form Outline */
.contact-form-container {
    border: 1px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(17, 26, 48, 0.05);
    transition: var(--transition);
}

.contact-form-container:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(17, 26, 48, 0.05);
}
