/* Fan Survey Page Styles */

/* Base Reset & Global Styles */
a {
    text-decoration: none;
}

img {
    display: block;
}

/* Header Styles */
.ls-header {
    background: #1a1a1a;
    position: relative;
    z-index: 100;
}

.ls-header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 30px;
}

.ls-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 56px;
    gap: 90px;
}

.ls-header__logo {
    flex-shrink: 0;
}

.ls-header__logo a {
    display: inline-flex;
    align-items: center;
}

.ls-header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.ls-header__link {
    color: #aaa;
    font-family: "Sofia Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    flex-shrink: 0;
    text-align: center;
    text-decoration: none;
    transition: color 0.15s ease-out, border-color 0.15s ease-out;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.ls-header__link:hover {
    color: white;
}

.ls-header__link--active {
    color: white;
    border-bottom-color: #ff6b00;
}
.ls-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    transition: background 0.2s ease;
    cursor: pointer;
}

.ls-header__icon:hover {
    background: #3a3a3a;
}

.ls-header__icon img {
    opacity: 0.7;
}

/* Footer Styles */
.ls-footer {
    background: #222;
    padding: 70px;
    margin-top: 80px;
}

.ls-footer__container {
    margin: 0 auto;
}

.ls-footer__content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.ls-footer__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ls-footer__logo {
    flex-shrink: 0;
}

.ls-footer__apps {
    display: flex;
    gap: 12px;
}

.ls-footer__apps a {
    display: block;
}

.ls-footer__right {
    display: flex;
    align-items: flex-start;
    margin-left: auto;
}

.ls-footer__links-primary {
    display: flex;
    gap: 24px;
}

.ls-footer__links-primary a {
    color: #fff;
    font-family: "Sofia Sans", sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ls-footer__links-primary a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.ls-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ls-footer__copyright {
    color: #aaa;
    font-family: "Sofia Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 30px;
    text-align: center;
}

.ls-footer__links-secondary {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.ls-footer__links-secondary a {
    color: #aaa;
    font-family: "Sofia Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ls-footer__links-secondary a:hover {
    color: #fff;
}

.ls-footer__links-secondary a:not(:last-of-type):after {
    content: "|";
    margin: 0 8px;
}

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

body {
    font-family: "Sofia Sans", sans-serif;
    color: #ffffff;
    background: #111111;
}

.wrapper {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.wrapper--wide {
    max-width: 1360px;
}

.heading {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.heading.size-2 {
    font-size: 40px;
    line-height: 1.2;
}

.heading.size-4 {
    font-size: 28px;
    line-height: 1.2;
}

/* Hero Section */
.survey-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #111111;
    justify-content: center;
}

.fan-survey {
    overflow-x: clip;
    overflow-y: visible;
}

.survey-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.survey-hero__bg-image {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    background-repeat: no-repeat;
    object-fit: cover;
    object-position: center center;
}

.survey-hero__gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
    opacity: 0.8;
    z-index: 1;
}



/* Header */
.fan-survey .survey-header {
    position: relative;
    z-index: 10;
    background: #1a1a1a;
    width: 100%;
    padding: 0;
}

.fan-survey .survey-header .wrapper--wide {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.fan-survey .survey-header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start;
    height: 56px;
    gap: 32px;
    width: 100%;
}

.fan-survey .survey-header__logo {
    flex-shrink: 0;
}

.fan-survey .survey-header__logo a {
    display: inline-flex;
    align-items: center;
}

.fan-survey .survey-header__logo img {
    display: block;
    height: 18px;
    width: auto;
}

.fan-survey .survey-header__nav {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 32px;
}

.fan-survey .survey-header__link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Sofia Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.fan-survey .survey-header__link:first-child {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.fan-survey .survey-header__link:hover {
    color: white;
}

.fan-survey .survey-header__icons {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.fan-survey .survey-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    transition: background 0.2s ease;
}

.fan-survey .survey-header__icon:hover {
    background: #3a3a3a;
}

.fan-survey .survey-header__icon img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.survey-hero__content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
    padding-top: 200px;
    padding-bottom: 80px;
}

.survey-hero__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.survey-hero__title-line {
    display: inline-block;
    padding: 8px;
    background: #111111;
    color: #FF5500;
    font-family: "Sofia Sans", sans-serif;
    font-size: 65px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 55px;
}

.survey-hero__quote {
    position: relative;
    z-index: 1;
    max-width: 306px;
    padding: 40px 32px 40px 35px;
    background: #111111;
    border-left: 3px solid #FF5500;
}

.survey-hero__quote p {
    color: white;
    font-family: "Sofia Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}


/* Survey Sections */
.survey-section {
    padding: 120px 0;
}

.survey-section.dark-bg {
    background: #111111;
    margin-top: 120px !important;
}

.survey-section--about {
    margin-top: 0 !important;
}

.survey-section.dark-bg--2 {
    background: #222222;
}

.survey-section.survey-fuelling {
    background: #222222;
    padding: 64px;
    margin-top: 120px !important;
    margin-bottom: 40px !important;
}

.survey-fuelling.wrapper--wide {
    max-width: 1360px;
    margin: 0 auto;
    overflow: visible;
}

/* Survey Grid Layout */
.survey-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.survey-heading {
    color: white;
    text-transform: uppercase;
}

.survey-heading--center {
    text-align: center;
    margin-bottom: 60px;
}

/* Survey Bullets */
.survey-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.survey-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.survey-bullet {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.survey-bullets p {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Sofia Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.survey-link {
    color: #FF5500;
    text-decoration: underline;
}

.survey-link--bold {
    font-weight: 700;
    text-decoration: underline;
}

/* PDF Embed Section */
.survey-embed-section {
    background: #111111;
    padding: 0;
}

.survey-embed {
    background: #D4D3D7;
    border-radius: 0;
    overflow: hidden;
}

.survey-embed__tabs {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    background: #F9F9FA;
    height: 32px;
    align-items: center;
}

.survey-embed__tab {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.survey-embed__tab:nth-child(1) {
    background: #FF5F56;
}

.survey-embed__tab:nth-child(2) {
    background: #FFBD2E;
}

.survey-embed__tab:nth-child(3) {
    background: #27C93F;
}

.survey-embed__content {
    height: 500px;
    position: relative;
}

.survey-embed__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Share Section */
.survey-share-section {
    padding: 40px 0;
}

.survey-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.survey-share__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: "Sofia Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.survey-share__link:hover {
    opacity: 0.8;
}

/* About Section */
.survey-about {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.survey-about p {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Sofia Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* Fuelling Fans Section */
.survey-fuelling {
    position: relative;
    overflow: visible !important;
}

.survey-fuelling .wrapper--wide {
    overflow: visible;
}

.survey-fuelling__content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.survey-fuelling__left {
    flex-shrink: 0;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.survey-fuelling__left h3 {
    line-height: 1.1;
    font-size: 28px;
}

.survey-fuelling__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 380px;
}

.survey-fuelling__right p {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Sofia Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.survey-fuelling__mockup {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-70%);
}

.survey-fuelling__mockup-img {
    height: 350px;
    width: auto;
}

/* Stats Section */
.survey-stats {
    text-align: center;
}

.survey-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.survey-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.survey-stats__number {
    color: #FF5500;
    font-family: "Sofia Sans", sans-serif;
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.survey-stats__label {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Sofia Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .survey-hero__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-top: 200px;
    }

    .survey-hero__title-line {
        font-size: 50px;
        line-height: 45px;
    }

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

    .survey-fuelling__content {
        flex-direction: column;
        gap: 24px;
    }

    .survey-fuelling__left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        padding-right: 0;
        padding-bottom: 24px;
        width: 100%;
    }

    .survey-fuelling__mockup {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
        text-align: center;
    }

    .survey-fuelling__mockup-img {
        transform: none;
        object-fit: contain;
        height: auto;
    }

    .survey-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .survey-stats__number {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .survey-hero__title-line {
        font-size: 40px;
        line-height: 36px;
    }

    .survey-hero__quote {
        max-width: 100%;
    }

    .survey-section {
        padding: 30px 0;
    }

    .survey-share {
        flex-direction: column;
        gap: 20px;
    }

    .survey-share-section {
        padding: 0;
    }

    .survey-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .survey-stats__number {
        font-size: 50px;
    }

    .survey-section.survey-fuelling {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .survey-hero__content {
        padding-top: 150px;
    }

    .survey-hero__title-line {
        font-size: 32px;
    }

    .survey-section.survey-fuelling {
        padding: 32px 16px;
    }

    .survey-fuelling__left h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .survey-stats__grid {
        grid-template-columns: 1fr;
    }

    /* Header responsive */
    .ls-header__container {
        padding: 0 20px;
    }

    .ls-header__nav {
        gap: 16px;
    }

    .ls-header__link {
        font-size: 12px;
    }

    /* Footer responsive */
    .ls-footer {
        padding: 40px 20px;
    }

    .ls-footer__content {
        flex-direction: column;
        gap: 30px;
    }

    .ls-footer__left {
        align-items: center;
    }

    .ls-footer__right {
        margin: auto;
    }

    .ls-footer__links-primary {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .ls-footer__links-secondary a:not(:last-of-type):after {
        margin: 0 4px;
    }
}