/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
    /* --- Színek (Colors) --- */
    --c-bg-main: #040404;
    --c-bg-card: #121213;
    --c-bg-overlay: rgba(0, 0, 0, 0.9);
    --c-bg-glass: rgba(0, 0, 0, 0.15);
    
    --c-text-primary: #fff;
    --c-text-inverse: #000;
    --c-text-muted: #909090;
    
    --c-accent: #5c5cff;
    --c-accent-dark: #03126a;
    --c-accent-light: #7772cd;
    --c-accent-grad-1: #003780;
    --c-accent-grad-3: #5271ff;

    --c-border-dark: #232323;
    --c-border-sep: #2e2e2e;
    --c-border-card: rgb(28, 28, 33);
    --c-border-hover: rgba(255, 255, 255, 0.34);

    /* --- Tipográfia (Typography) --- */
    --font-primary: 'BwGradual-Regular', sans-serif;
    --font-heading: 'BwGradual-Medium', sans-serif;

    --fs-body: 18px;
    --lh-tight: 1.2;
    --lh-base: 1.4;

    /* Méretek - Általános (Sizes - General) */
    --layout-max-width: 1600px;
    --header-padding: 2rem 5rem 1rem;
    
    /* Térközök (Spacing) */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-giant: 10rem;

    /* Radius */
    --radius-sm: 0.25rem;
    --radius-md: 1rem;
    --radius-pill: 100px;
    --radius-circle: 50%;

    /* Animációk & Átmenetek (Transitions & Easings) */
    --ease-std: 0.3s ease;
    --ease-smooth: 0.35s ease-in-out;
    --ease-spring: cubic-bezier(.17, .67, .3, 1.33);
    --ease-menu: cubic-bezier(.9, .12, .2, 1);
    
    /* Z-Index Rétegek */
    --z-negative: -1;
    --z-normal: 1;
    --z-cursor: 2;
    --z-bg-overlay: 3;
    --z-btn: 5;
    --z-menu-links: 10;
    --z-header: 14;
    --z-burger: 100;
    --z-cursor-overlay: 1000;
    --z-loader: 99999999;
}

/* =========================================
   RESET & ALAPOK
   ========================================= */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    /* scroll-behavior: smooth; */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

ol,
ul,
li {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

::-webkit-scrollbar {
  width: 0;
}

/* =========================================
   GLOBAL STYLES & TYPOGRAPHY
   ========================================= */

body {
	background: var(--c-bg-main);
	color: var(--c-text-primary);
	max-width: var(--layout-max-width);
	margin: 0 auto;
	font-size: var(--fs-body);
}

@font-face {
	font-family: BwGradual-Medium;
	src: url(/assets/font/BwGradual-Medium.ttf);
	font-display: swap;
}

@font-face {
	font-family: BwGradual-Regular;
	src: url(/assets/font/BwGradual-Regular.ttf);
	font-display: swap;
}

h1,
h2,
h3 {
	font-family: var(--font-heading);
	line-height: var(--lh-tight);
}

a,
p,
ul,
li,
span,
button {
	font-family: var(--font-primary);
}

p {
    line-height: var(--lh-base);
}

/* =========================================
   COMPONENTS: LOADER & CURSOR
   ========================================= */

.loader {
  width: 100%;
  height: 100%;
  background-color: var(--c-bg-main);
  position: fixed;
  z-index: var(--z-loader);
  animation: fadeOut .3s 1.2s ease-in-out forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loader-container {
  text-align: center;
}

.progress-wrapper {
  display: inline-block;
  text-align: center;
}

.progress-text {
  color: var(--c-text-primary);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  white-space: nowrap;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background-color: var(--c-bg-card);
  position: relative;
  overflow: hidden;
}

.progress-bar:before {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--c-accent);
  position: absolute;
  left: 0;
  top: 0;
  animation: progress 1s ease-in-out forwards;
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

.scroll-animation {
    opacity: 0;
    transform-origin: left center;
    will-change: transform, opacity;
}

.scroll-animation.active {
    animation: active_text_animation 0.75s linear forwards;
}

@keyframes active_text_animation {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* =========================================
   COMPONENTS: CURSOR
   ========================================= */

.cursor {
	position: fixed;
	width: 1rem;
	height: 1rem;
	background-color: var(--c-text-primary);
	border-radius: var(--radius-pill);
	transform: translate(-50%, -50%);
	pointer-events: none;
	transition: transform 0.1s;
	z-index: var(--z-cursor-overlay);
}

/* =========================================
   COMPONENTS: BUTTONS
   ========================================= */

.btn:link,
.btn:visited {
	position: relative;
	display: flex;
	padding: 1.1rem 1.6rem;
	text-decoration: none;
	color: var(--c-text-inverse);
	width: fit-content;
	align-items: center;
	justify-content: center;
	z-index: var(--z-btn);
	gap: var(--space-md);
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--c-text-primary);
	border-radius: var(--radius-pill);
	z-index: var(--z-negative);
	transition: transform .3s var(--ease-spring);
}

.btn:hover::before {
	transform: scale(1.05);
}

.btn:hover .btn__arrow__arrow--main {
	transform: translate3d(100%, -100%, 0);
	opacity: 0;
}

.btn:hover .btn__arrow__arrow--hover {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.btn__arrow {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 1rem;
	height: 1rem;
}

.btn__arrow__arrow {
	position: absolute;
	top: 0;
	right: 0;
	height: 1rem;
	transition:
	transform .3s var(--ease-spring),
	opacity .3s var(--ease-spring);
}

.btn__arrow__arrow--main {
	color: var(--c-text-inverse);
}

.btn__arrow__arrow--hover {
	transform: translate3d(-100%, 100%, 0);
	opacity: 0;
}

.btn svg {
	fill: currentColor;
	width: 1rem;
	height: 1rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */

header .nav-wrapper {
	max-width: var(--layout-max-width);
	margin: 0 auto;
	width: 100%;
	position: fixed;
	display: flex;
	align-items: center;
	padding: var(--header-padding);
	z-index: var(--z-header);
}

header .nav-wrapper .nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

header .nav-wrapper .nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .nav-wrapper nav ul {
	display: flex;
	gap: var(--space-xl);
	background-color: var(--c-bg-glass);
	backdrop-filter: blur(20px);
    border-radius: var(--radius-pill);
    padding: var(--space-md) var(--space-xl);
}

header .burger-menu {
	display: none;
}

header .burger-links {
	display: none;
}

header .nav-wrapper .nav-left img {
	width: 4.5rem;
	height: 4.5rem;
	filter: brightness(0) invert(1);
}

header .nav-wrapper .desktop-menu {
    display: flex;
    justify-content: center;
    flex: 2;
}

header .nav-wrapper ul li,
.footer-menu ul li,
.footer-legal ul li {
	position: relative;
	width: max-content;
	overflow: hidden;
}

header .nav-wrapper ul li:hover a,
header .nav-wrapper ul li:focus a,
.footer-menu ul li:hover a,
.footer-menu ul li:focus a,
.footer-legal ul li:hover a, 
.footer-legal ul li:focus a {
	transform: translateY(-100%);
	outline: none;
}

header .nav-wrapper ul li a,
.footer-menu ul li a,
.footer-legal ul li a {
	position: relative;
	display: inline-block;
	line-height: var(--lh-base);
	transition: transform var(--ease-std);
}

header .nav-wrapper ul li a:before,
.footer-menu ul li a:before,
.footer-legal ul li a:before {
	position: absolute;
	top: 100%;
	content: attr(data-title);
	transform: translate3d(0, 0, 0);
}

/* =========================================
   HERO SECTION
   ========================================= */

#hero {
	position: relative;
	padding: 14rem 8rem 5rem;
}

#hero .hero-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: var(--z-normal);
	gap: var(--space-md);
}

#hero .canvas-wrapper .noise {
    background-image: url(/assets/img/noise.png);
    height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: 512px auto;
    mix-blend-mode: soft-light;
    opacity: 1;
}

#hero .canvas-wrapper .fader {
	background: linear-gradient(0deg, var(--c-bg-main) 10%, hsla(0, 0%, 4%, 0) 50%);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: var(--z-bg-overlay);
}

#hero .canvas-wrapper #gradient-canvas {
	width: 100%;
	height: 100%;
	--gradient-color-1: var(--c-accent-grad-1); /* #003780 */
	--gradient-color-2: var(--c-bg-main);      /* #040404 */
	--gradient-color-3: var(--c-accent-grad-3); /* #5271ff */
	--gradient-color-4: var(--c-bg-main);      /* #040404 */
}

#hero .canvas-wrapper {
	height: 130%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: var(--z-negative);
}

#hero .social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: var(--space-md);
    gap: var(--space-md);
}

#hero .social-proof .student-avatars {
    display: flex;
}

#hero .social-proof .student-avatars img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    border: 2px solid var(--c-text-primary);
    margin-left: -12px;
    object-fit: cover;
}

#hero .social-proof .student-avatars img:first-child {
    margin-left: 0;
}

#hero .social-proof .stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--c-text-primary);
}

#hero .social-proof .stars {
    letter-spacing: 2px;
}

#hero .social-proof .text {
  font-family: var(--font-primary);
  font-size: 16px;
}

#hero .hero-content h1 {
	font-size: 5.25rem;
}

#hero .hero-content .btn {
	margin-top: var(--space-xl);
}

#hero .hero-content .marquee-wrapper {
  display: flex;
  padding: 5rem 10rem 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  flex-direction: column;
}

#hero .hero-content .marquee {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  user-select: none;
  gap: var(--space-2xl);
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

#hero .hero-content .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-2xl);
  min-width: 100%;
  animation: scroll-x 40s linear infinite;
}

#hero .hero-content .marquee img {
  width: clamp(5rem, 4rem + 20vmin, 10rem);
  max-width: none;
  display: block;
  object-fit: contain;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* =========================================
   WORK SECTION
   ========================================= */

#work .work-container {
	display: flex;
	flex-direction: row;
	gap: var(--space-xl);
}

#work .right-column {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-xl);
}

#work .left-column {
	display: flex;
	flex-direction: column;
	gap: var(--space-xl);
}

#work .work-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

#work .work-container .work-card .visual {
	overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

#work .work-container .work-card .visual img {
	display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}

#work .work-container .work-card:hover .visual img {
    transform: scale(1.035);
}

#work .work-container .work-card .figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#work .work-container .work-card:hover .work__arrow__arrow--main {
	transform: translate3d(100%, -100%, 0);
	opacity: 0;
}

#work .work-container .work-card:hover .work__arrow__arrow--hover {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

#work .work-container .work-card .work__arrow {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 1rem;
	height: 1rem;
}

#work .work-container .work-card .work__arrow__arrow {
	position: absolute;
	top: 0;
	right: 0;
	height: 1rem;
	transition:
	transform .3s var(--ease-spring),
	opacity .3s var(--ease-spring);
}

#work .work-container .work-card .work__arrow__arrow--main {
	color: var(--c-text-inverse);
}

#work .work-container .work-card .work__arrow__arrow--hover {
	transform: translate3d(-100%, 100%, 0);
	opacity: 0;
}

#work .work-container .work-card .arrow {
    display: flex;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
    background: var(--c-text-primary);
    width: 3rem;
    height: 3rem;
    line-height: 0;
    align-items: center;
    justify-content: center;
}

#work .work-container .work-card .arrow svg {
    display: block;
    fill: var(--c-text-inverse);
	width: 1rem;
	height: auto;
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */

#pricing,
#work,
#about,
#testimonials, 
#faq {
	display: flex;
    padding: 5rem 10rem;
    flex-direction: column;
    gap: var(--space-3xl);
}

#pricing .pricing-header,
#work .work-header,
#about .about-header,
#testimonials .testimonials-header,
#faq .faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

#pricing .pricing-header .short-title,
#work .work-header .short-title,
#about .about-header .short-title,
#testimonials .testimonials-header .short-title,
#faq .faq-header .short-title {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-card);
    border-radius: var(--radius-pill);
    gap: var(--space-sm)
}

#pricing .pricing-header .dot,
#work .work-header .dot,
#about .about-header .dot,
#testimonials .testimonials-header .dot,
#faq .faq-header .dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: var(--radius-pill);
    background-color: var(--c-text-primary);
}

#pricing .pricing-header h2,
#work .work-header h2,
#about .about-header h2,
#testimonials .testimonials-header h2,
#faq .faq-header h2, 
#contact .cta-container h2 {
    font-size: 4rem;
}

#pricing .pricing-header-box,
#work .work-header-box,
#about .about-header-box,
#testimonials .testimonials-header-box,
#faq .faq-header-box,
#contact .cta-container p,
#hero .hero-content p {
    width: 60%;
}

/* =========================================
   PRICING
   ========================================= */

#pricing .pricing-box {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
}

#pricing .pricing-box .pricing-table {
  border-radius: var(--radius-md);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-card);
  transition: all var(--ease-smooth);
  padding: var(--space-xl);
}

#pricing .pricing-box .pricing-table .btn {
    width: 100%;
}

#pricing .pricing-box .pricing-table .plan-title {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

#pricing .pricing-box .pricing-table .price {
  font-size: 2.5rem;
  margin: var(--space-sm) 0;
}

#pricing .pricing-box .pricing-table .price span {
  font-size: 1rem;
}

#pricing .pricing-box .pricing-table .description {
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--c-border-sep);
}

#pricing .pricing-box .pricing-table .features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: var(--space-lg);
}

#pricing .pricing-box .pricing-table .features li {
  display: flex;
  align-items: center;
  padding: var(--space-sm) 0;
}

#pricing .pricing-box .pricing-table .checkmark-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

/* =========================================
   ABOUT & TESTIMONIALS
   ========================================= */

#about .about-card,
#testimonials .testimonials-card {
    display: flex;
    padding: 2rem 2rem 3rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-card);
    border-radius: var(--radius-md);
    align-items: flex-start;
    flex-direction: column;
    transition: all var(--ease-smooth);
    gap: var(--space-lg);
}

#about .about-card:hover,
#testimonials .testimonials-card:hover,
#faq .faq-box .accordion:hover,
#pricing .pricing-box .pricing-table:hover {
    border-color: 1px solid var(--c-border-hover);
}

#about .about-card span {
    display: flex;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--c-text-primary);
    color: var(--c-text-inverse);
    border-radius: var(--radius-circle);
    align-items: center;
    justify-content: center;
}

#about .about-card h3,
#work .work-container .work-card .figcaption .work-title {
	font-size: 2rem;
}

#about .about-box {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
}

#testimonials .testimonials-box {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
}

#testimonials .quote-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--c-text-primary);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}

#testimonials .quote-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  fill: black;
}

#testimonials .testimonials-text {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--c-border-sep);
}

#testimonials .testimonials-card-info {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    align-items: center;
}

#testimonials .testimonials-card-info img {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 100%;
    object-fit: cover;
}

#testimonials .testimonials-card-info .testimonials-card-name span {
    font-size: 1rem;
    color: var(--c-text-muted);
}

/* =========================================
   FAQ
   ========================================= */

#faq .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

#faq .faq-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

#faq .faq-box .accordion {
    border-radius: var(--radius-md);
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-card);
    transition: all var(--ease-smooth);
}

#faq .faq-box .accordion__title {
    appearance: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: inherit;
	display: flex;
    position: relative;
    font-family: var(--font-primary);
    padding: 1.2rem 1.8rem;
    font-size: 1.4rem;
    line-height: var(--lh-base);
    cursor: pointer;
    align-items: center;
    gap: var(--space-xl);
}

#faq .faq-box .accordion__title::after {
	display: flex;
    content: "\2715";
    color: var(--c-text-primary);
    margin-left: auto;
    transform-origin: center;
    transform: rotate(45deg);
    transition: all var(--ease-smooth);
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

#faq .faq-box .accordion__inner {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--ease-smooth); 
    will-change: max-height;
}

#faq .faq-box .accordion__content {
	display: flex;
	flex-direction: column;
    margin: 1rem 1.6rem 2rem;
    border-top: 1px solid var(--c-border-sep);
    padding-top: var(--space-lg);
    gap: var(--space-xl);
}

#faq .faq-box .accordion--opened .accordion__title::after {
	transform: rotate(90deg);
}

/* =========================================
   NUMBER SECTION
   ========================================= */

#number-section {
    padding: 5rem 10rem;
}

#number-section .number-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: var(--space-md);
    flex-wrap: wrap;
}

#number-section .number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-width: 200px;
}

#number-section .number-box-count {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

#number-section .label {
    text-align: center;
    max-width: 200px;
}

#number-section .counter {
    font-size: 3.75em;
    font-family: var(--font-heading);
    line-height: 1;
    height: 1em;
    display: flex;
    overflow: hidden;
}

#number-section .digit-reel {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    will-change: transform; 
}

#number-section .digit {
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

#number-section .plussz {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2em;
}

/* =========================================
   CONTACT CTA
   ========================================= */

#contact {
	padding: 5rem 5rem 0;
}

#contact .cta-container {
	display: flex;
	padding: 5rem;
	border-radius: var(--radius-md);
	background-image: radial-gradient(50% 30% ellipse at center top, var(--c-accent-light) 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(60% 50% ellipse at center bottom, var(--c-accent-grad-3) 0%, var(--c-accent-dark) 100%);
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: var(--space-md);
}

#contact .cta-container .noise {
    background-image: url(/assets/img/noise.png);
    height: 100%;
	position: absolute;
	width: 100%;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: 512px auto;
    mix-blend-mode: soft-light;
    opacity: 1;
}

#contact .cta-container .btn {
	margin-top: var(--space-xl);
}

/* =========================================
   FOOTER
   ========================================= */

footer {
	display: flex;
	padding: 3rem 5rem;
	flex-direction: column;
	gap: var(--space-2xl);
}

footer .footer-container {
	display: flex;
	align-items: center;
}

footer .back-top-container {
	flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer .back-top {
	all: unset;
	align-items: center;
	background: var(--c-text-primary);
	border-radius: var(--radius-pill);
	display: flex;
	height: 4rem;
	width: 4rem;
	justify-content: center;
	cursor: pointer;
}

footer .back-top-container .back-top svg {
	transition: var(--ease-std);
}

footer .back-top-container .back-top:hover svg {
	transform: scale(1.1);
}

h1:focus {
    outline: none;
}

footer .footer-legal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid var(--c-border-dark);
	padding-top: var(--space-xl);
}

footer .social-links {
    flex: 1;
    display: flex;
    align-items: center;
}

footer .social-links svg {
	color: var(--c-text-inverse);
	width: 26px;
	height: 26px;
	transition: var(--ease-std);
}

footer .social-links ul {
	display: flex;
	gap: var(--space-md);
}

footer .social-links ul li a {
    display: flex;
    transition: var(--ease-std);
    background: var(--c-text-primary);
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-pill);
    align-items: center;
    justify-content: center;
}

footer .social-links ul li a:hover svg {
	  transform: scale(1.1);
}

footer .footer-menu {
    display: flex;
    justify-content: center;
    flex: 2;
}

footer .footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-xl);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */

@media (max-width: 1200px) {

	header .nav-wrapper .desktop-menu, 
	header .nav-wrapper .nav-right,
	.cursor {
		display: none;
	}
	
	header .nav-wrapper {
		justify-content: space-between;
	}

	header .burger-menu {
		display: block;
	}
    
	body.active {
	    overflow: hidden;
	}

	header .burger-links {
	    overflow-y: auto;
    }
    
	body::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--c-bg-overlay);
		pointer-events: none;
		z-index: var(--z-btn);
		opacity: 0;
		transition: opacity .8s var(--ease-menu);
	}

	body.active::before {
		opacity: 1;
	}

	header .burger {
		display: flex;
		background: var(--c-text-primary);
		cursor: pointer;
		border: 0;
		border-radius: var(--radius-circle);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.3rem;
	}

	header .burger.active .bar:nth-child(1) {
		transform: translateY(3px) rotate(45deg);
	}

	header .burger.active .bar:nth-child(2) {
		transform: translateY(-3px) rotate(-45deg);
	}

	header .burger .bar {
		width: 60%;
		height: 2px;
		background: var(--c-text-inverse);
		transition: 0.3s;
	}

	header .burger-links {
		position: fixed;
		display: flex;
		width: 100%;
		height: 100%;
		background-color: var(--c-accent);
		z-index: var(--z-menu-links);
		transform: translateY(-100%);
		will-change: transform;
		transition: transform 1s var(--ease-menu);
	}

	header .burger-links.active {
		transform: translateY(0);
	}

	header .burger-links-box {
		display: flex;
		flex-direction: column;
		align-items: center;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	header .nav-links-box {
		display: flex;
		flex-direction: column;
		text-align: center;
		gap: var(--space-lg);
	}

	.effect-show {
		position: relative;
		overflow: hidden;
	}

	.effect-show a {
		display: block;
		transform: translateY(100%);
		transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
		transition-delay: .5s;
	}

	header .burger-links.active .effect-show a {
		transform: translateY(0);
		transition-delay: 0s;
	}

	body:not(.active) .effect-show a {
		transform: translateY(100%);
		transition-delay: 0s;
	}
	
	#work .work-container .work-card .figcaption {
        padding: var(--space-md);
    }
}

@media (min-width: 1201px) and (max-width: 1440px) { 
    
    #hero {
        padding: 15rem 7rem 5rem;
    }
    
    #hero .hero-content h1 {
        font-size: 4.5rem;
    }
    
    #pricing, #work, #about, #testimonials, #faq {
        padding: 5rem;
    }
    
    #pricing .pricing-header h2, #work .work-header h2, #about .about-header h2, #testimonials .testimonials-header h2, #faq .faq-header h2, #contact .cta-container h2 {
       font-size: 3.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1200px) { 
    
    header .nav-wrapper {
		padding: 2rem 2.5rem;
	}
	
	header .burger {
	    width: 3.7rem;
		height: 3.7rem;
	}
	
	header .burger-menu {
		right: 2.5rem;
	}
	
	header .nav-links-box li a {
		font-size: 2.2rem;
	}

	header .nav-wrapper .nav-left img {
		width: 3.7rem;
		height: 3.7rem;
	}
	
	#hero {
        padding: 15rem 4rem 5rem;
    }
   
    #hero .hero-content h1 {
        font-size: 4.2rem;
    }
    
    #hero .hero-content .marquee-wrapper {
        padding: 4rem 2.5rem 0;
	}
    
    #pricing .pricing-header-box,
	#work .work-header-box,
	#about .about-header-box,
    #testimonials .testimonials-header-box,
    #faq .faq-header-box,
    #contact .cta-container p,
    #hero .hero-content p {
        width: 70%;
    }
	
	#about .about-card h3,
	#work .work-container .work-card .figcaption .work-title {
	    font-size: 2rem;
	}
	
	#pricing,
	#work,
	#about,
	#testimonials,
	#faq {
		padding: 4rem 2.5rem;
		gap: 3.5rem;
	}
    
    #pricing .pricing-header h2,
    #work .work-header h2,
    #about .about-header h2,
    #testimonials .testimonials-header h2,
	#faq .faq-header h2, 
	#contact .cta-container h2 {
        font-size: 3.6rem;
    }
    
	#about .about-card,
	#testimonials .testimonials-card {
        padding: 2rem;
	}
	
	#testimonials .testimonials-box,
	#about .about-box,
	#pricing .pricing-box {
        grid-template-columns: 1fr 1fr;
    }
    
	#faq .faq-grid {
	    grid-template-columns: 1fr;
        width: 80%;
        margin: 0 auto;
        gap: var(--space-md);
    }
	
	#faq .faq-box .accordion__title {
	    padding: 1.8rem;
		font-size: 1.25rem;
		gap: var(--space-lg);
	}
	
	#faq .faq-box .accordion__content {
        margin: 1rem 1.8rem 2rem;
	}
	
	#number-section {
        padding: 4rem;
    }
 
    #number-section .number-box {
        gap: var(--space-2xl);
    }

    #number-section .counter {
        font-size: 3.5em
    }
    
	#contact {
		padding: 4rem 2.5rem 0;
	}

	#contact .cta-container {
		padding: 5rem 2.5rem;
	}

	footer {
		padding: 5rem 2.5rem 3rem;
        gap: 5rem;
	}

	footer .footer-container {
		gap: 4rem;
	}
	
	footer .footer-menu ul {
       gap: var(--space-lg);
    }
    
	footer .footer-legal {
		gap: var(--space-xl);
	}
}

@media (max-width: 768px) {
    
    #work .work-container {
		display: flex;
		flex-direction: column;
	}
    
    #pricing .pricing-box,
    #about .about-box,
    #testimonials .testimonials-box,
    #faq .faq-grid {
	    display: flex;
		flex-direction: column;
	}
    
    #number-section .number-box {
        flex-direction: column;
    }
    
    footer .footer-container {
		display: flex;
		flex-direction: column-reverse;
	}
	
	footer .footer-legal {
		flex-direction: column;
		text-align: center;
	}
}

@media (min-width: 601px) and (max-width: 768px) {
    
    header .nav-wrapper {
		padding: 2rem 2.5rem;
	}
	
	header .burger {
	    width: 3.4rem;
		height: 3.4rem;
	}
	
	header .burger-menu {
		right: 2.5rem;
	}
	
	header .nav-links-box li a {
		font-size: 2rem;
	}

	header .nav-wrapper .nav-left img {
		width: 3.4rem;
		height: 3.4rem;
	}
	
	#hero {
        padding: 12rem 4rem 5rem;
    }
    
    #hero .hero-content h1 {
        font-size: 4rem;
    }
    
    #hero .hero-content .marquee-wrapper {
        padding: 4rem 2.5rem 0;
	}
    
    #pricing .pricing-header-box,
	#work .work-header-box,
	#about .about-header-box,
    #testimonials .testimonials-header-box,
    #faq .faq-header-box,
    #contact .cta-container p,
    #hero .hero-content p {
        width: 80%;
    }
	
	#about .about-card h3,
	#work .work-container .work-card .figcaption .work-title {
	    font-size: 2.2rem;
	}
	
	#pricing,
	#work,
	#about,
	#testimonials,
	#faq {
		padding: 4rem 2.5rem;
		gap: 3.5rem;
	}
    
    #pricing .pricing-header h2,
    #work .work-header h2,
    #about .about-header h2,
    #testimonials .testimonials-header h2,
	#faq .faq-header h2, 
	#contact .cta-container h2 {
        font-size: 3.2rem;
    }

	#about .about-card,
	#testimonials .testimonials-card {
        padding: 2rem;
	}
    
	#faq .faq-grid {
        gap: var(--space-md);
    }
	
	#faq .faq-box .accordion__title {
	    padding: 1.8rem;
		font-size: 1.45rem;
		gap: var(--space-lg);
	}
	
	#faq .faq-box .accordion__content {
        margin: 1rem 1.8rem 2rem;
	}
	
	#number-section {
        padding: 4rem 2.5rem;
    }
 
    #number-section .number-box {
        gap: 4rem;
    }

    #number-section .counter {
        font-size: 3.75em
    }
    
	#contact {
		padding: 4rem 2.5rem 0;
	}

	#contact .cta-container {
		padding: 5rem 2.5rem;
	}

	footer {
		padding: 4rem 2.5rem;
		gap: 4rem;
	}

	footer .footer-container {
		gap: 4rem;
	}
    
	footer .footer-legal {
		gap: var(--space-xl);
	}
}

@media (min-width: 441px) and (max-width: 600px) {

    header .nav-wrapper {
		padding: 2rem;
	}
	
	header .burger {
	    width: 3.2rem;
		height: 3.2rem;
	}
	
	header .burger-menu {
		right: 2rem;
	}
	
	header .nav-links-box li a {
		font-size: 1.6rem;
	}

	header .nav-wrapper .nav-left img {
		width: 3.2rem;
		height: 3.2rem;
	}
	
	#hero {
        padding: 12rem 2rem 3rem;
    }
    
    #hero .hero-content h1 {
        font-size: 3.4rem;
    }
    
    #hero .hero-content .marquee-wrapper {
        padding: 3rem 2rem 0;
	}
    
    #pricing .pricing-header-box,
	#work .work-header-box,
	#about .about-header-box,
    #testimonials .testimonials-header-box,
    #faq .faq-header-box,
    #contact .cta-container p,
    #hero .hero-content p {
        width: 90%;
    }
	
	#about .about-card h3,
	#work .work-container .work-card .figcaption .work-title {
	    font-size: 1.9rem;
	}
	
	#pricing,
	#work,
	#about,
	#testimonials,
	#faq {
		padding: 3rem 2rem;
		gap: var(--space-2xl);
	}
    
    #pricing .pricing-header h2,
    #work .work-header h2,
    #about .about-header h2,
    #testimonials .testimonials-header h2,
	#faq .faq-header h2, 
	#contact .cta-container h2 {
        font-size: 2.7rem;
    }

	#about .about-card,
	#testimonials .testimonials-card {
        padding: 2rem 2rem 2.5rem;
	}
    
	#faq .faq-grid {
        gap: var(--space-md);
    }
	
	#faq .faq-box .accordion__title {
	    padding: 1.75rem;
		font-size: 1.25rem;
		gap: var(--space-lg);
	}
	
	#faq .faq-box .accordion__content {
        margin: 1rem 1.75rem 2rem;
	}
	
	#number-section {
        padding: 3rem 2rem;
    }
 
    #number-section .number-box {
        gap: var(--space-2xl);
    }

    #number-section .counter {
        font-size: 3.5em
    }
    
	#contact {
		padding: 3rem 2rem 0;
	}

	#contact .cta-container {
		padding: 5rem 2rem;
	}

	footer {
		padding: 3rem 2rem;
		gap: var(--space-2xl);
	}

	footer .footer-container {
		gap: var(--space-2xl);
	}

	footer .footer-legal {
		gap: var(--space-lg);
	}
}

@media (max-width: 440px) {

	header .nav-wrapper {
		padding: 1.5rem var(--space-md);
	}
	
	header .burger {
	    width: 3rem;
		height: 3rem;
	}
	
	header .burger-menu {
		right: var(--space-md);
	}
	
	header .nav-links-box li a {
		font-size: 1.4rem;
	}

	header .nav-wrapper .nav-left img {
		width: 3rem;
		height: 3rem;
	}
	
	#hero {
        padding: 8rem 1rem 3rem;
    }
    
    #hero .hero-content h1 {
		font-size: 2.6rem;
	}
	
	#hero .hero-content .marquee-wrapper {
        padding: 3rem 1rem 0;
	}
    
	#pricing .pricing-header-box,
	#work .work-header-box,
	#about .about-header-box,
    #testimonials .testimonials-header-box,
    #faq .faq-header-box,
    #contact .cta-container p,
    #hero .hero-content p {
        width: 100%;
    }
	
	#about .about-card h3,
	#work .work-container .work-card .figcaption .work-title {
        font-size: 1.8rem;
    }
	
	#pricing,
	#work,
	#about,
	#testimonials,
	#faq {
		padding: 3rem 1rem;
		gap: var(--space-2xl);
	}
    
    #pricing .pricing-header h2,
    #work .work-header h2,
    #about .about-header h2,
    #testimonials .testimonials-header h2,
	#faq .faq-header h2, 
	#contact .cta-container h2 {
        font-size: 2.2rem;
    }

	#about .about-card,
	#testimonials .testimonials-card {
        padding: 2rem 1.5rem 2.5rem;
	}
    
	#faq .faq-grid {
        gap: var(--space-md);
    }
	
	#faq .faq-box .accordion__title {
	    padding: 1.5rem;
		font-size: inherit;
		gap: var(--space-lg);
	}
	
	#faq .faq-box .accordion__content {
        margin: 1rem 1.5rem 2rem;
	}
	
	#number-section {
        padding: 3rem 1rem;
    }
 
    #number-section .number-box {
        gap: var(--space-2xl);
    }
    
    #number-section .counter {
        font-size: 3em
    }
    
	#contact {
		padding: 3rem 1rem 0;
	}

	#contact .cta-container {
		padding: 4rem 1.5rem;
	}

	footer {
		padding: 3rem 1rem;
		gap: var(--space-2xl);
	}

	footer .footer-container {
		gap: 2.5rem;
	}

	footer .footer-menu ul {
	    gap: var(--space-md);
	}

	footer .footer-legal {
		gap: var(--space-md);
	}
}

@media (max-width: 320px) {
    
    #hero .hero-content h1 {
		font-size: 2.2rem;
	}
}