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

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #3F3F3F;
    line-height: 1.6;

    /* FIX: plads til fixed header */
    padding-top: 30px;
}
:root {
    --beige: #E6D8C6;
    --sektionsfarve: #FAF8F4;
    --light-blue: #e0edfd;
    --light-rose: #f5e9f3;
    --text-dark: #3F3F3F;
}
/* ========================= HEADER/NAVIGATION ========================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    color: #3F3F3F;
}

nav {
    margin-left: auto;
}

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

nav a {
    text-decoration: none;
    font-weight: 600;
    color: #3F3F3F;
}
/* ========================= FORSIDE, PSYKOTERAPEUTISK PRAKSIS I TILST ========================= */

.split-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.split-text {
    flex: 1;

    /* 👇 farvespil + animation */
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        120deg,
        #FAF8F4,
        #F2EEE8,
        #E6D8C6
    );

    color: #3F3F3F;
    display: flex;
    align-items: center;
}

/* blob 1 */
.split-text::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #F2EEE8;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(120px);
    opacity: 0.5;

    animation: floatBlob1 18s ease-in-out infinite alternate;

    /* 👇 vigtigt */
    pointer-events: none;
}

/* blob 2 */
.split-text::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #E6D8C6;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    filter: blur(120px);
    opacity: 0.5;

    animation: floatBlob2 22s ease-in-out infinite alternate;

    /* 👇 vigtigt */
    pointer-events: none;
}

/* animationer */
@keyframes floatBlob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 40px) scale(1.1);
    }
    100% {
        transform: translate(-40px, 80px) scale(0.95);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-60px, -40px) scale(1.05);
    }
    100% {
        transform: translate(60px, -80px) scale(1.1);
    }
}

/* content ovenpå blobs */
.split-content {
    padding: 80px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.split-text h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.subtext {
    font-size: 20px;
    margin-bottom: 40px;
    white-space: nowrap;
}

.contact-row {
    display: flex;
    gap: 80px;
}

.contact-row h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ========================= FORSIDE, HOS MIG KAN DU FÅ STØTTE INDENFOR BLANDT ANDET ========================= */
.focus-section {
    background: #ffffff;
    padding: 60px 30px 100px 30px; 
}

.focus-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.focus-inner h2,
.focus-inner h3 {
    font-size: 38px;
    margin-bottom: 30px;
}

.focus-inner p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.focus-inner ul {
    list-style: none;
    margin-top: 30px;
    padding-left: 0;
}

.focus-inner li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.focus-inner li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Scroll animation */
.focus-inner {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.focus-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= FORSIDE, VIDEO / FÅ EN FORNEMMELSE AF HVEM JEG ER OGSÅ HVORDAN JEG ARBEJDER I TERAPIEN ========================= */
.video-section {
    background: #F2EEE8;
    padding: 100px 20px;
    text-align: center;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-content {
    max-width: 700px;
    margin: 0 auto 
}

.video-content h2,
.video-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 16px;
    line-height: 1.7;
}
.video-content .book-btn {
    margin-top: 35px;
}

/* ========================= FORSIDE, KLIENTUDTALELSER ========================= */
.testimonials {
    background: #ffffff;
    padding: 60px 20px;
}

.testimonials-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.testimonials-slider--single {
    grid-template-columns: 1fr;
}

.testimonials-swiper {
    width: 100%;
    overflow: hidden;
}

.testimonials-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #E6D8C6;
    border-radius: 50%;
    background: #ffffff;
    color: #3F3F3F;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.testimonials-nav:hover,
.testimonials-nav:focus-visible {
    background: #E6D8C6;
    border-color: #d4c4b0;
    outline: none;
}

.testimonials-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.testimonial-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

.quote {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-name {
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
}

/* Scroll animation testimonials */
.testimonials-inner {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= FORSIDE, ET TRYGT STED TIL AT DELE ALT DET, LIVET ER ========================= */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 50vh;     /* kortere hero */
    margin-bottom: 0px;
    padding-top: 0;       /* fjern ekstra whitespace */
}

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

.hero-center {
    background: #FAF8F4;
    padding: 40px 20px;   /* lidt mindre padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hero-center h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    color: #ffffff;
    padding: 14px 32px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 180px; /* sikrer ens størrelse */
}

.book-btn:hover {
    background: #E6D8C6;
    color: #3F3F3F;
    transform: translateY(-2px);
}
.hero-center .book-btn {
    align-self: center;
}

/* ========================= MIN PRAKSIS, OM MIN PRAKSIS/UDDANNELSESBAGGRUND/FAGLIGE OG PRIVATE BAGGRUND ========================= */

.about-intro {
    width: 100%;
    min-height: 100vh;
    padding: 120px 40px;
}

    /* farvespil */
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        120deg,
        #FAF8F4,
        #F2EEE8,
        #E6D8C6
    );
}

/* blob 1 */
.about-intro::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #F2EEE8;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(120px);
    opacity: 0.5;

    animation: floatBlob1 20s ease-in-out infinite alternate;
    pointer-events: none;
}

/* blob 2 */
.about-intro::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #E6D8C6;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    filter: blur(120px);
    opacity: 0.5;

    animation: floatBlob2 24s ease-in-out infinite alternate;
    pointer-events: none;
}

.about-intro-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;

    /* sørger for content ligger over blobs */
    position: relative;
    z-index: 1;
}

.about-col h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.about-col p {
    font-size: 16px;
    line-height: 1.8;
}

/* animationer */
@keyframes floatBlob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 40px) scale(1.1);
    }
    100% {
        transform: translate(-40px, 80px) scale(0.95);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-60px, -40px) scale(1.05);
    }
    100% {
        transform: translate(60px, -80px) scale(1.1);
    }
}

/* mobil */
@media (max-width: 900px) {

    .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}
/* hvide bokse til about sektion */
.about-col {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
/* ========================= MIN PRAKSIS, METODER OG TILGANGE ========================= */

.about-section {
    background: #F2EEE8;
    padding: 100px 20px;
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* ========================= FOOTER ========================= */
.site-footer {
    background: #ffffff;
    padding: 60px 40px;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 60px;
}

.site-footer a {
    color: #3F3F3F;
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ========================= FOOTER SOCIAL ICONS ========================= */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    margin-top: 10px;
}

/* ========================= MEDIA QUERIES ========================= */
@media (max-width: 900px) {
    .navbar > nav { display: none; }
    .hero { grid-template-columns: 1fr; }
    .intro-section { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}

/* ========================= PRISER (MED FARVESPIL) ========================= */
.prices-page {
    width: 100%;
    padding: 100px 20px;

    position: relative;
    overflow: hidden;

    background: linear-gradient(
        120deg,
        #FAF8F4,
        #F2EEE8,
        #E6D8C6
    );
}

/* blob 1 */
.prices-page::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #F2EEE8;
    border-radius: 50%;
    top: -120px;
    left: -120px;
    filter: blur(120px);
    opacity: 0.5;

    animation: floatBlob1 20s ease-in-out infinite alternate;
    pointer-events: none;
}

/* blob 2 */
.prices-page::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #E6D8C6;
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
    filter: blur(120px);
    opacity: 0.5;

    animation: floatBlob2 24s ease-in-out infinite alternate;
    pointer-events: none;
}

/* sørger for content ligger over blobs */
.prices-container {
    position: relative;
    z-index: 1;
}

.prices-container {
    max-width:900px;
    margin:0 auto;
}
.prices-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
}

.prices-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #6b6b6b;
}

/* Price list */

.price-list {
    margin-top: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 25px 0;
}

.price-text h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.price-note {
    font-size: 15px;
    color: #666;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.price-list hr {
    border: none;
    border-top: 1px solid #eee;
}
.price-list .book-btn {
    display: inline-flex;
    margin-right: auto;
    margin-top: 30px;
    font-size: 16px;
}

.practical-section {
    padding: 100px 40px;
    background: #F2EEE8;
}

.practical-inner {
    max-width: 900px;
    margin: 0 auto;
}

.practical-inner h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.practical-box {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.practical-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.practical-box p {
    font-size: 16px;
    line-height: 1.7;
}
/* Mobile */

@media (max-width: 900px) {
    .price-item {
        flex-direction: column;
    }

    .price-amount {
        white-space: normal;
    }

    .practical-grid {
        grid-template-columns: 1fr;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= PRISER, PRAKTISK INFORMATION ========================= */
.practice-page {
    padding-top: 120px;
}
.methods-section {
    background: #FAF8F4;
    padding: 100px 20px;
}

.methods-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.methods-inner h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

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

.method-box {
    background: #ffffff; /* behold hvid her så boksene står frem */
    padding: 30px;
    border-radius: 16px;
}

.method-box h4 {
    margin-bottom: 10px;
}

/* ========================= FAQ ========================= */
.faq-section {
    padding: 100px 20px;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-inner h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 18px;
}

.faq-intro {
    text-align: center;
    color: #6b6b6b;
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 700px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #E6D8C6;
    overflow: hidden;
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    position: relative;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #7f6f61;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 22px 20px;
    color: #3F3F3F;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ========================= KONTAKT, KONTAKTFORMULAR OG TEKST ========================= */

.contact-page {
    padding: 120px 20px 100px;
    background: #F2EEE8;
}

.contact-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
    color: #6b6b6b;
}

.contact-container {
    margin-top: 20px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid #E6D8C6;
    box-shadow: 0 0 0 3px rgba(230, 216, 198, 0.3);
}

.contact-form .book-btn {
    min-width: 180px;
    width: auto;
    font-size: 16px;
}

.privacy-note {
    font-size: 13px;
    color: #6b6b6b;
    margin-top: -10px;
    line-height: 1.5;
}

.privacy-note a {
    text-decoration: underline;
}

.contact-container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:80px;
    align-items:start;
}

/* venstre tekst */
.contact-text{
    font-size:17px;
    line-height:1.8;
    color:#3F3F3F;
}

.contact-text p{
    margin-bottom:25px;
}

/* formular bredde */
.contact-form{
    width:100%;
}

/* mobil */
@media (max-width:900px){

.contact-container{
    grid-template-columns:1fr;
    gap:50px;
}

.contact-text{
    text-align:left;
}

/* ========================= KONTAKT, FIND VEJ ========================= */
}
.location-section {
  background-color: #FAF8F4;
  padding: 120px 0;
}

.location-container {
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Billede */
.location-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

/* Tekst */
.location-text {
  font-family: 'Montserrat', sans-serif;
}
.location-text h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #3F3F3F;
}

.location-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #3F3F3F;
}

/* Kort */
.location-map {
  height: 450px;
  border-radius: 28px;
  overflow: hidden;
}

/* Mobil */
@media (max-width: 1000px) {
  .location-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .location-image img,
  .location-map {
    height: 350px;
  }
}
/* ========================= PRIVATLIVSPOLITIK ========================= */

.privacy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 120px; /* mere luft i toppen */
}

.privacy-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #6b6b6b;
}

.privacy-page h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
}

/* ========================= FOOTER ========================= */
.site-footer {
    background: #ffffff;
    padding: 60px 40px;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 60px;
}

.site-footer a {
    color: #3F3F3F;
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ========================= FOOTER SOCIALE ICONER ========================= */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    margin-top: 10px;
}

/* ========================= MOBIL TILPASNING ========================= */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 30px;
    }

    .contact-row {
        flex-direction: column;
        gap: 30px;
    }

    .split-text h2 {
        font-size: 38px;
    }

    .subtext {
        white-space: normal;
    }
}

/* ========================= MOBIL MENU ========================= */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 120;
}

.burger span {
    display: block;
    height: 3px;
    width: 26px;
    background: #3f3f3f;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
    padding: 100px 28px 40px;
    z-index: 110;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

body.menu-open {
    overflow: hidden;
}

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

.mobile-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #3f3f3f;
    font-size: 18px;
}

@media (max-width: 900px) {
    .burger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

.split-section.split-reverse {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .split-section.split-reverse {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .about-intro::before {
        width: 300px;
        height: 300px;
        top: -90px;
        left: -90px;
        filter: blur(90px);
        opacity: 0.35;
    }

    .about-intro::after {
        width: 260px;
        height: 260px;
        bottom: -90px;
        right: -90px;
        filter: blur(90px);
        opacity: 0.35;
    }

    .navbar {
        padding: 14px 16px;
    }

    .logo {
        font-size: 20px;
        max-width: calc(100% - 56px);
    }

    .split-content {
        padding: 40px 20px;
    }

    .split-text h2 {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.2;
    }

    .hero-center h1 {
        font-size: clamp(30px, 8.5vw, 40px);
        line-height: 1.2;
    }

    .focus-inner h2,
    .testimonials-slider {
        gap: 12px;
    }

    .testimonials-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .testimonial-box {
        padding: 0;
    }

    .quote {
        font-size: 15px;
    }

    .testimonials h2,
    .prices-title,
    .contact-title,
    .privacy-title,
    .location-text h2 {
        font-size: clamp(30px, 7.5vw, 36px);
        line-height: 1.2;
    }

    .focus-section,
    .video-section,
    .testimonials,
    .about-intro,
    .about-section,
    .prices-page,
    .practical-section,
    .methods-section,
    .faq-section,
    .contact-page,
    .location-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .about-intro,
    .practical-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-intro-inner {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-col {
        padding: 24px 18px;
    }

    .about-col p,
    .about-col-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .location-container {
        width: 92%;
        gap: 35px;
    }

    .location-image img,
    .location-map {
        height: 300px;
    }

    .book-btn {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }

    .hero-center .book-btn,
    .price-list .book-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-menu {
        width: min(320px, 92vw);
        padding: 88px 20px 32px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .about-intro::before,
    .about-intro::after {
        width: 200px;
        height: 200px;
        filter: blur(70px);
        opacity: 0.25;
        display: none;
    }

    .about-intro {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-intro-inner {
        gap: 16px;
    }

    .about-col {
        padding: 20px 14px;
        border-radius: 12px;
    }

    .about-col h3 {
        font-size: 22px;
        line-height: 1.25;
    }

    .about-col-content,
    .about-col-content p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .about-col-content br {
        display: none;
    }

    .location-image img,
    .location-map {
        height: 240px;
    }
}

@media (max-width: 900px) {
    .site-footer {
        padding: 44px 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-col p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-logo {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 36px 16px;
    }

    .footer-inner {
        gap: 22px;
    }

    .footer-col h4,
    .footer-logo h4 {
        margin-bottom: 8px;
    }

    .footer-social {
        gap: 12px;
        margin-top: 10px;
    }
}
