/* Font Faces */
@font-face {
    font-family: 'Typo3';
    src: url('fonts/typo3Normal.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Typo3';
    src: url('fonts/Typo3-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-color: #1a0089;
    --primary-dark: #0f0f4a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-border: #e5e5e5;
    --font-display: 'Typo3', Georgia, 'Times New Roman', serif;
    --font-body: 'Urbanist', 'Inter', system-ui, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

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

.nav-links > li {
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 180px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-dark);
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link-partner {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link-partner:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
}

.mobile-nav-links .btn {
    font-family: var(--font-body);
    font-weight: 500;
}

.mobile-nav-links a[href*="#partner"] {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b7355 0%, #a08060 50%, #6b5a47 100%);
    position: relative;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Real image styles */
.hero-bg-img,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Verified Designers Section */
.verified-designers {
    padding: 100px 0;
    background-color: var(--white);
}

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

.phone-mockups {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.phone-mockup {
    width: 280px;
}

.phone-frame {
    background-color: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.phone-frame-img {
    position: relative;
    width: 100%;
}

.phone-frame-img .frame-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.phone-screen-overlay {
    position: absolute;
    top: 3%;
    left: 5%;
    width: 90%;
    height: 94%;
    border-radius: 22px;
    overflow: hidden;
    z-index: 1;
}

.phone-screen-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.phone-screen {
    background-color: var(--white);
    border-radius: 32px;
    height: 560px;
    overflow: hidden;
    padding: 20px;
}

.placeholder-screen {
    font-size: 12px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 15px;
}

.app-header-alt {
    margin-bottom: 15px;
}

.app-header-alt p {
    font-weight: 600;
    font-size: 16px;
}

.app-header-alt .subtitle {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Phone screen with screenshot image */
.phone-screen.screenshot {
    padding: 0;
}

.phone-screen.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.product-info .product-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.product-info .product-price {
    color: var(--primary-color);
    font-weight: 600;
}

.search-bar {
    background: var(--gray-light);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    background: var(--gray-light);
    color: var(--text-dark);
}

.tag.active {
    background: var(--primary-color);
    color: var(--white);
}

.brands-list .list-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.brand-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-border);
}

.profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd4d4 0%, #ffe0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.shop-name {
    font-weight: 600;
}

.shop-location {
    font-size: 11px;
    color: var(--text-light);
}

.portfolio-section .section-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.portfolio-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 8px;
}

/* Experience Banner */
.experience-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 0 10px;
}

.tag-label {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid currentColor;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

.tag-label-btn {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.tag-label-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.experience-banner h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.experience-banner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* For Clients Section */
.for-clients {
    padding: 100px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 43fr 57fr;
    grid-template-rows: 1.65fr 1fr;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 731 / 634;
}

.grid-image {
    border-radius: 16px;
    overflow: hidden;
}

.placeholder-img {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    min-height: 200px;
}

/* Grid/collage images with real photos */
.grid-image img,
.collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Step images with real photos */
.step-image img:not(.discover-overlay-img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Team member images with real photos */
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
    display: block;
}

/* CTA background with real image */
.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.clients-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.clients-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* For Designers Section */
.for-designers {
    padding: 100px 0;
    background-color: var(--white);
}

.designers-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.designers-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.designers-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.image-collage {
    display: grid;
    grid-template-columns: 43fr 57fr;
    grid-template-rows: 1.65fr 1fr;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 731 / 634;
}

.collage-image {
    border-radius: 16px;
    overflow: hidden;
}

/* Mission Section */
.mission {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 0 10px;
}

.mission .mission-btn {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.mission .mission-btn:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.mission h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.mission p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    overflow: hidden;
}

.how-it-works h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Horizontal line through step numbers */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 300px; /* Position at top edge of step numbers (280px image + 20px margin) */
    left: -100vw;
    width: calc(100% + 100vw - 50px);
    height: 1px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 95%, transparent 100%);
    z-index: 1;
}

.step {
    text-align: left;
    position: relative;
}

.step-number {
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
}

.step-image {
    position: relative;
    height: 280px;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

.step-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.item-tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

.discover-overlay-img {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40%;
    height: auto;
    border-radius: 8px;
    z-index: 2;
    object-fit: contain;
}

.delivery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #22c55e;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 0;
    margin-bottom: 16px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 12px;
}

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

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--white);
}

.team h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: left;
}

.member-image {
    aspect-ratio: 1;
    border-radius: 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.member-title {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

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

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 0;
    overflow: visible;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c4b5a0 0%, #a89888 100%);
    position: relative;
}

.cta-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 80px 0 30px;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-border);
}

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

.footer-legal a {
    font-size: 12px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-social svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .section-header h2,
    .experience-banner h2,
    .clients-content h2,
    .designers-content h2,
    .mission h2,
    .how-it-works h2,
    .team h2,
    .faq h2 {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 44px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hero {
        margin-top: 60px;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .phone-mockups {
        flex-direction: column;
        align-items: center;
    }

    .clients-grid,
    .designers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .designers-grid {
        direction: ltr;
    }

    .designers-content {
        order: 1;
    }

    .designers-images {
        order: 2;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-member {
        flex: 0 0 70%;
        scroll-snap-align: start;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2,
    .experience-banner h2,
    .clients-content h2,
    .designers-content h2,
    .mission h2,
    .how-it-works h2,
    .team h2,
    .faq h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .experience-banner h2 {
        font-size: 28px;
    }

    .experience-banner {
        margin: 0;
        border-radius: 0;
    }

    .hero {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 20px;
    }

    .team-grid {
        gap: 12px;
    }

    .team-member {
        flex: 0 0 75%;
    }

    /* Keep 2x2 dynamic grid on all mobile sizes */
    .for-clients .image-grid,
    .for-designers .image-collage {
        grid-template-columns: 43fr 57fr;
        grid-template-rows: 1.65fr 1fr;
        max-width: 343px;
        height: 300px;
        margin: 0 auto;
        border-radius: 12px;
        gap: 8px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: preloaderSpin 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes preloaderSpin {
    0% {
        transform: scale(0.2) rotate(-180deg);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@media (min-width: 769px) {
    .preloader {
        display: none !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Link */
.section-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.section-link:hover h2 {
    color: var(--primary-color);
}

/* Desktop/Mobile visibility utilities */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block;
}

h2.desktop-only,
p.desktop-only {
    display: block;
}

a.desktop-only {
    display: inline-block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    h2.mobile-only,
    p.mobile-only,
    a.mobile-only {
        display: block !important;
    }

    a.mobile-only {
        display: inline-block !important;
    }
}

/* Toggle Buttons for Mobile Experience Banner */
.toggle-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.toggle-btn {
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: rgba(255, 255, 255, 0.1);
}

/* Experience Banner curved corners */
.experience-banner {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .experience-banner {
        border-radius: 20px;
        margin: 0 10px;
    }

    /* Mobile For Clients - show images above text */
    .clients-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .clients-images {
        order: 1;
    }

    .clients-content {
        order: 2;
        text-align: left;
    }

    /* Mobile For Clients - dynamic 2x2 grid */
    .for-clients .image-grid {
        display: grid;
        grid-template-columns: 43fr 57fr;
        grid-template-rows: 1.65fr 1fr;
        gap: 8px;
        max-width: 343px;
        height: 300px;
        margin: 0 auto;
        border-radius: 12px;
    }

    .for-clients .grid-image {
        border-radius: 10px;
    }

    /* Mobile For Designers layout - images above text */
    .designers-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .designers-images {
        order: 1 !important;
    }

    .designers-content {
        order: 2 !important;
        text-align: left;
    }

    /* Mobile For Designers - dynamic 2x2 grid */
    .for-designers .image-collage {
        display: grid;
        grid-template-columns: 43fr 57fr;
        grid-template-rows: 1.65fr 1fr;
        gap: 8px;
        max-width: 343px;
        height: 300px;
        margin: 0 auto;
        border-radius: 12px;
    }

    .for-designers .collage-image {
        border-radius: 10px;
    }

    /* Hide the horizontal line on mobile */
    .steps-grid::before {
        display: none;
    }
}

/* Privacy Policy Modal */
