* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =====================================================
   NAVBAR
===================================================== */

.franchise-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: rgba(5, 5, 5, .88);
    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255,255,255,.07);

    z-index: 5000;
}

.franchise-logo {
    color: #ff2b2b;
    text-decoration: none;

    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
}

.franchise-nav {
    display: flex;
    gap: 35px;
}

.franchise-nav a {
    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

.franchise-nav a:hover {
    color: #ff2b2b;
}

.franchise-nav-button {
    border: none;
    background: #ff2b2b;
    color: #ffffff;

    padding: 14px 24px;

    border-radius: 14px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s;
}

.franchise-nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,43,43,.35);
}

.franchise-menu-button {
    display: none;

    font-size: 28px;
    cursor: pointer;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.franchise-mobile-menu {
    position: fixed;

    top: 88px;
    left: -100%;

    width: 100%;
    height: calc(100vh - 88px);

    background: #080808;

    display: flex;
    flex-direction: column;

    padding: 45px 8%;
    gap: 28px;

    transition: .4s;

    z-index: 4900;
}

.franchise-mobile-menu.active {
    left: 0;
}

.franchise-mobile-menu a {
    color: white;
    text-decoration: none;

    font-size: 20px;
    font-weight: 700;
}

.franchise-mobile-menu button {
    border: none;
    background: #ff2b2b;
    color: white;

    padding: 17px;

    border-radius: 14px;

    font-weight: 800;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.franchise-hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 150px 8% 100px;

    background-image:
        url("images/franchise-hero.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.75) 48%,
            rgba(0,0,0,.25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.hero-label,
.section-label {
    color: #ff2b2b;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: clamp(50px, 7vw, 92px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -4px;
}

.hero-content h1 span {
    color: #ff2b2b;
    display: block;
}

.hero-content p {
    max-width: 650px;

    margin-top: 30px;

    color: #cfcfcf;

    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 42px;

    flex-wrap: wrap;
}

.primary-button {
    border: none;

    background: #ff2b2b;
    color: #ffffff;

    padding: 18px 28px;

    border-radius: 15px;

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    transition: .3s;
}

.primary-button span {
    margin-left: 15px;
    font-size: 18px;
}

.primary-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255,43,43,.35);
}

.secondary-button {
    display: inline-flex;
    align-items: center;

    padding: 18px 28px;

    border-radius: 15px;

    border: 1px solid rgba(255,255,255,.25);

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    transition: .3s;
}

.secondary-button:hover {
    border-color: #ff2b2b;
    color: #ff2b2b;
}

.hero-scroll {
    position: absolute;

    bottom: 35px;
    left: 8%;

    display: flex;
    align-items: center;
    gap: 15px;

    color: #777;

    font-size: 10px;
    letter-spacing: 3px;
}

.hero-scroll span {
    color: #ff2b2b;
    font-size: 18px;
}


/* =====================================================
   INTRO
===================================================== */

.franchise-intro {
    padding: 130px 8%;

    text-align: center;

    max-width: 1000px;

    margin: auto;
}

.franchise-intro h2 {
    font-size: clamp(38px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;
}

.franchise-intro h2 span {
    color: #ff2b2b;
}

.franchise-intro p {
    max-width: 750px;

    margin: 30px auto 0;

    color: #999;

    font-size: 17px;

    line-height: 1.9;
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
    max-width: 800px;
}

.section-heading.center {
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(38px, 5vw, 65px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;
}

.section-heading p {
    margin-top: 25px;

    color: #999;

    line-height: 1.8;

    font-size: 16px;
}


/* =====================================================
   PROBLEM
===================================================== */

.problem-section {
    padding: 120px 8%;

    background: #080808;
}

.problem-grid {
    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.problem-card {
    padding: 38px 30px;

    background: #0e0e0e;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 25px;

    transition: .3s;
}

.problem-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,43,43,.5);
}

.problem-number {
    color: #ff2b2b;

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 55px;
}

.problem-card h3 {
    font-size: 22px;

    margin-bottom: 18px;
}

.problem-card p {
    color: #888;

    line-height: 1.7;

    font-size: 14px;
}


/* =====================================================
   SOLUTION
===================================================== */

.solution-section {
    padding: 130px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.solution-image {
    position: relative;
}

.solution-image::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: #ff2b2b;

    filter: blur(100px);

    opacity: .25;

    right: -50px;
    bottom: -50px;

    z-index: -1;
}

.solution-image img {
    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 35px;

    display: block;
}

.solution-content h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.03;

    font-weight: 900;

    letter-spacing: -3px;
}

.solution-content h2 span {
    color: #ff2b2b;
}

.solution-content > p {
    margin-top: 28px;

    color: #999;

    line-height: 1.8;
}

.solution-list {
    margin-top: 40px;

    display: flex;
    flex-direction: column;

    gap: 22px;
}

.solution-item {
    display: flex;
    gap: 18px;
}

.solution-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,43,43,.12);

    border: 1px solid rgba(255,43,43,.35);

    color: #ff2b2b;

    border-radius: 50%;

    font-weight: 900;
}

.solution-item h3 {
    font-size: 17px;

    margin-bottom: 5px;
}

.solution-item p {
    color: #777;

    line-height: 1.6;

    font-size: 14px;
}


/* =====================================================
   ADVANTAGES
===================================================== */

.advantages-section {
    padding: 130px 8%;

    background: #080808;
}

.advantages-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.advantage-card {
    padding: 45px;

    min-height: 280px;

    background: #0d0d0d;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 28px;

    transition: .3s;
}

.advantage-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,43,43,.45);
}

.advantage-icon {
    color: #ff2b2b;

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 70px;
}

.advantage-card h3 {
    font-size: 23px;

    margin-bottom: 15px;
}

.advantage-card p {
    color: #888;

    line-height: 1.7;

    font-size: 14px;
}


/* =====================================================
   TECHNOLOGY
===================================================== */

.technology-section {
    padding: 130px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.technology-content h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.03;

    font-weight: 900;

    letter-spacing: -3px;
}

.technology-content h2 span {
    color: #ff2b2b;
}

.technology-content > p {
    margin-top: 28px;

    color: #999;

    line-height: 1.8;
}

.technology-points {
    margin-top: 40px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.technology-points div {
    padding: 20px;

    background: #0d0d0d;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    color: #ccc;

    font-size: 13px;
}

.technology-points strong {
    color: #ff2b2b;

    margin-right: 10px;
}

.technology-image img {
    width: 100%;

    height: 550px;

    object-fit: cover;

    border-radius: 35px;
}


/* =====================================================
   SUPPORT
===================================================== */

.support-section {
    padding: 130px 8%;

    background: #080808;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.support-image img {
    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 35px;
}

.support-content h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.03;

    font-weight: 900;

    letter-spacing: -3px;
}

.support-content h2 span {
    color: #ff2b2b;
}

.support-content > p {
    margin-top: 28px;

    color: #999;

    line-height: 1.8;
}

.support-box {
    margin-top: 20px;

    padding: 22px;

    display: flex;

    gap: 20px;

    border: 1px solid rgba(255,255,255,.07);

    background: #0d0d0d;

    border-radius: 18px;
}

.support-box > span {
    color: #ff2b2b;

    font-size: 13px;

    font-weight: 900;
}

.support-box h3 {
    font-size: 16px;

    margin-bottom: 7px;
}

.support-box p {
    color: #777;

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   PROCESS
===================================================== */

.process-section {
    padding: 130px 8%;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.process-card {
    position: relative;

    padding: 40px 30px;

    border-top: 2px solid #ff2b2b;

    background: #0b0b0b;

    border-radius: 0 0 22px 22px;
}

.process-card span {
    color: #ff2b2b;

    font-size: 13px;

    font-weight: 900;
}

.process-card h3 {
    margin-top: 55px;

    font-size: 21px;
}

.process-card p {
    margin-top: 15px;

    color: #777;

    line-height: 1.7;

    font-size: 14px;
}


/* =====================================================
   CTA
===================================================== */

.franchise-cta {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 100px 8%;

    overflow: hidden;

    background:
        url("images/franchise-cta.jpg");

    background-size: cover;

    background-position: center;
}

.cta-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(110,0,0,.95),
            rgba(0,0,0,.65)
        );
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 800px;
}

.cta-content h2 {
    font-size: clamp(45px, 6vw, 80px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -4px;
}

.cta-content h2 span {
    display: block;

    color: #ffffff;
}

.cta-content p {
    margin-top: 25px;

    max-width: 600px;

    color: #ddd;

    line-height: 1.8;
}

.big-button {
    margin-top: 35px;

    padding: 20px 32px;
}


/* =====================================================
   FOOTER
===================================================== */

.franchise-footer {
    padding: 45px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
    color: #ff2b2b;

    font-size: 28px;

    font-weight: 900;

    letter-spacing: 3px;
}

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #777;

    text-decoration: none;

    font-size: 13px;
}

.footer-links a:hover {
    color: #ff2b2b;
}

.franchise-footer p {
    color: #555;

    font-size: 12px;
}


/* =====================================================
   MODAL
===================================================== */

.franchise-modal {
    position: fixed;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 25px;

    z-index: 10000;
}

.franchise-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.82);

    backdrop-filter: blur(12px);
}

.modal-box {
    position: relative;

    z-index: 2;

    width: min(850px, 100%);

    max-height: 92vh;

    overflow-y: auto;

    padding: 45px;

    background: #101010;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 30px;

    box-shadow: 0 30px 100px rgba(0,0,0,.7);

    animation: modalOpen .3s ease;
}

@keyframes modalOpen {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.modal-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 40px;
    height: 40px;

    border: none;

    background: rgba(255,255,255,.06);

    color: #ffffff;

    border-radius: 50%;

    font-size: 27px;

    cursor: pointer;
}

.modal-header {
    margin-bottom: 35px;
}

.modal-header h2 {
    font-size: 42px;

    font-weight: 900;
}

.modal-header p {
    margin-top: 10px;

    color: #888;

    line-height: 1.6;
}


/* FORM */

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #ddd;

    font-size: 13px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 12px;

    background: #080808;

    color: #ffffff;

    outline: none;

    font-size: 14px;

    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff2b2b;

    box-shadow: 0 0 0 3px rgba(255,43,43,.08);
}

.form-group select option {
    background: #101010;
}

.form-group textarea {
    resize: vertical;

    min-height: 130px;
}

.form-group small {
    color: #666;

    font-size: 11px;

    line-height: 1.5;
}

.kvkk {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 25px;

    color: #777;

    font-size: 12px;

    line-height: 1.5;

    cursor: pointer;
}

.kvkk input {
    margin-top: 3px;

    accent-color: #ff2b2b;
}

.form-submit {
    width: 100%;

    margin-top: 25px;

    padding: 18px;

    border: none;

    border-radius: 14px;

    background: #ff2b2b;

    color: white;

    font-size: 14px;

    font-weight: 900;

    cursor: pointer;

    transition: .3s;
}

.form-submit:hover {
    transform: translateY(-2px);

    box-shadow: 0 10px 30px rgba(255,43,43,.3);
}

.form-submit span {
    margin-left: 12px;
}

.form-bottom-text {
    text-align: center;

    color: #666;

    font-size: 11px;

    margin-top: 15px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px) {

    .franchise-nav {
        display: none;
    }

    .franchise-nav-button {
        display: none;
    }

    .franchise-menu-button {
        display: block;
    }

    .problem-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solution-section,
    .technology-section,
    .support-section {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media(max-width:700px) {

    .franchise-navbar {
        height: 75px;

        padding: 0 6%;
    }

    .franchise-logo {
        font-size: 25px;
    }

    .franchise-mobile-menu {
        top: 75px;

        height: calc(100vh - 75px);
    }

    .franchise-hero {
        padding: 130px 6% 80px;

        min-height: 850px;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .secondary-button,
    .primary-button {
        width: 100%;

        justify-content: center;

        text-align: center;
    }

    .franchise-intro,
    .problem-section,
    .solution-section,
    .advantages-section,
    .technology-section,
    .support-section,
    .process-section {
        padding: 85px 6%;
    }

    .problem-grid,
    .advantages-grid,
    .process-grid,
    .technology-points {
        grid-template-columns: 1fr;
    }

    .solution-image img,
    .support-image img,
    .technology-image img {
        height: 420px;
    }

    .modal-box {
        padding: 30px 20px;

        border-radius: 22px;
    }

    .modal-header h2 {
        font-size: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .franchise-footer {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;

        justify-content: center;
    }

}