/* ===========================
   SOLIDAGENT - WEBSITE STYLES
   Minimalistisch & Modern
   =========================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3A7CA5;
    --dark-blue: #2C6080;
    --light-blue: #5D9DC8;
    --accent-mint: #2DD4A8;
    --accent-mint-dark: #24B892;
    --accent-mint-glow: rgba(45, 212, 168, 0.15);
    --text-dark: #1C2D3A;
    --text-gray: #5A6B7A;
    --bg-light: #F0FBF8;
    --bg-subtle: #F6FDFB;
    --white: #ffffff;
    --border-light: #D4EDE6;
    --shadow: 0 2px 12px rgba(45, 212, 168, 0.08);
    --shadow-hover: 0 8px 30px rgba(45, 212, 168, 0.15);
    --shadow-card: 0 4px 16px rgba(28, 45, 58, 0.06);
    --footer-dark: #1C2D3A;
    --footer-darker: #152330;
    --whatsapp-green: #25D366;
    --gradient-hero: linear-gradient(135deg, #3A7CA5 0%, #5D9DC8 40%, #2DD4A8 100%);
    --gradient-cta: linear-gradient(135deg, #2C6080 0%, #3A7CA5 50%, #2DD4A8 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* === NAVIGATION === */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(93, 157, 200, 0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-mint-dark);
    background: var(--bg-light);
}

.nav-menu a.active {
    color: var(--white);
    background: var(--accent-mint);
}

.nav-menu a.active::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--accent-mint-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 212, 168, 0.35);
}

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

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

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(160deg, var(--bg-light) 0%, var(--bg-subtle) 50%, var(--white) 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === PAGE HERO === */
.page-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* === SERVICES OVERVIEW === */
.services-overview {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border-color: var(--accent-mint);
    border-width: 3px;
    background: linear-gradient(135deg, var(--accent-mint-glow) 0%, rgba(45,212,168,0.05) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-mint);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #F0FBF8, #E8F4F8);
}

.service-icon svg {
    width: 44px;
    height: 44px;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
}

.service-link:hover {
    text-decoration: underline;
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === WHY SECTION === */
.why-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #F0FBF8, #E8F4F8);
}

.why-icon svg {
    width: 36px;
    height: 36px;
}

.why-item h4 {
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--text-gray);
}

/* === FINAL CTA === */
.final-cta {
    padding: 5rem 0;
    background: var(--gradient-cta);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-phone {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-phone a {
    color: var(--white);
    text-decoration: underline;
}

/* === SERVICE DETAIL === */
.service-detail {
    padding: 4rem 0;
}

.service-detail.alt {
    background: var(--bg-light);
}

.service-detail.highlight {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(45,212,168,0.08) 100%);
    border-top: 4px solid var(--accent-mint);
    border-bottom: 4px solid var(--accent-mint);
}

.service-badge-large {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 2rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-number {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.checklist {
    margin: 1.5rem 0;
}

.checklist li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-detail-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.placeholder-image {
    background: var(--border-light);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-gray);
}

.placeholder-image.large {
    padding: 6rem 2rem;
}

.placeholder-image p {
    font-weight: 600;
    font-size: 1.1rem;
}

.placeholder-image span {
    font-size: 0.9rem;
}

/* === PROCESS STEPS === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    text-align: center;
}

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

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

/* === HIGHLIGHT BOX === */
.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-mint);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 16px;
}

.highlight-box h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* === PRICING === */
.pricing-section {
    padding: 4rem 0;
}

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

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--accent-mint);
    border-width: 3px;
    background: linear-gradient(135deg, var(--accent-mint-glow) 0%, rgba(45,212,168,0.05) 100%);
}

.pricing-card.special {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(58,124,165,0.05) 0%, rgba(58,124,165,0.1) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-mint);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-period {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pricing-features ul {
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    gap: 0.5rem;
}

.perfect-for {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1rem;
}

.perfect-for strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.perfect-for p {
    font-size: 0.95rem;
    margin: 0;
}

/* === PRICING INFO === */
.pricing-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.pricing-info h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* === FAQ === */
.faq-section {
    margin-top: 4rem;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 16px;
}

.faq-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* === PORTFOLIO === */
.portfolio-section {
    padding: 4rem 0;
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 212, 168, 0.18);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.portfolio-category-tag {
    background: var(--accent-mint);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.portfolio-info {
    padding: 1.5rem 2rem 2rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.portfolio-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags span {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.testimonials-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.testimonials-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-dark);
}

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

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.testimonial-stars {
    color: #F5A623;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    flex-grow: 1;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.testimonial-service {
    display: inline-block;
    align-self: flex-start;
    background: var(--accent-mint-glow);
    color: var(--accent-mint-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hero Buttons Trio */
.hero-buttons-trio {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons-trio .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    justify-content: center;
}

.hero-buttons-trio .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.hero-buttons-trio .btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.testimonial-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-note p {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons-trio {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons-trio .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* === ABOUT === */
.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.about-text {
    font-size: 1.05rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.strength-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.strength-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #F0FBF8, #E8F4F8);
}
.strength-icon svg {
    width: 32px;
    height: 32px;
}

.strength-item h4 {
    margin-bottom: 0.25rem;
}

.strength-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 20px;
}

.info-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tools-list li {
    font-size: 0.95rem;
}

.values-section {
    margin-top: 4rem;
}

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

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #F0FBF8, #E8F4F8);
}
.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* === CONTACT === */
.contact-section {
    padding: 4rem 0;
}

.contact-hero {
    margin-bottom: 4rem;
}

.whatsapp-box {
    background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, rgba(37,211,102,0.05) 100%);
    border: 3px solid var(--whatsapp-green);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.whatsapp-icon {
    margin-bottom: 1.5rem;
}

.whatsapp-box h2 {
    margin-bottom: 1rem;
}

.whatsapp-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--whatsapp-green);
    margin-bottom: 1rem;
}

.contact-methods {
    margin-bottom: 4rem;
}

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

.method-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #F0FBF8, #E8F4F8);
}
.method-icon svg {
    width: 36px;
    height: 36px;
}

.method-card h4 {
    margin-bottom: 0.75rem;
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.what-to-expect {
    margin-bottom: 4rem;
}

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

.step-card {
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.contact-faq {
    margin-bottom: 4rem;
}

.message-templates {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
}

.message-templates h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.message-templates > p {
    text-align: center;
    margin-bottom: 2rem;
}

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

.template-card {
    background: var(--white);
    border: 2px solid var(--accent-mint);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--accent-mint);
    color: var(--text-dark);
}

.template-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #F0FBF8, #E8F4F8);
}
.template-icon svg {
    width: 32px;
    height: 32px;
}

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

/* === LEGAL PAGES === */
.legal-section {
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.legal-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: var(--text-gray);
}

/* === FOOTER === */
.footer {
    background: var(--footer-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(93, 157, 200, 0.4));
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 212, 168, 0.15);
    color: rgba(45, 212, 168, 0.5);
}

.footer-bottom a {
    color: rgba(45, 212, 168, 0.5);
    text-decoration: none;
}

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

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.25rem 1.5rem;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--primary-blue);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--primary-blue);
}

.cookie-btn-reject:hover {
    background: var(--bg-light);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content,
    .about-content {
        grid-template-columns: 1fr;
    }

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

    .btn {
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .coming-soon-box {
        padding: 3rem 1.5rem;
    }

    .whatsapp-box {
        padding: 3rem 1.5rem;
    }

    .whatsapp-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }
}
