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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #222;
    background-color: #f7f3ee;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Links in content - make them clearly clickable */
p a,
li a,
.article-page-card a,
.article-page-intro a,
.articles-intro a,
.section-content a:not(.top-contact-link):not(.cta-button):not(.whatsapp-button):not(.back-to-home-button):not(.article-card-link) {
    color: #0066cc;
    text-decoration: underline;
    text-decoration-color: rgba(0, 102, 204, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

p a:hover,
li a:hover,
.article-page-card a:hover,
.article-page-intro a:hover,
.articles-intro a:hover,
.section-content a:not(.top-contact-link):not(.cta-button):not(.whatsapp-button):not(.back-to-home-button):not(.article-card-link):hover {
    color: #0052a3;
    text-decoration-color: #0052a3;
    text-decoration-thickness: 2px;
}

/* External links */
a[target="_blank"] {
    position: relative;
}

a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.85em;
    opacity: 0.7;
}

a:focus,
button:focus {
    outline: 2px solid #111;
    outline-offset: 2px;
}

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

section {
    width: 100%;
    position: relative;
    padding: 4rem 0;
}

.section-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
    line-height: 1.8;
}

h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    margin-top: 0;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    margin-top: 0;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    margin-top: 0;
}

p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

strong {
    font-weight: 400;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: normal;
}

/* Top bar / header hero-pildi peal */
.hero-section {
    position: relative;
    padding: 0;
    margin: 0;
    background-color: transparent;
    line-height: 0;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: none;
    background: #2F2F2F;
    color: #fdfbf7;
    z-index: 100;
    pointer-events: auto;
}

.top-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.75rem 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-tagline {
    display: block;
    font-size: 0.85rem;
    color: #e4e0d7;
    margin-top: 0.25rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #fdfbf7;
    text-align: left;
}

.top-contact-link {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    font-weight: 500;
}

.top-contact-link:hover {
    border-color: #fdfbf7;
}

.top-contact-separator {
    opacity: 0.5;
}

/* Language switcher */
.lang-switcher {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(253, 251, 247, 0.4);
    background: transparent;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: #fdfbf7;
    color: #000;
}

.top-bar-standalone .lang-btn {
    border-color: rgba(0, 0, 0, 0.15);
}

.top-bar-standalone .lang-btn:hover {
    background: #111;
    color: #fdfbf7;
}

.lang-btn-active {
    background: #fdfbf7;
    color: #000;
    border-color: #fdfbf7;
}

.top-bar-standalone .lang-btn-active {
    background: #111;
    color: #fdfbf7;
    border-color: #111;
}

/* Standalone top bar (for articles page) */
.top-bar-standalone {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #fdfbf7;
    color: #222;
    position: relative;
    z-index: 100;
}

.top-bar-standalone .top-bar-inner {
    color: #222;
}

.top-bar-standalone .top-contact-link {
    color: #444;
}

.top-bar-standalone .top-contact-link:hover {
    border-color: #111;
}

/* Hero */
.hero-image-container {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    line-height: 0;
    display: block;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    display: block;
    margin: 0;
    padding: 0;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 4rem 0;
    display: block;
}

.hero-text {
    width: 100%;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 3rem;
    max-width: 48rem;
    line-height: 1.9;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Values */
.values-section {
    margin: 2.5rem 0 3.5rem;
}

.values-section h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.value-card strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0.02em;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 0;
}

/* Experience / Uniqueness */
.experience-section {
    margin: 2.5rem 0 3.5rem;
}

.experience-section h3 {
    margin-bottom: 1.5rem;
}

.experience-intro {
    margin-bottom: 2rem;
    max-width: 48rem;
    line-height: 1.85;
    color: #333;
}

.uniqueness-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.uniqueness-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.uniqueness-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.uniqueness-card strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.uniqueness-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 0;
}

/* Team */
.team-section {
    margin-top: 3.5rem;
}

.team-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 3.5rem;
    align-items: center;
}

.team-image-wrapper {
    max-width: 320px;
}

.team-image {
    border-radius: 12px;
    object-fit: cover;
}

.team-text-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
    color: #333;
}

/* Generic services layout */
.services-section,
.installation-section {
    background-color: #fff;
}

.services-section > .section-content > p,
.installation-section > .section-content > p {
    max-width: 46rem;
}

.services-content-wrapper {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: flex-start;
}

.services-text-content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.85;
}

.services-side-image {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
}

/* Foundation */
.foundation-section {
    background-color: #fdfbf7;
}

.foundation-section > .section-content > p {
    max-width: 48rem;
    line-height: 1.85;
    color: #333;
}

.foundation-image-wrapper {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foundation-image {
    border-radius: 12px;
    max-width: 50%;
    height: auto;
    margin: 0 auto;
}

.foundation-type {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.foundation-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 1.5rem;
}

.foundation-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.foundation-features li {
    margin-bottom: 1rem;
    padding-left: 1.3rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

.foundation-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #b89c6d;
}

.foundation-selection {
    margin-top: 2.5rem;
}

/* Contact section */
.contact-section {
    background-color: #fff;
}

.contact-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-point {
    display: flex;
    gap: 1.5rem;
}

.point-number {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #999;
    min-width: 3rem;
}

.contact-info {
    margin-top: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 200px;
}

.contact-info a {
    color: #0066cc;
    text-decoration: underline;
    text-decoration-color: rgba(0, 102, 204, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.contact-info a:hover {
    color: #0052a3;
    text-decoration-color: #0052a3;
    text-decoration-thickness: 2px;
}

/* Pricing */
.pricing-section-standalone {
    background-color: #fdfbf7;
}

.pricing-intro,
.pricing-note {
    max-width: 48rem;
    line-height: 1.85;
    color: #333;
}

.pricing-list {
    list-style: none;
    padding-left: 0;
    margin: 2.5rem 0;
}

.pricing-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

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

/* Contact form section */
.contact-form-section {
    background-color: #fff;
    /* Tee sektsioon kompaktsemaks, et ta mahuks paremini ühele ekraanile */
    padding: 3rem 0;
}

.contact-form-section .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-intro {
    max-width: 42rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 2rem;
}

.form-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.contact-form {
    max-width: 520px;
    width: 100%;
    margin: 0;
}

.google-form-wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.google-form-wrapper iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    border-radius: 8px;
}

.form-image-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-image-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f5f3ef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.form-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.form-image-signature {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #fafafa;
    color: #222;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.file-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #999;
    font-weight: 300;
}

.submit-button {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    border: 1px solid #111;
    background-color: #111;
    color: #fdfbf7;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 400;
}

.submit-button:hover {
    background-color: #222;
    border-color: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.form-message.success {
    color: #1d7a46;
}

.form-message.error {
    color: #a12525;
}

.contact-options {
    margin-top: 2rem;
    text-align: center;
}

.contact-options p {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 1rem;
    font-weight: 400;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    border: 1px solid #25D366;
    color: #25D366;
    background: #fdfbf7;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    font-weight: 400;
}

.whatsapp-button:hover {
    background-color: #25D366;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Reviews */
.reviews-section {
    background-color: #fdfbf7;
}

.reviews-intro {
    max-width: 42rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Reviews slider */
.reviews-slider {
    margin-top: 2.5rem;
    max-width: 100%;
}

.reviews-slider-container {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews-slider-track .testimonial {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    /* Lase kastil kasvada vastavalt sisule, et kogu tekst oleks nähtav */
    height: auto;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
}

.reviews-slider-controls {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.reviews-slider-btn {
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: #444;
    padding: 0.25rem;
}

.reviews-slider-btn:hover {
    color: #25d366;
}

.reviews-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.reviews-dot:hover {
    background: rgba(0, 0, 0, 0.35);
}

.reviews-dot.active {
    background: #25d366;
}

.testimonial {
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reviews-slider-track .testimonial:hover {
    transform: none;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: #222;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.reviews-slider-track .testimonial-text {
    flex: 1;
    min-height: 0;
    /* Ei lõika teksti ära ega lisa sisemist scrolli */
    overflow: visible;
    margin-bottom: 0.75rem;
}

.reviews-slider-track .testimonial-author {
    margin-top: auto;
    flex-shrink: 0;
}

.testimonial-author {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.review-metrics {
    margin-top: 4.5rem;
    max-width: 100%;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-metrics-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-metrics-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.stat-big {
    display: block;
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.review-metrics-intro {
    max-width: 42rem;
    line-height: 1.85;
    color: #333;
    text-align: center;
    margin: 0 auto;
    font-size: 1.1rem;
}

.review-metrics-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

/* Rating cards – identical structure, DM Serif Display + DM Sans */
.rating-cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
    background: #f5f2ee;
    margin: 0 -1rem 0;
    padding: 1.5rem 1rem;
    border-radius: 16px;
}

.rating-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    max-width: 280px;
    width: 100%;
    justify-self: center;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
    text-align: center;
    animation: ratingFadeUp 0.6s ease both;
    font-family: 'DM Sans', sans-serif;
}

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

.rating-card-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a09585;
    margin-bottom: 10px;
    font-weight: 500;
}

.rating-card-score-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating-card-score-big {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    line-height: 1;
    color: #1a1612;
    letter-spacing: -2px;
}

.rating-card-score-max {
    font-size: 16px;
    color: #c4b8aa;
    margin-bottom: 6px;
    font-weight: 300;
}

.rating-card-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 12px;
}

.rating-card-star {
    width: 20px;
    height: 20px;
    display: block;
}

.rating-card-divider {
    height: 1px;
    background: #ede8e2;
    margin-bottom: 12px;
}

.rating-card-badge-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rating-card-badge {
    background: #1a1612;
    color: #fff;
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rating-card-badge-icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.rating-card-badge-icon-bubble {
    width: 12px;
    height: 12px;
}

.rating-card-badge-text {
    font-size: 11px;
    color: #6b5f55;
    line-height: 1.35;
    text-align: center;
}

.review-metrics-footer-wrap {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-big-footer {
    font-size: clamp(2.75rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
}

.review-metrics-footer {
    max-width: 48rem;
    line-height: 1.85;
    color: #333;
    text-align: center;
    margin: 0 auto;
}

/* Portfolio slider */
.portfolio-section {
    background-color: #fff;
}

.portfolio-slider {
    margin-top: 2.5rem;
}

.slider-container {
    overflow: hidden;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edeae5;
}

.slide-image {
    width: 100%;
    height: 480px;
    object-fit: contain;
}

.slider-controls {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.slider-btn {
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: #444;
}

.slider-dots {
    display: flex;
    gap: 0.4rem;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #d0c8bd;
    cursor: pointer;
}

.dot.active {
    background-color: #111;
}

/* CTA */
.cta-section {
    background-color: #474744;
    color: #fdfbf7;
    text-align: center;
}

.cta-section .section-content {
    padding: 0 2rem;
}

.cta-section h2 {
    color: #fdfbf7;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #e0ddd7;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

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

.cta-button {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border-radius: 999px;
    border: 1px solid #fdfbf7;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #fdfbf7;
    color: #111;
}

.cta-button-outline {
    border-color: #e0ddd7;
    color: #e0ddd7;
}

/* Articles Section */
.articles-section {
    background-color: #fdfbf7;
}

.articles-intro {
    max-width: 42rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.article-card {
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card-link:hover .article-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #111;
}

.article-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

/* Partners Section */
.partners-section {
    background-color: #fdfbf7;
    padding: 4rem 0;
}

.partners-intro {
    max-width: 42rem;
    line-height: 1.85;
    color: #333;
    margin: 0 auto 3rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    outline: none;
    border: none;
}

.partner-link:focus,
.partner-link:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #111;
    font-weight: 500;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

/* Articles Page */
.articles-page-section {
    background-color: #fdfbf7;
    padding-top: 4rem;
}

.articles-page-intro {
    max-width: 48rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.articles-toc {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.articles-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.articles-toc-title {
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 1rem;
    font-weight: 500;
}

.articles-toc-toggle {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
}

.articles-toc-toggle:hover {
    color: #111;
}

.articles-toc-toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.articles-toc-content {
    margin-top: 0.85rem;
}

.articles-toc-collapsed .articles-toc-content {
    display: none;
}

.articles-toc-collapsed .articles-toc-toggle-icon {
    transform: rotate(-90deg);
}

.articles-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 2rem;
}

.articles-toc-list li {
    font-size: 0.98rem;
}

.articles-toc-list a {
    color: #0066cc;
    text-decoration: underline;
    text-decoration-color: rgba(0, 102, 204, 0.25);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.articles-toc-list a:hover {
    color: #0052a3;
    text-decoration-color: #0052a3;
}

.articles-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-page-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
}

.article-page-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.article-page-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111;
}

.article-page-card h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111;
}

.article-page-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 1.5rem;
}

.article-page-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-page-card li {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 0.75rem;
}

.article-page-card strong {
    color: #111;
}

.articles-back-link {
    margin-top: 4rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.back-to-home-button {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    border-radius: 4px;
    border: 1px solid #111;
    background-color: #111;
    color: #fdfbf7;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    font-weight: 400;
}

.back-to-home-button:hover {
    background-color: #222;
    border-color: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Footer */
.footer-section {
    background-color: #474744;
    color: #fdfbf7;
    padding: 2.5rem 0 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-section-item h3 {
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-section-item p {
    font-size: 0.9rem;
    color: #d5d1c9;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #d5d1c9;
}

.footer-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a7a39a;
    margin-bottom: 0.1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-social-link::before {
    content: "•";
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-section-item a {
    color: #a8d5ff;
    text-decoration: underline;
    text-decoration-color: rgba(168, 213, 255, 0.4);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.footer-section-item a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
    text-decoration-thickness: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 4rem 0;
    font-size: 0.85rem;
    color: #a7a39a;
}

/* Responsive */
@media (max-width: 900px) {
    .section-content {
        padding: 0 2rem;
    }

    .hero-content {
        padding: 2.5rem 2rem 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
        line-height: 1.4;
    }

    .team-content-wrapper {
        grid-template-columns: 1fr;
    }

    .services-content-wrapper {
        grid-template-columns: 1fr;
    }

    .services-side-image {
        width: 50%;
        margin: 0 auto;
    }

    .contact-points {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .uniqueness-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Kontaktivorm kompaktsemaks mobiilil, et mahuks ühele ekraanile */
    .contact-form-section {
        padding: 2rem 0;
    }

    .contact-form-section .section-content {
        padding: 0 1.5rem;
    }

    .contact-form-section h2 {
        margin-bottom: 0.5rem;
    }

    .contact-form-section .form-intro {
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-form-section .form-group {
        margin-bottom: 1rem;
    }

    .contact-form-section .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .contact-form-section .form-group input,
    .contact-form-section .form-group textarea {
        padding: 0.6rem 0.85rem;
        font-size: 0.95rem;
    }

    .contact-form-section .form-group textarea {
        min-height: 72px;
    }

    .contact-form-section .submit-button {
        padding: 0.7rem 1.5rem;
        margin-top: 0.5rem;
        font-size: 0.85rem;
    }

    .contact-form-section .form-image-wrapper {
        order: -1;
    }

    .contact-form-section .form-image-frame {
        width: 220px;
        height: 220px;
        margin-bottom: 1rem;
    }

    .contact-form-section .form-image-signature {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .contact-form-section .contact-options {
        margin-top: 1.25rem;
    }

    .contact-form-section .contact-options p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .contact-form-section .whatsapp-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .articles-toc {
        padding: 1.25rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .articles-toc-list {
        grid-template-columns: 1fr;
        gap: 0.5rem 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .articles-page-grid {
        gap: 2rem;
    }

    .article-page-card {
        padding: 2rem;
    }

    .rating-cards-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Mobiilil: headeris ainult telefon ja keelevalik */
    .top-contact-email {
        display: none;
    }

    .top-bar-inner {
        padding: 0.75rem 2rem 0.75rem 0.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .top-bar-contact {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: left;
    }

    .top-bar-contact .top-contact-separator {
        display: none;
    }

    .top-bar-contact .top-contact-link {
        white-space: nowrap;
    }

    .lang-switcher {
        margin-left: 0;
        align-self: center;
    }

    /* Mobiilil: header voolus, järjekord: header → pilt → tekst */
    .hero-section {
        display: flex;
        flex-direction: column;
        line-height: normal;
    }

    .hero-section .top-bar {
        position: relative;
        order: 1;
    }

    .hero-section .hero-image-container {
        order: 2;
        width: 100%;
        padding: 0;
        overflow: hidden;
        background-color: #1f1f1f;
        height: calc(100vh - 3rem - 64px);
        min-height: 200px;
    }

    .hero-section .hero-content {
        order: 3;
        padding-top: 2rem;
    }

    /* Mobiilil: pilt täidab ekraani, äärtel tühja ruumi pole */
    .hero-image-container .hero-image {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
        display: block;
        margin: 0;
    }

    /* Pikad pealkirjad võivad minna 2 reale */
    .hero-text h2,
    .hero-text h3 {
        white-space: normal;
        max-width: 100%;
        line-height: 1.35;
    }

    .footer-content {
        padding: 0 2rem 1.5rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 2rem 0;
    }

    .section-content {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 2rem 1.5rem 0;
    }

    .top-bar-inner {
        padding: 0.75rem 1.5rem 0.75rem 0.5rem;
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    body {
        font-size: 16px;
    }

    .slide-image {
        height: 320px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .uniqueness-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .uniqueness-card {
        padding: 1.5rem;
    }

    .article-card {
        padding: 1.5rem;
    }

    .article-page-card {
        padding: 1.5rem;
    }

    .article-page-card h2 {
        font-size: 1.5rem;
    }

    .article-page-card h3 {
        font-size: 1.2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .rating-cards-wrap {
        grid-template-columns: 1fr;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .rating-card {
        padding: 20px 18px;
        max-width: 100%;
    }

    .rating-card-score-big {
        font-size: 44px;
    }

    .rating-card-score-max {
        font-size: 15px;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-bottom {
        padding: 1rem 1.5rem 0;
    }

    .foundation-image {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 1.7rem;
        letter-spacing: 0.04em;
        line-height: 1.4;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .top-bar-inner {
        padding: 0.65rem 1rem 0.65rem 0.5rem;
    }

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

    .cta-button {
        width: 100%;
        text-align: center;
    }

    /* Kontaktivorm veel kompaktsem väikestel ekraanidel */
    .contact-form-section {
        padding: 1.25rem 0;
    }

    .contact-form-section h2 {
        font-size: 1.35rem;
        margin-bottom: 0.35rem;
    }

    .contact-form-section .form-intro {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .contact-form-section .form-group {
        margin-bottom: 0.75rem;
    }

    .contact-form-section .form-group input,
    .contact-form-section .form-group textarea {
        padding: 0.5rem 0.75rem;
    }

    .contact-form-section .form-group textarea {
        min-height: 60px;
    }

    .contact-form-section .form-image-frame {
        width: 180px;
        height: 180px;
        margin-bottom: 0.75rem;
    }

    .contact-form-section .contact-options {
        margin-top: 1rem;
    }
}
