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

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #ed8936;
    --light-bg: #f7fafc;
    --dark-bg: #1a202c;
    --text-color: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

.btn-accept:hover {
    background: #dd6b20;
}

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 80px;
    position: relative;
    gap: 60px;
}

.hero-offset-block {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.label-accent {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

.hero-title-large {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary-offset {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.cta-primary-offset:hover {
    background: var(--secondary-color);
    transform: rotate(0deg) scale(1.05);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -50px;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(3deg);
}

.section-story-narrow {
    padding: 100px 8%;
    background: var(--light-bg);
}

.story-container {
    max-width: 700px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.inline-insight {
    background: white;
    border-left: 5px solid var(--accent-color);
    padding: 25px 30px;
    margin: 40px 0;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.section-split-irregular {
    padding: 80px 8%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-content-left {
    flex: 1.2;
}

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

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

.list-dark-patterns {
    list-style: none;
    margin: 25px 0;
}

.list-dark-patterns li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.list-dark-patterns li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cta-inline-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-inline-link:hover {
    color: var(--primary-color);
}

.split-image-right {
    flex: 1;
}

.split-image-right img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
}

.section-cards-stacked {
    padding: 100px 8%;
    background: var(--dark-bg);
    color: white;
}

.centered-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: white;
}

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

.card-pattern {
    flex: 1 1 calc(50% - 15px);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.card-pattern:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.card-offset-top {
    margin-top: 40px;
}

.card-offset-bottom {
    margin-top: -40px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-pattern h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card-pattern p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.6;
}

.section-testimony-overlap {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.testimony-block {
    flex: 1.5;
}

.testimony-block blockquote {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.testimony-block blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.3;
}

.testimony-block cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 16px;
}

.testimony-visual {
    flex: 1;
}

.testimony-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transform: rotate(2deg);
}

.section-problem-amplified {
    padding: 100px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.problem-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    max-width: 900px;
}

.problem-content p {
    font-size: 19px;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 50px;
}

.problem-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item strong {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-item span {
    font-size: 16px;
    max-width: 200px;
}

.section-image-dominant {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 50px 60px;
    border-radius: 15px;
    max-width: 700px;
}

.overlay-text h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.overlay-text p {
    font-size: 18px;
    line-height: 1.6;
}

.section-services-reveal {
    padding: 100px 8%;
    background: var(--light-bg);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-primary {
    border-top: 5px solid var(--accent-color);
}

.service-secondary {
    border-top: 5px solid #4299e1;
}

.service-tertiary {
    border-top: 5px solid #48bb78;
}

.service-accent {
    border-top: 5px solid #9f7aea;
}

.service-highlight {
    border-top: 5px solid #ed64a6;
}

.service-special {
    border-top: 5px solid #ecc94b;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

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

.section-form-asymmetric {
    padding: 80px 8%;
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit-form:hover {
    background: #dd6b20;
    transform: scale(1.02);
}

.section-trust-building {
    padding: 100px 8%;
    background: white;
}

.section-trust-building h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.section-final-cta {
    padding: 100px 8%;
    background: var(--dark-bg);
    color: white;
}

.cta-block-large {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-block-large h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-block-large p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-final-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-final-large:hover {
    background: #dd6b20;
    transform: scale(1.05);
}

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

.sticky-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #dd6b20;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.footer-minimal {
    background: var(--primary-color);
    color: white;
    padding: 60px 8% 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand strong {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.page-header-offset {
    padding: 150px 8% 60px;
    background: var(--light-bg);
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.header-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.section-values-asymmetric {
    padding: 80px 8%;
    background: white;
}

.values-block {
    max-width: 800px;
    margin: 0 auto;
}

.values-block h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 35px;
    padding-left: 30px;
    border-left: 4px solid var(--accent-color);
}

.value-item strong {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.section-team {
    padding: 80px 8%;
    background: var(--light-bg);
}

.section-team h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
}

.section-mission {
    padding: 80px 8%;
    background: white;
}

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

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.services-detailed {
    padding: 80px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-detail-header {
    background: var(--light-bg);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h3 {
    font-size: 28px;
    color: var(--primary-color);
}

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

.service-detail-content {
    padding: 40px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.6;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.contact-info-section {
    padding: 80px 8%;
    background: white;
}

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

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

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

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

.contact-info-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-additional {
    padding: 80px 8%;
    background: var(--light-bg);
}

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

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

.contact-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 8% 80px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-service {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 40px;
}

.btn-back-home {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.legal-content {
    padding: 60px 8% 100px;
    background: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-container h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-container ul {
    margin: 15px 0 25px 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-container em {
    display: block;
    margin-top: 40px;
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .section-split-irregular {
        flex-direction: column;
    }

    .services-grid-irregular .service-card {
        flex: 1 1 calc(50% - 15px);
    }

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

@media (max-width: 768px) {
    .nav-floating {
        width: calc(100% - 40px);
        top: 10px;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 17px;
    }

    .cards-container .card-pattern {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .section-testimony-overlap {
        flex-direction: column;
    }

    .problem-stats {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid-irregular .service-card {
        flex: 1 1 100%;
    }

    .team-grid .team-member {
        flex: 1 1 100%;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

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