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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c3e50;
}

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

.sticky-btn {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.hero-visual {
    margin-top: 70px;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.story-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

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

.story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #2c3e50;
}

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.visual-block {
    padding: 0;
    background: #fff;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.visual-left {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.visual-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-right h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.visual-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.cta-inline {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.problem-amplify {
    padding: 7rem 5%;
    background: #2c3e50;
    color: #fff;
}

.problem-container h2 {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.3;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.problem-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-secondary {
    display: inline-block;
    background: #fff;
    color: #2c3e50;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin: 2rem auto 0;
    display: block;
    width: fit-content;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

.insight-section {
    padding: 7rem 5%;
    background: #ecf0f1;
}

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

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.insight-large {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #e74c3c;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-inline {
    padding: 5rem 5%;
    background: #fff;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border-left: 5px solid #e74c3c;
    background: #f8f9fa;
}

.testimonial-inline p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    color: #777;
}

.services-reveal {
    padding: 7rem 5%;
    background: #fff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
}

.services-funnel {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 3px solid #e74c3c;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    padding: 0.5rem 1.5rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1a252f;
}

.trust-build {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #555;
}

.form-section {
    padding: 7rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.service-display {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-display p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-privacy {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

.form-privacy a {
    color: #667eea;
}

.urgency-section {
    padding: 5rem 5%;
    background: #fff3cd;
    border-top: 4px solid #ffc107;
    border-bottom: 4px solid #ffc107;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.urgency-note {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 2rem;
}

.cta-urgent {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

.cta-urgent:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.final-push {
    padding: 7rem 5%;
    background: #2c3e50;
    color: #fff;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-final {
    display: inline-block;
    background: #fff;
    color: #2c3e50;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s;
}

.cta-final:hover {
    transform: translateY(-2px);
}

.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

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

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

.footer-section p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    display: none;
}

.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: 1.5rem;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-hero {
    margin-top: 70px;
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 5%;
    background: #fff;
}

.about-visual {
    padding: 0;
    background: #f8f9fa;
}

.about-values {
    padding: 6rem 5%;
    background: #fff;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-team {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.about-cta {
    padding: 5rem 5%;
    background: #fff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #ecf0f1;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.services-detail {
    padding: 3rem 5%;
    background: #fff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-card.featured-service {
    border: 3px solid #e74c3c;
    position: relative;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.services-cta {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.contact-section {
    padding: 4rem 5%;
    background: #fff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #667eea;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #764ba2;
}

.contact-cta {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.thanks-section {
    margin-top: 70px;
    min-height: 70vh;
    padding: 5rem 5%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.selected-service-box {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-chosen {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.price-chosen {
    font-size: 1.1rem;
    color: #555;
}

.thanks-next {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    list-style: none;
}

.thanks-steps li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-tertiary {
    display: inline-block;
    background: transparent;
    color: #667eea;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.cta-tertiary:hover {
    background: #667eea;
    color: #fff;
}

.policy-section {
    margin-top: 70px;
    padding: 4rem 5%;
    background: #fff;
}

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

.policy-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.policy-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.policy-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.policy-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.policy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-container ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.policy-container a {
    color: #667eea;
    text-decoration: underline;
}

.policy-container a:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

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

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

    .visual-left {
        min-height: 300px;
    }

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

    .services-funnel {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}