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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cookie-content p {
    font-size: 14px;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-cookie {
    background: #ff5722;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #e64a19;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 20px 5%;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 5%;
    text-align: center;
    color: #ffffff;
}

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

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #ff5722;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,87,34,0.3);
}

.cta-hero:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,87,34,0.4);
}

.story-intro {
    padding: 80px 5%;
    background: #f9f9f9;
}

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

.story-lead {
    font-size: 24px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 30px;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.problem-amplification {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #ff5722;
}

.stat-label {
    font-size: 18px;
    margin-top: 10px;
}

.insight-reveal {
    padding: 100px 5%;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-image-left {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.testimonial-inline {
    padding: 80px 5%;
    background: #fafafa;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border-left: 4px solid #ff5722;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

.technology-deep {
    padding: 100px 5%;
}

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

.tech-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.tech-header p {
    font-size: 18px;
    color: #555;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    font-weight: 800;
    color: #ff5722;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.social-proof {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.proof-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.proof-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.proof-item {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 3px solid #ff5722;
}

.proof-item p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.proof-item span {
    font-size: 14px;
    opacity: 0.8;
}

.models-showcase {
    padding: 100px 5%;
    background: #ffffff;
}

.models-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.models-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.models-header p {
    font-size: 18px;
    color: #555;
}

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

.model-card {
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.model-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.model-img-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.model-img-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.model-img-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.model-img-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.model-img-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.model-img-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.model-info {
    padding: 30px;
}

.model-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.model-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.model-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.model-specs span {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.model-price {
    font-size: 32px;
    font-weight: 800;
    color: #ff5722;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 30px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #333;
}

.urgency-block {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.urgency-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.urgency-note {
    font-size: 16px;
    opacity: 0.9;
}

.form-section {
    padding: 100px 5%;
    background: #f9f9f9;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5722;
    box-shadow: 0 0 0 3px rgba(255,87,34,0.1);
}

.btn-submit {
    padding: 16px 40px;
    background: #ff5722;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-submit:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,87,34,0.3);
}

.final-cta {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.final-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-final {
    display: inline-block;
    padding: 16px 40px;
    background: #ff5722;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.sticky-btn {
    display: block;
    padding: 14px 30px;
    background: #ff5722;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255,87,34,0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #e64a19;
    transform: scale(1.05);
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    display: block;
}

.footer-col a {
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

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

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.services-intro {
    padding: 60px 5%;
    background: #f9f9f9;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.services-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.services-catalog {
    padding: 80px 5%;
}

.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.srv-img-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.srv-img-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.srv-img-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.srv-img-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.srv-img-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.srv-img-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-category {
    font-size: 14px;
    color: #ff5722;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    margin: 20px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.service-price-box {
    margin: 25px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: #ff5722;
}

.btn-service-select {
    width: 100%;
    padding: 14px 30px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-guarantee {
    padding: 80px 5%;
    background: #f9f9f9;
}

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

.guarantee-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guarantee-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.guarantee-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ff5722;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.service-cta {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.service-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.service-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background: #ff5722;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.about-hero {
    margin-top: 70px;
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.about-story {
    padding: 100px 5%;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
}

.about-img-1 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.about-philosophy {
    padding: 100px 5%;
    background: #f9f9f9;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.philosophy-item {
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff5722;
    font-weight: 700;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-team {
    padding: 100px 5%;
}

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

.team-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-header p {
    font-size: 18px;
    color: #555;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-photo-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-photo-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.team-photo-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    font-size: 14px;
    color: #ff5722;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.about-process {
    padding: 100px 5%;
    background: #f9f9f9;
}

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

.process-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #ff5722;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-values {
    padding: 100px 5%;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff5722;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-cta {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-info {
    padding: 100px 5%;
}

.contact-info-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    font-size: 16px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item strong {
    font-size: 16px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #4caf50;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.order-details {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #333;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #ff5722;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e64a19;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.thanks-info {
    text-align: left;
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-info ul {
    padding-left: 25px;
}

.thanks-info li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-page {
    margin-top: 70px;
    padding: 80px 5%;
    background: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-update {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-container p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-container ul,
.legal-container ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-container li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-container a {
    color: #ff5722;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #e64a19;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-headline {
        font-size: 64px;
    }

    .hero-subtext {
        font-size: 24px;
    }

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

    .problem-text,
    .problem-visual {
        flex: 1;
    }

    .problem-visual {
        flex-direction: row;
    }

    .insight-container {
        flex-direction: row;
    }

    .insight-image-left {
        flex: 1;
        height: auto;
    }

    .insight-content {
        flex: 1;
    }

    .tech-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 calc(50% - 20px);
    }

    .proof-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .proof-item {
        flex: 1 1 calc(50% - 15px);
    }

    .model-card {
        flex-direction: row;
    }

    .model-image {
        width: 40%;
        height: auto;
    }

    .model-info {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(25% - 30px);
    }

    .service-item {
        flex-direction: row;
    }

    .service-image {
        width: 40%;
        height: auto;
    }

    .service-content {
        flex: 1;
    }

    .guarantee-grid {
        flex-direction: row;
    }

    .guarantee-item {
        flex: 1;
    }

    .story-container {
        flex-direction: row;
    }

    .story-block {
        flex: 1;
    }

    .story-image {
        flex: 1;
        height: auto;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 20px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 27px);
    }

    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 20px);
    }

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

    .info-block {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .legal-container {
        padding: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 72px;
    }

    .tech-features {
        flex-direction: column;
    }

    .feature-item {
        flex: 1 1 100%;
    }

    .proof-grid {
        flex-direction: row;
    }

    .proof-item {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .philosophy-item {
        flex: 1 1 100%;
    }

    .values-list {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}