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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

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

.header-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.ad-label {
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
}

.hero-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(233, 69, 96, 0.65));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.intro-centered {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.intro-centered h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-centered p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.visual-split {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    opacity: 1;
}

.problem-amplify {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.problem-amplify h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--bg-white);
}

.problem-amplify p {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-inline {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-left: 4px solid var(--accent-color);
    background-color: var(--bg-light);
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.insight-visual {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

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

.insight-card h4 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--primary-color);
}

.insight-card p {
    padding: 0 20px 20px;
    font-size: 16px;
    color: var(--text-color);
}

.trust-building {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.trust-building h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.trust-building p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-block {
    padding: 70px 20px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-block h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.services-reveal {
    padding: 60px 20px 100px;
    background-color: var(--primary-color);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.service-duration {
    font-size: 15px;
    color: var(--text-light);
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select {
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.btn-select.selected {
    background-color: var(--success-color);
}

.form-section {
    padding: 90px 20px;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.service-selected {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    min-height: 20px;
}

.service-selected.active {
    border-left: 4px solid var(--accent-color);
}

.service-selected p {
    margin: 5px 0;
    font-size: 15px;
}

.service-selected strong {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
    transform: none;
}

.final-cta {
    padding: 80px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    opacity: 1;
}

.references {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.references h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reference-list {
    list-style-position: inside;
    padding-left: 0;
}

.reference-list li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.reference-list a {
    color: var(--text-color);
    word-break: break-all;
}

.reference-list a:hover {
    color: var(--accent-color);
}

.disclaimer {
    padding: 50px 20px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.about-story {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.philosophy h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.philosophy p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-list {
    list-style-position: inside;
    margin-top: 20px;
}

.philosophy-list li {
    padding: 10px 0;
    font-size: 17px;
}

.values {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.values h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.team-approach {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-approach p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--bg-white);
}

.services-detailed {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.service-full {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.service-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-body {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-description {
    flex: 2;
    min-width: 300px;
}

.service-description p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-description h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-description ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-description li {
    padding: 8px 0;
    font-size: 16px;
}

.service-format {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.service-image {
    flex: 1;
    min-width: 280px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.services-cta {
    padding: 80px 20px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-note {
    color: var(--text-light);
    font-style: italic;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

.contact-cta {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.thanks-next {
    margin: 40px 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    list-style-position: inside;
}

.next-steps li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    opacity: 1;
}

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

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

.legal-content {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 16px;
}

.legal-content a {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-centered h2,
    .page-hero h1 {
        font-size: 28px;
    }

    .split-container {
        flex-direction: column;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .main-nav {
        gap: 15px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .insight-grid {
        flex-direction: column;
    }

    .service-body {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}