/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.6;
    color: #474747;
    background: white;
    overflow-x: hidden;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #0E84E5;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 42px;
    line-height: 50.4px;
}

h2 {
    font-size: 42px;
    line-height: 58.8px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
}

h4 {
    font-size: 24px;
    line-height: 26.4px;
}

p {
    font-size: 21px;
    line-height: 33.6px;
    color: #474747;
}

/* Buttons */
.cta-button {
    height: 48px;
    padding: 12px 24px;
    background: #0E84E5;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0d76cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 132, 229, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 188px 0 120px;
    position: relative;
    background: white;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-text {
    flex: 1;
    max-width: 807px;
}

.hero-badge {
    color: #848484;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.22px;
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
    color: #0E84E5;
}

.hero-description {
    margin-bottom: 32px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: white;
}

.feature-cards {
    display: flex;
    gap: 39px;
    justify-content: center;
}

.feature-card {
    width: 546px;
    padding: 24px;
    background: #0E84E5;
    border-radius: 16px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card h3 {
    color: white;
    font-size: 24px;
    line-height: 26.4px;
    font-weight: 500;
}

.feature-card p {
    color: white;
    font-size: 16px;
    line-height: 22.4px;
}

.feature-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

/* Device Mockup */
.device-mockup {
    position: relative;
    width: 100%;
    height: 400px;
}

.device-mockup img:first-child {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 327px;
    height: 254px;
    border-radius: 9px;
    background: #FCFDFF;
}

.device-mockup img:last-child {
    position: absolute;
    right: 0;
    top: 0;
    width: 244px;
    height: 368px;
    border-radius: 12px;
}

/* Product Showcase */
.product-showcase {
    position: relative;
    width: 100%;
    height: 400px;
}

.product-card {
    position: absolute;
    width: 255px;
    height: 251px;
    background: white;
    border-radius: 11px;
    border: 1px solid white;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-card:nth-child(1) {
    left: 19px;
    top: 126px;
    z-index: 1;
}

.product-card:nth-child(2) {
    left: 113px;
    top: 10px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.product-card:nth-child(3) {
    left: 224px;
    top: 136px;
    z-index: 1;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

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

.product-info {
    padding: 10px;
}

.product-info h4 {
    color: #434242;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-info p {
    color: #848484;
    font-size: 8px;
    line-height: 12px;
    margin-bottom: 8px;
}

.product-price {
    color: #434242;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-btn {
    width: 100%;
    padding: 7px 10px;
    background: #0E84E5;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Gallery Showcase */
.gallery-showcase {
    position: relative;
    width: 100%;
    height: 400px;
}

.gallery-showcase img {
    position: absolute;
    border-radius: 16px;
    border: 1px solid white;
}

.gallery-showcase img:nth-child(1) {
    width: 283px;
    height: 241px;
    top: 127px;
    right: 0;
}

.gallery-showcase img:nth-child(2) {
    width: 241px;
    height: 226px;
    top: 52px;
    right: 42px;
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.25);
}

.gallery-showcase img:nth-child(3) {
    width: 231px;
    height: 225px;
    top: 142px;
    left: 32px;
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.25);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 100px;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
}

.content-text {
    flex: 1;
    max-width: 780px;
}

.content-text h2 {
    margin-bottom: 32px;
}

.content-text p {
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: 21px;
    font-weight: 700;
    line-height: 33.6px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: #0E84E5;
    border-radius: 2px;
}

/* Editor Interface */
.editor-interface {
    display: flex;
    gap: 20px;
    max-width: 773px;
}

.editor-sidebar {
    width: 513px;
    background: white;
    border-radius: 9px;
    padding: 23px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.editor-sidebar h4 {
    color: #434242;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.add-section-btn {
    background: #0E84E5;
    color: white;
    border: none;
    border-radius: 9px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
}

.section-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-item {
    padding: 12px;
    background: white;
    border: 1px solid #C5C5C5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #434242;
}

.section-item.disabled {
    opacity: 0.3;
}

.section-item.add-here {
    border-color: #0E84E5;
    color: #0E84E5;
    justify-content: center;
    font-weight: 600;
}

.section-item::after {
    content: 'Düzenle';
    color: #0E84E5;
    font-size: 10px;
    font-weight: 600;
    text-decoration: underline;
}

.section-item.add-here::after {
    content: '';
}

.editor-preview {
    width: 461px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    border: 1px solid #C8C8C8;
    border-radius: 9px;
    padding: 23px;
}

.editor-preview h4 {
    color: #434242;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.photo-gallery {
    display: flex;
    gap: 11px;
    overflow-x: auto;
}

.photo-gallery img {
    width: 72px;
    height: 72px;
    border-radius: 9px;
    object-fit: cover;
}

.add-photo {
    width: 72px;
    height: 72px;
    border: 2px solid #0E84E5;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    color: #0E84E5;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 701px;
}

.service-card {
    width: 341px;
    background: white;
    border: 1px solid #BFBFBF;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:nth-child(2) {
    margin-left: 189px;
    margin-top: -48px;
}

.service-card:nth-child(3) {
    margin-left: 360px;
    margin-top: -48px;
}

.service-card.featured {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

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

.service-info {
    padding: 13px;
}

.instructor-avatar,
.instructor-avatars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

.instructor-avatar img,
.instructor-avatars img {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid white;
}

.service-info h4 {
    color: #434242;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-info p {
    color: #848484;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 12px;
}

.service-price {
    color: #434242;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-btn {
    width: 100%;
    padding: 9px 13px;
    background: #0E84E5;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.service-btn.featured {
    font-weight: 700;
}

/* Domain Section */
.domain-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.domain-setup {
    display: flex;
    gap: 40px;
    max-width: 688px;
}

.basic-info-panel {
    width: 485px;
    background: white;
    border: 1px solid #BFBFBF;
    border-radius: 9px;
    padding: 24px;
}

.basic-info-panel h4 {
    color: #434242;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-avatar {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid #B1B1B1;
    overflow: hidden;
}

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

.edit-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #D3D3D3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input-field label {
    position: absolute;
    top: -7px;
    left: 13px;
    background: white;
    padding: 0 3px;
    color: #0E84E5;
    font-size: 11px;
    border-radius: 3px;
}

.input-field input,
.input-field textarea,
.input-field select {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #0E84E5;
    border-radius: 7px;
    font-size: 11px;
    color: #434242;
    background: white;
}

.input-field textarea {
    height: 122px;
    resize: none;
}

.link-field {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #0E84E5;
    border-radius: 7px;
    background: white;
    font-size: 11px;
}

.domain-prefix {
    color: #D3D3D3;
}

.domain-slug {
    color: #434242;
    font-weight: 500;
}

.copy-icon {
    margin-left: auto;
    width: 18px;
    height: 18px;
    background: #0E84E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.domain-panel {
    width: 298px;
    background: white;
    border: 1px solid #BFBFBF;
    border-radius: 9px;
    padding: 20px 13px 13px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.domain-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid #0E84E5;
    border-radius: 7px;
    background: white;
    font-size: 11px;
    color: #434242;
}

.domain-option.selected {
    position: relative;
}

.status-badge {
    background: #0E84E5;
    color: white;
    padding: 2px 4px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
}

.use-btn {
    color: #0E84E5;
    font-size: 9px;
    font-weight: 600;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
}

.new-domain-btn,
.buy-domain-btn {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-domain-btn {
    background: #0E84E5;
    color: white;
    border: 1px solid #0E84E5;
}

.buy-domain-btn {
    background: white;
    color: #0E84E5;
    border: 1px solid #0E84E5;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-showcase {
    position: relative;
    width: 842px;
    height: 627px;
}

.blog-card {
    position: absolute;
    width: 456px;
    background: white;
    border: 1px solid #BFBFBF;
    border-radius: 7px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.blog-card.rotated-left {
    transform: rotate(-15deg);
    left: 26px;
    top: 171px;
}

.blog-card.rotated-right {
    transform: rotate(15deg);
    right: 26px;
    top: 60px;
}

.blog-card.rotated-slight {
    transform: rotate(-8deg);
    left: 159px;
    top: 60px;
    background: rgba(255, 255, 255, 0.6);
}

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

.blog-content {
    padding: 18px;
}

.blog-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.tag {
    background: #0E84E5;
    color: white;
    padding: 4px 9px;
    border-radius: 73px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content h4 {
    color: #434242;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-content p {
    color: #434242;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 16px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 16px;
}

.blog-author img {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 1px solid white;
}

.blog-author span {
    color: #434242;
    font-size: 15px;
    font-weight: 700;
}

.blog-btn {
    width: 100%;
    padding: 12px 18px;
    background: #0E84E5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Steps Section */
.steps-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.steps-header {
    max-width: 779px;
    margin-bottom: 80px;
}

.steps-header h2 {
    font-size: 54px;
    line-height: 75.6px;
    margin-bottom: 32px;
}

.steps-header p {
    font-size: 21px;
    font-weight: 500;
    line-height: 33.6px;
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin-left: auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: #0E84E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 21px;
    font-weight: 500;
    line-height: 33.6px;
}

.optional {
    font-weight: 500;
}

/* Final Features Section */
.final-features-section {
    padding: 120px 0;
    background: white;
}

.feature-grid {
    display: flex;
    gap: 32px;
}

.final-feature-card {
    flex: 1;
    padding: 64px;
    background: #F4F8FC;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.final-feature-card .feature-icon {
    font-size: 60px;
    color: #0E84E5;
    margin-bottom: 16px;
}

.final-feature-card h3 {
    color: #0E84E5;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-feature-card p {
    color: #676767;
    font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
}

/* Decorative Elements */
.decorative-blur {
    position: absolute;
    width: 321px;
    height: 803px;
    background: linear-gradient(31deg, rgba(14, 132, 229, 0.1) 0%, rgba(14, 132, 229, 0.1) 100%);
    filter: blur(17px);
    z-index: -1;
}

.decorative-blur-1 {
    left: -12px;
    top: 5093px;
}

.decorative-blur-2 {
    right: 0;
    top: 1910px;
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .container {
        padding: 0 50px;
    }
    
    h1, h2 {
        font-size: 36px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .feature-cards {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .feature-card {
        width: calc(50% - 10px);
        min-width: 400px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content,
    .content-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-row.reverse {
        flex-direction: column;
    }
    
    .feature-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 600px;
    }
    
    .feature-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .steps-list {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1, h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 24px;
    }
    
    p {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .features-section,
    .content-section,
    .steps-section,
    .final-features-section {
        padding: 60px 0;
    }
    
    .final-feature-card {
        padding: 40px;
    }
    
    .step {
        gap: 20px;
    }
    
    .step-content h3 {
        font-size: 24px;
    }
    
    .steps-header h2 {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .editor-interface {
        flex-direction: column;
    }
    
    .domain-setup {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-showcase {
        transform: scale(0.8);
        transform-origin: top left;
    }
    
    .service-cards .service-card:nth-child(2),
    .service-cards .service-card:nth-child(3) {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    h1, h2 {
        font-size: 24px;
    }
    
    .hero-badge {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
        height: auto;
    }
    
    .final-feature-card {
        padding: 24px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .blog-showcase {
        transform: scale(0.6);
    }
} 