/* Global Styles */
:root {
    --bg-color: #FBFAF4;
    --secondary-bg-color: #F3F3EA;
    --blue-bg: #DAE3E1;
    --green-bg: #E1E5DE;
    --pplx-blue:#20808D;
    --text-dark: #091717;
    --text-light: #7F8581;
}

@font-face {
  font-family: "FK-Grotesk";
  src: url('https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/fonts/FKGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "FK-Grotesk";
  src: url('https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/fonts/FKGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Berkley-Mono";
  src: url('https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/fonts/BerkeleyMonoVariable-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PP-Editorial-New";
  src: url('https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/fonts/PPEditorialNew-Ultralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "PP-Editorial-New";
  src: url('https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/fonts/PPEditorialNew-UltralightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "FK-Grotesk", Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-color);
}

p {
	font-family: "FK-Grotesk";
    margin-bottom: 10px;
    line-height: 130%;
    font-weight: 400;
    letter-spacing: -0.6px;
}

h1, h2, h3 {
	font-family: "PP-Editorial-New";
    margin-bottom: 30px;
    line-height: 110%;
    font-weight: 200;
    color: var(--text-dark);
}

h1 {
	font-size: 70px;
}

h3 {
	font-size: 54px;
}

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

ul {
    list-style: none;
}

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

input {
	border: 1px solid #E8E8E8;
	color: var(--text-dark);
	padding: 12px 20px;
	line-height: 100%;
	background-color: white;
	font-size: 17px;
    border-radius: 5px;
    height: 41px;
}

input::placeholder {
  color: #9CA2A2;
}

.primaryButton {
	border-radius: 5px;
	background-color: var(--pplx-blue);
	line-height: 100%;
	color: white;
	padding: 12px 40px;
	border: none;
	font-size: 17px;
	min-width: 180px;
}

.has-bg-image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/*Modal*/
.upperContainer {
	position: relative;
}

.modalWrapper {
	width: 50%;
	max-width: 640px;
	padding-left: 80px;
	position: fixed;
	top: 80px;
	left: auto;
	z-index: 2;
}

.modalContainer {
	width: 100%;
	background-color: #F3F3EA;
	border-radius: 20px;
	padding: 80px 50px;
}


.modalList {
	margin-bottom: 30px;
}

.modalContainer h1 {
	margin-bottom: 50px;
}

.modalList li {
	display: flex;
	align-items: baseline;
	margin-bottom: 7px;
}

.modalList li img {
	margin-right: 10px;
}

.modalList li p {
	margin-bottom: 0;
	font-size: 20px;
}

.formContainer form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

/*HeroImage*/

.heroSection {
	min-height: 800px;
	height: 100%;
	background-image: url("https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/images/hero-desktop.jpg");
	background-position: center bottom;
}

.heroSection .section-container {
	display: flex;
	align-items: center;
}

.section-container {
	height: 100%;
	width: 100%;
	max-width: 1280px;
	margin: auto;
	padding: 60px 0;
}

.containerBlock {
	width: 50%;
	margin: 0 0 0 auto;
	padding: 40px 80px 40px 40px;
}

.logoContainer {
	width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 80px;
}

.example {
	height: 2000px;
}

.example2 {
	height: 2000px;
}


/*Logo Marquee*/

.logoMarquee-section {
	padding: 50px 0;
}

.logoSubtitle {
	font-family: "Berkley-Mono";
	color: #525B59;
	text-align: center; 
	width: 100%;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 40px;
}

.marquee-container {
	width: 100%;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, 
		rgba(0, 0, 0, 0) 0%, 
		rgb(0, 0, 0) 10%, 
		rgb(0, 0, 0) 90%, 
		rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to right, 
		rgba(0, 0, 0, 0) 0%, 
		rgb(0, 0, 0) 10%, 
		rgb(0, 0, 0) 90%, 
		rgba(0, 0, 0, 0) 100%);
}

.marquee-track {
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.marquee-content {
	display: flex;
	align-items: center;
	gap: 80px;
	animation: marquee 30s linear infinite;
	will-change: transform;
}

.marquee-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
}

.marquee-item img {
	height: 100%;
	width: auto;
	max-width: 150px;
	object-fit: contain;
	filter: grayscale(100%) opacity(0.6);
	transition: filter 0.3s ease;
}

.marquee-item img:hover {
	filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.marquee-content {
		animation: none;
	}
}

/*Trust Section*/

.trustSection {
	background-color: var(--bg-color);
	background-image: url("https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/images/background-03.avif");
	background-size: contain;
	background-position: bottom;
}

.trustBlock {
	padding: 35px;
	border: 1px solid #20808D;
	border-radius: 10px;
	margin: 20px 0;
	background-color: #fbfaf4;
}

.trustBlock img {
	width: 40px;
	height: auto;
	margin-bottom: 15px;
}

.p-subtitle {
	font-size: 25px;
	margin-bottom: 15px;
}

.p-general {
	font-size: 18px;
	color: var(--text-light);
}

.trustBlock .p-general {
	margin-bottom: 0;
}

/*Table Section*/

.choiceSection {
	background-color: #DAE3E1;
	background-image: url("https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/images/background-01.png");
	background-size: contain;
	background-position: bottom;
}

.choiceSection img {
	width: 100%;
    margin: 30px auto 0 auto;
}

.p-header-subtitle {
	font-size: 22px;
}

/*Company Section*/

.companySection {
	background-image: url("https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/images/background-04.jpg");
}

.companyBlock {
	border-radius: 10px;
	padding: 15px;
	background-color: #FBFAF4;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.companyBlock img {
	width: auto;
	height: 30px;
}

.companyBlock .p-subtitle {
	margin-bottom: 5px;
}

.companyBlock-wrapper {
    width: 50%;
    padding: 10px;
}

.companyBlock-container {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -10px;
}

/*Questions Container*/

.questionWrapper {
	border: 1px solid #D2D2D2;
	border-radius: 5px;
	background-color: white;
	padding: 15px 20px;
}

.questionWrapper p {
	font-family: "Berkley-Mono";
	font-weight: 300;
	font-size: 15px;
	line-height: 100%;
	margin: 0;
	letter-spacing: 1px;
	color: #4A4A4A;
}

.questionsSection .marquee-content {
	gap: 20px;
	animation: marquee 90s linear
}

.questionsSection .marquee-track {
	margin: 20px 0;
}

/*Bottom Container*/

.bottomContainer {
	background-color: var(--bg-color);
    z-index: 2;
    position: relative;
}

.quoteSection .section-container {
	padding: 60px 80px;
}

.quoteBlock {
	background-color: #F3F3EA;
	border-radius: 10px;
	padding: 60px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.quote {
	font-size: 35px;
	font-weight: 300;
	max-width: 780px;
	margin-bottom: 20px;
	text-align: center;
}

.quoteName {
	color: #20808D;
	font-size: 24px;
	margin-bottom: 0;
}

.ctaFooter-section {
	background-image: url("https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/images/background-02.jpg");
	height: 450px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ctaFooter-section h3 {
	color: white;
    width: 100%;
	max-width: 670px;
    font-size: 80px;
    margin-bottom: 50px;
}

/*Responsiveness*/

@media only screen and (max-width: 1120px) {

	.heroSection{
		min-height: 730px;
	}
	.modalContainer {
		padding: 40px 30px;
	}

	.modalContainer input,
	.modalContainer .primaryButton
	 {
		width: 100%;
	}

	h1 {
		font-size: 50px;
	}

	h3 {
		font-size: 45px;
	}

	.p-subtitle {
		font-size: 21px;
	}
}

@media only screen and (max-width: 960px) {

	.modalWrapper {
		position: static;
		width: 100%;
		padding-left: 0;
		margin-bottom: 50px;
	}

	.heroSection .section-container {
		flex-direction: column;
		justify-content: center;
		padding: 30px 20px;
	}

	.containerBlock {
	    width: 100%;
	    margin: 0 auto;
	    padding: 0 70px;
	    max-width: 780px;
	}

	.modalContainer h1 {
	    margin-bottom: 30px;
	}

	h3 {
	    text-align: center;
	}


	.p-header-subtitle {
	    text-align: center;
	}

	.quote {
		font-size: 25px;
	}

	.quoteName {
		font-size: 18px;
	}

	.logoContainer {
		text-align: center
	}
}

@media only screen and (max-width: 670px) {
	.heroSection {
	    min-height: 660px;
	    background-image: url("https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/perplexity-enterprise-latest/images/hero-mobile.jpg");
	}

	.containerBlock {
	    padding: 0 40px;
	}

	.quoteSection .section-container {
		padding: 60px 40px;
	}

	.ctaFooter-section {
		padding: 0 40px;
	}

	.ctaFooter-section h3 {
		font-size: 60px;
	}
}

@media only screen and (max-width: 530px) {
	h3 {
		font-size: 35px;
	}

	.companyBlock-container {
		margin-left: 0;
	}

	.companyBlock-wrapper {
		width: 100%;
    	padding: 10px 0;
	}

	.companyBlock {
	    min-height: auto;
	}

	.companyBlock img {
		margin-bottom: 42px;
	}

	 .quote {
        font-size: 22px;
    }

    .ctaFooter-section h3 {
    	font-size: 50px;
    }

    .ctaFooter-section input, 
    .ctaFooter-section .primaryButton {
    	width: 100%;
    } 

    .trustBlock {
    	padding: 20px;
    }
}

@media only screen and (max-width: 450px) {
	.containerBlock {
        padding: 0 20px;
    }

    .p-header-subtitle {
	    font-size: 18px;
	}

	.quoteSection .section-container {
        padding: 60px 20px;
    }

    .logoContainer {
    	padding: 30px 20px;
    }

    .heroSection .section-container {
    	padding-top: 30px;
    }
}