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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #FBF9FF;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #FFFFFF;
    overflow: hidden;
}

/* Background Elements */
.bg-wrapper {
    position: absolute;
    top: -37px;
    left: -542px;
    width: 3061px;
    height: 1117px;
    background: #FBF5FE;
    pointer-events: none;
    z-index: 0;
}

.bg-wrapper .bg-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 2073px;
    height: 958px;
    background: #FBF9FF;
}

.path-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 3061px;
    height: 195px;
    opacity: 0;
    pointer-events: none;
}

.mask-group {
    position: absolute;
    top: -37px;
    left: -542px;
    width: 3061px;
    height: 1117px;
    pointer-events: none;
    z-index: 1;
}

.mask-group .bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 3061px;
    height: 1117px;
    background: #FBF5FE;
}

.mask-group .bg-wrapper .bg-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 2073px;
    height: 958px;
    background: #FBF9FF;
}

.mask-group .path-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 3061px;
    height: 195px;
    opacity: 0;
    pointer-events: none;
}

.vector-bg {
    position: absolute;
    top: 3px;
    left: 603px;
    width: 1941px;
    height: 1113.71px;
    opacity: 1;
}

/* Header */
.header {
    position: relative;
    padding: 32px 120px;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.logo {
    width: 86px;
    height: 86px;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #CB6CE6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: #CB6CE6;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
}

.mobile-nav-item {
    padding: 18px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #454545;
    text-decoration: none;
    border-bottom: 1px solid #E7E7E7;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover {
    color: #CB6CE6;
}

.mobile-nav-cta {
    margin-top: 20px;
    padding: 16px 24px;
    background: #CB6CE6;
    color: #FFFFFF !important;
    text-align: center;
    border-radius: 50px;
    border: none;
}

.mobile-nav-cta:hover {
    background: #B85BD4;
}

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

.nav-item {
    padding: 16px;
    cursor: pointer;
    position: relative;
}

.nav-item a,
.nav-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #454545;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-item:hover a,
.nav-item:hover span {
    color: #CB6CE6;
}

.nav-item.active a,
.nav-item.active span {
    color: #CB6CE6;
}

.nav-item.active {
    border-bottom: 1px solid #CB6CE6;
}

/* Button */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 200px;
    height: 56px;
    background: #CB6CE6;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

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

/* Main Content */
.main-content {
    position: relative;
    margin: 0 auto;
    padding: 0 120px;
    padding-top: 95px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 150px;
    z-index: 5;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 42px;
    width: 663px;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.headings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 610px;
}

.gradient-text {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2em;
    background: linear-gradient(180deg, #CB6CE6 8%, #A834C5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.main-title {
    font-weight: 600;
    font-size: 52px;
    line-height: 1em;
    color: #334C57;
    margin: 0;
}

.description {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5em;
    color: #5D5D5D;
    margin: 0;
}

.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    width: 658px;
    height: 628.37px;
    object-fit: cover;
}

/* Services Section */
.services {
    width: 100%;
    background: #FFFFFF;
    padding: 80px 120px;
}

.services-container {
    max-width: 1412px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 64px;
}

.services-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    text-align: center;
    color: #CB6CE6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.services-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1em;
    text-align: center;
    color: #334C57;
    margin: 0;
    width: 326px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
    justify-content: center;
}

.service-card {
    width: 450px;
    height: 298px;
    background: #FFFFFF;
    border: 2px solid #F7EAFD;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(203, 108, 230, 0.15);
}

/* Individual card backgrounds */
.service-card:nth-child(1) {
    background-image: url('../images/ui/card-bg-sahiplendirme.svg');
}

.service-card:nth-child(2) {
    background-image: url('../images/ui/card-bg-kayip.svg');
}

.service-card:nth-child(3) {
    background-image: url('../images/ui/card-bg-topluluk.svg');
}

.service-card:nth-child(4) {
    background-image: url('../images/ui/card-bg-kan.svg');
}

.service-card:nth-child(5) {
    background-image: url('../images/ui/card-bg-ai.svg');
}

.service-card:nth-child(6) {
    background-image: url('../images/ui/card-bg-otomat.svg');
}

.card-content {
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    gap: 23px;
    height: 100%;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 17px;
}

.card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 100%;
    flex: 1;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 27px;
    line-height: 1.5185em;
    color: #478493;
    margin: 0;
    width: 203px;
    height: auto;
}

.card-badge {
    display: flex;
    align-items: center;
    gap: 7px;
}

.card-badge span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #CB6CE6;
}

.badge-dot {
    width: 5px;
    height: 5px;
    background: #CB6CE6;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #454545;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    width: 100%;
    background: #F2F9F9;
    padding: 79px 0 0 0;
    position: relative;
    overflow: hidden;
    min-height: 1445px;
}

/* Background vector decoration */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 292px;
    left: -591px;
    width: 1498.26px;
    height: 1460.22px;
    background: url('../images/backgrounds/how-it-works-vector.svg') no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.how-it-works-header {
    text-align: center;
    margin: 0 auto 136px;
    position: relative;
    z-index: 2;
    max-width: 578px;
}

.how-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.how-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1em;
    color: #334C57;
    margin: 0;
}

.how-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5em;
    color: #5D5D5D;
    max-width: 895px;
    margin: 32px auto 0;
    text-align: center;
}

.how-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 63px;
    position: relative;
    z-index: 2;
}

.tab-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    width: 200px;
    height: 56px;
    background: transparent;
    border: 1.5px solid #A834C5;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #A834C5;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.tab-btn svg,
.tab-btn img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tab-btn:hover {
    background: rgba(168, 52, 197, 0.05);
}

.tab-btn.active {
    background: linear-gradient(180deg, #CB6CE6 0%, #A834C5 100%);
    border-color: transparent;
    color: #752286;
}

.tab-btn.active svg,
.tab-btn.active img {
    filter: brightness(0) invert(1);
}

.how-content {
    position: relative;
    z-index: 2;
}

.content-panel {
    display: none;
    position: relative;
    width: 100%;
    min-height: 1047px;
    padding: 0;
}

.content-panel.active {
    display: block;
}

.panel-birlesik {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 140px;
}

.panel-image {
    /* position: absolute; */
    width: 397px;
    height: 820px;
    z-index: 1;
}

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

.panel-text {
    /* position: absolute; */
    margin-top: 240px;
    width: 663px;
    z-index: 2;
}

.panel-text-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.panel-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 610px;
}

.panel-text h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1em;
    color: #334C57;
    margin: 0;
}

.panel-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5em;
    color: #5D5D5D;
    margin: 0;
}

.panel-text .btn-primary {
    margin-top: 60px;
    width: 285px;
    height: 56px;
}

/* Partners Section */
.partners {
    width: 100%;
    background: #FFFFFF;
    padding: 108px 0 158px 0;
    position: relative;
    overflow: visible;
}

.partners::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(192, 219, 225, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.partners-header {
    text-align: center;
    margin-bottom: 108px;
    position: relative;
    z-index: 2;
}

.partners-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.partners-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1em;
    color: #334C57;
    margin: 0;
}

.partners-container {
    width: 100%;
    max-width: 1736px;
    margin: 0 auto;
    padding: 0 92px;
    position: relative;
    z-index: 2;
}

.partner-logo {
    width: 100%;
    background: #FAFAFA;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 38.5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partner-logo img {
    width: auto;
    height: 200px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Team Section */
.team {
    width: 100%;
    background: #FFFFFF;
    padding: 32px 343px 88px 343px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-header {
    text-align: center;
    margin-bottom: 97px;
}

.team-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.team-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1em;
    color: #334C57;
    margin: 0;
}

.team-container {
    display: flex;
    gap: 68px;
    margin-bottom: 72px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 10px;
    position: relative;
}

.team-member img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.member-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 132px;
}

.member-info h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.5185em;
    text-align: center;
    color: #334C57;
    margin: 0;
}

.member-info p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5em;
    text-align: center;
    color: #3E6D7C;
    margin: 0;
}

.team-btn {
    width: 200px;
    height: 56px;
}

/* Contact Form Section */
.contact-form {
    width: 100%;
    background: #FFFFFF;
    padding: 79px 0 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background wrapper - Primary/50 */
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -542px;
    width: 3061px;
    height: 917.39px;
    background: #FBF5FE;
    pointer-events: none;
    z-index: 0;
}

/* Background base layer - FBF9FF */
.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -542px;
    width: 2073px;
    height: 786.8px;
    background: #FBF9FF;
    pointer-events: none;
    z-index: 1;
}

/* Path SVG layer - decorative element */
.contact-form-container::before {
    content: '';
    position: absolute;
    top: -378px;
    left: 50%;
    transform: translateX(calc(-50% - 542px));
    width: 3061px;
    height: 160.15px;
    background: url('../images/backgrounds/contact-form-path.svg') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.contact-header {
    text-align: center;
    margin: 0 auto 112px;
    position: relative;
    z-index: 2;
    max-width: 578px;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1em;
    color: #334C57;
    margin: 0;
}

.contact-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5em;
    color: #5D5D5D;
    max-width: 895px;
    margin: 32px auto 0;
    text-align: center;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 732px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 42px;
}

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

.form-row .form-group {
    width: 345px;
    flex: none;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    color: #3D3D3D;
    padding: 2px 0 0 0;
}

.form-group input,
.form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #3D3D3D;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    padding: 18px 24px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input {
    height: 50px;
    border-radius: 50px;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
    padding: 23px 24px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #CB6CE6;
    box-shadow: 0 0 0 3px rgba(203, 108, 230, 0.1);
}

.contact-form-container .btn-primary {
    width: 200px;
    height: 56px;
    align-self: center;
}

/* Footer */
.footer {
    width: 100%;
    background: #FFFFFF;
    padding: 77px 120px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1680px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #6D6D6D;
    text-decoration: none;
    padding: 16px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #CB6CE6;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.footer-line {
    width: 100%;
    height: 1px;
    background: #888888;
    opacity: 0.2;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #CB6CE6;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #CB6CE6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B85BD4;
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {

    /* Header */
    .header {
        padding: 20px 60px;
    }

    .nav {
        gap: 30px;
    }

    .logo {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
    }

    /* Banner */
    .banner {
        min-height: auto;
        padding: 60px 40px 80px;
    }

    .main-content {
        padding-top: 60px;
        gap: 60px;
    }

    .content-left {
        width: 100%;
        max-width: 550px;
    }

    .headings {
        gap: 48px;
    }

    .main-heading {
        font-size: 48px;
    }

    .gradient-text {
        font-size: 72px;
    }

    .app-mockup {
        width: 480px;
        height: 458px;
    }

    /* Services */
    .services {
        padding: 60px 60px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        width: 100%;
        max-width: 450px;
        height: auto;
        min-height: 298px;
    }

    /* How It Works */
    .how-it-works {
        padding: 60px 40px 0 40px;
        min-height: auto;
    }

    .how-tabs {
        flex-wrap: wrap;
        gap: 16px;
    }

    .content-panel {
        min-height: 800px;
    }

    .panel-image {
        width: 300px;
        height: 620px;
        left: 40px;
        top: 60px;
    }

    .panel-text {
        margin-top: 0;
        width: 480px;
    }

    .panel-birlesik {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    /* Partners */
    .partners {
        padding: 80px 40px 120px;
    }

    .partners-container {
        padding: 0 40px;
    }

    .partner-logo img {
        height: 150px;
    }

    /* Team */
    .team {
        padding: 32px 60px 88px;
    }

    .team-container {
        gap: 40px;
    }

    .team-member img {
        width: 180px;
        height: 180px;
    }

    /* Contact Form */
    .contact-form {
        padding: 60px 40px 100px;
    }

    .contact-form-container {
        width: 100%;
        max-width: 600px;
    }

    .form-row {
        gap: 24px;
    }

    .form-row .form-group {
        width: 100%;
    }

    .form-group input {
        width: 100%;
    }

    .form-group textarea {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 60px 60px;
    }

    .footer-info {
        gap: 40px;
    }
}

/* Tablet Small - 768px and below */
@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 20px 30px;
    }

    .header-content {
        justify-content: space-between;
        gap: 20px;
    }

    .logo {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
    }

    .cta-link {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        flex-shrink: 0;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Banner */
    .banner {
        padding: 40px 20px 60px;
        position: relative;
        overflow: hidden;
        min-height: auto;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
        position: relative;
        z-index: 5;
        text-align: center;
    }

    .content-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .headings {
        gap: 24px;
        margin-bottom: 24px;
        align-items: center;
        text-align: center;
    }

    .main-heading {
        text-align: center;
        font-size: 48px;
    }

    .gradient-text {
        text-align: center;
        font-size: 64px;
    }

    .description {
        font-size: 18px;
        line-height: 1.6em;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .cta-buttons {
        gap: 20px;
        justify-content: center;
        margin-top: 24px;
        width: auto;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 160px;
        height: 52px;
    }

    .main-heading {
        font-size: 36px;
    }

    .gradient-text {
        font-size: 56px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .app-mockup {
        width: 360px;
        height: 344px;
    }

    /* Services */
    .services {
        padding: 60px 30px;
    }

    .services-title {
        font-size: 36px;
        width: auto;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .card-content {
        padding: 24px;
        gap: 16px;
        height: auto;
        min-height: auto;
    }

    .card-top {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        width: 100%;
    }

    .card-info {
        width: 100%;
        align-items: center;
    }

    .card-icon {
        width: 80px;
        height: 80px;
    }

    .card-title {
        font-size: 24px;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .card-description {
        font-size: 16px;
        line-height: 1.6em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* How It Works */
    .how-it-works {
        padding: 60px 20px 0 20px;
    }

    .how-it-works-header {
        margin: 0 auto 60px;
    }

    .how-title {
        font-size: 36px;
    }

    .how-description {
        font-size: 16px;
    }

    .how-tabs {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .content-panel {
        min-height: auto;
    }

    .panel-image {
        position: static;
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0;
    }

    .panel-image img {
        width: 100%;
        height: auto;
    }

    .how-content {
        margin-bottom: 40px;
    }

    .panel-text {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .panel-text h3 {
        font-size: 36px;
        text-align: center;
    }

    .panel-text p {
        font-size: 16px;
        text-align: center;
    }

    .panel-text .btn-primary {
        display: block;
        width: 100%;
        max-width: 285px;
        margin: 25px auto;
    }

    /* Partners */
    .partners {
        padding: 60px 20px 100px;
    }

    .partners-title {
        font-size: 36px;
    }

    .partners-container {
        padding: 0 20px;
    }

    .partner-logo {
        padding: 30px 20px;
    }

    .partner-logo img {
        height: 120px;
    }

    /* Team */
    .team {
        padding: 32px 30px 60px;
    }

    .team-title {
        font-size: 36px;
    }

    .team-container {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .team-member img {
        width: 160px;
        height: 160px;
    }

    .member-info h3 {
        font-size: 22px;
    }

    .member-info p {
        font-size: 18px;
    }

    /* Contact Form */
    .contact-form {
        padding: 60px 20px 80px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form-container {
        width: 100%;
        padding: 0 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 32px;
    }

    .contact-form-container button {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 30px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        width: 100%;
    }

    .footer-nav a {
        font-size: 16px;
        flex: 0 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-divider {
        margin: 30px 0;
    }

    .footer-info {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {

    /* Header */
    .header {
        padding: 16px 20px;
    }

    .header-content {
        justify-content: space-between;
        gap: 16px;
    }

    .logo {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .hamburger {
        display: flex !important;
        width: 32px;
        height: 24px;
        flex-shrink: 0;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .mobile-menu {
        width: 85%;
    }

    .mobile-nav-items {
        padding: 70px 20px 30px;
    }

    .mobile-nav-item {
        font-size: 16px;
        padding: 16px 0;
    }

    .mobile-menu-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    /* Banner */
    .banner {
        padding: 20px 16px 40px;
        min-height: auto;
        position: relative;
        overflow: hidden;
    }

    .main-content {
        padding: 20px 16px;
        gap: 30px;
        position: relative;
        z-index: 5;
        text-align: center;
        align-items: center;
    }

    .content-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding: 0;
        gap: 24px;
    }

    .headings {
        gap: 16px;
        margin-bottom: 24px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .main-heading {
        font-size: 20px;
        line-height: 1.2em;
        margin-bottom: 4px;
        text-align: center;
        width: 100%;
    }

    .gradient-text {
        font-size: 32px;
        line-height: 1.2em;
        text-align: center;
        width: 100%;
    }

    .sub-heading {
        font-size: 16px;
        line-height: 1.5em;
        margin-top: 12px;
        text-align: center;
    }

    .description {
        font-size: 16px;
        line-height: 1.6em;
        max-width: 320px;
        margin: 0 auto 24px;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .cta-buttons {
        gap: 16px;
        justify-content: center;
        margin-top: 24px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 180px;
        height: 48px;
        border-radius: 50px;
    }

    .content-right {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0;
    }

    .banner-image {
        width: 100%;
        height: auto;
        max-width: 280px;
        border-radius: 16px;
    }

    /* Background responsive adjustments */
    .bg-wrapper {
        top: -100px;
        left: -300px;
        width: 150%;
        height: 100vh;
        transform: scale(0.6);
        opacity: 0.8;
    }

    .bg-wrapper .bg-base {
        top: 100px;
        left: 300px;
        width: 1200px;
        height: 600px;
    }

    .bg-wrapper .bg-base::before {
        width: 1000px;
        height: 500px;
        top: 50px;
        left: 100px;
    }

    .bg-wrapper .bg-base::after {
        width: 800px;
        height: 400px;
        top: 100px;
        left: 200px;
    }

    .bg-wrapper .bg-vector {
        top: 100px;
        left: 300px;
        width: 1200px;
        height: 600px;
        background-size: contain;
        background-position: center;
    }

    .bg-wrapper .bg-vector::before {
        width: 1000px;
        height: 500px;
        top: 50px;
        left: 100px;
    }

    .bg-wrapper .bg-vector::after {
        width: 800px;
        height: 400px;
        top: 100px;
        left: 200px;
    }

    /* Hide complex background elements on very small screens */
    .bg-wrapper .bg-base::before,
    .bg-wrapper .bg-base::after,
    .bg-wrapper .bg-vector::before,
    .bg-wrapper .bg-vector::after {
        display: none;
    }

    .sub-heading {
        font-size: 14px;
        line-height: 1.6em;
    }

    .app-mockup {
        width: 280px;
        height: 267px;
    }

    .btn-primary {
        width: 100%;
        max-width: 200px;
        height: 48px;
        font-size: 16px;
    }

    /* Services */
    .services {
        padding: 40px 16px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-card {
        height: auto;
        min-height: 280px;
    }

    .card-content {
        padding: 20px;
        height: auto;
        min-height: auto;
        gap: 12px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-title {
        font-size: 20px;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3em;
    }

    .card-badge span {
        font-size: 14px;
    }

    .card-description {
        font-size: 14px;
        line-height: 1.6em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        width: 100%;
    }

    /* How It Works */
    .how-it-works {
        padding: 40px 16px 0 16px;
    }

    .how-it-works-header {
        margin: 0 auto 40px;
    }

    .how-subtitle {
        font-size: 14px;
    }

    .how-title {
        font-size: 28px;
    }

    .how-description {
        font-size: 14px;
    }

    .tab-btn {
        height: 48px;
        font-size: 16px;
        max-width: 100%;
    }

    .tab-btn svg,
    .tab-btn img {
        width: 20px;
        height: 20px;
    }

    .panel-text-inner {
        gap: 40px;
    }

    .panel-text h3 {
        font-size: 28px;
    }

    .panel-text p {
        font-size: 14px;
    }

    /* Partners */
    .partners {
        padding: 40px 16px 60px;
    }

    .partners-subtitle {
        font-size: 14px;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-header {
        margin-bottom: 60px;
    }

    .partners-container {
        padding: 0 16px;
    }

    .partner-logo {
        padding: 20px 10px;
    }

    .partner-logo img {
        height: 80px;
    }

    /* Team */
    .team {
        padding: 32px 16px 40px;
    }

    .team-subtitle {
        font-size: 14px;
    }

    .team-title {
        font-size: 28px;
    }

    .team-header {
        margin-bottom: 60px;
    }

    .team-container {
        gap: 30px;
    }

    .team-member img {
        width: 140px;
        height: 140px;
    }

    .member-info {
        width: auto;
    }

    .member-info h3 {
        font-size: 18px;
    }

    .member-info p {
        font-size: 16px;
    }

    .team-btn {
        width: 100%;
        max-width: 200px;
    }

    /* Contact Form */
    .contact-form {
        padding: 40px 16px 60px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-header {
        margin: 0 auto 60px;
    }

    .contact-form-container {
        padding: 0;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 14px 20px;
    }

    .form-group input {
        height: 48px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    /* Footer */
    .footer {
        padding: 30px 16px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .footer-nav a {
        font-size: 14px;
        padding: 8px 0;
        width: 100%;
        text-align: center;
    }

    .footer-social {
        gap: 20px;
        justify-content: center;
    }

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

    .footer-divider {
        margin: 24px 0;
    }

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

    .footer-copyright {
        font-size: 12px;
        line-height: 1.6em;
    }

    .footer-links {
        gap: 12px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 12px;
        line-height: 1.6em;
    }
}