/* Font Face Declarations */
@font-face {
    font-family: 'Bahnschrift';
    src: url('font/Bahnschrift-Font-Family/BAHNSCHRIFT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Bahnschrift', Arial, sans-serif;
    background-color: #12002b;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(18, 0, 43, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff2e;
}

.btn-trial {
    background: linear-gradient(135deg, #00ff2e, #00cc22);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 46, 0.3);
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
.main {
    margin-top: 80px;
}


.background-light-blue-1{
    position: absolute;
    top: 30%;
    left: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.9) 0%, 
        rgba(36, 165, 250, 0.8) 20%, 
        rgba(36, 165, 250, 0.7) 40%, 
        rgba(36, 165, 250, 0.3) 60%, 
        rgba(36, 165, 250, 0.2) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 6s ease-in-out infinite alternate;
}

.background-light-pink-1{
    position: absolute;
    top: 30%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, 
        rgba(252, 11, 235, 0.9) 0%, 
        rgba(252, 11, 235, 0.8) 20%, 
        rgba(252, 11, 235, 0.7) 40%, 
        rgba(252, 11, 235, 0.5) 60%, 
        rgba(252, 11, 235, 0.2) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 6s ease-in-out infinite alternate;

}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Analytics Showcase Section */
.analytics-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.background-light-blue-2 {
    position: absolute;
    top: -20%;
    left: -15%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.4) 0%, 
        rgba(36, 165, 250, 0.3) 20%, 
        rgba(36, 165, 250, 0.2) 40%, 
        rgba(36, 165, 250, 0.1) 60%, 
        rgba(36, 165, 250, 0.05) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 18s ease-in-out infinite alternate;
}

.background-light-pink-2 {
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, 
        rgba(252, 11, 235, 0.3) 0%, 
        rgba(252, 11, 235, 0.2) 20%, 
        rgba(252, 11, 235, 0.15) 40%, 
        rgba(252, 11, 235, 0.1) 60%, 
        rgba(252, 11, 235, 0.05) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 14s ease-in-out infinite alternate reverse;
}

.analytics-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.analytics-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.analytics-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.analytics-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.analytics-cta {
    margin-top: 2rem;
}

.btn-analytics {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-analytics:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 165, 250, 0.4);
}

.link-analytics {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.link-analytics:hover {
    background: linear-gradient(135deg, #fb0cea, #24a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

.analytics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.dashboard-image-wrapper {
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(26, 0, 43, 0.1), rgba(26, 0, 43, 0.1)),
                      linear-gradient(135deg, #24a5fa, #fb0cea);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    height: 400px;
    transition: all 0.3s ease;
    position: relative;
}

.dashboard-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(36, 165, 250, 0.3);
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transition: transform 0.3s ease;
}

.dashboard-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #24a5fa, #fb0cea, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.dashboard-image-wrapper:hover::before {
    opacity: 1;
}

/* Calendar Showcase Section */
.calendar-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.background-light-blue-3 {
    position: absolute;
    top: -10%;
    right: -15%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.3) 0%, 
        rgba(36, 165, 250, 0.2) 20%, 
        rgba(36, 165, 250, 0.15) 40%, 
        rgba(36, 165, 250, 0.1) 60%, 
        rgba(36, 165, 250, 0.05) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(90px);
    animation: pulse 14s ease-in-out infinite alternate;
}

.background-light-pink-3 {
    position: absolute;
    bottom: -25%;
    left: -20%;
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle, 
        rgba(252, 11, 235, 0.25) 0%, 
        rgba(252, 11, 235, 0.15) 20%, 
        rgba(252, 11, 235, 0.1) 40%, 
        rgba(252, 11, 235, 0.05) 60%, 
        rgba(252, 11, 235, 0.02) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(110px);
    animation: pulse 16s ease-in-out infinite alternate reverse;
}

.calendar-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.calendar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.calendar-text {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.calendar-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.calendar-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.calendar-cta {
    margin-top: 2rem;
}

.btn-calendar {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-calendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 165, 250, 0.4);
}

.link-calendar {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.link-calendar:hover {
    background: linear-gradient(135deg, #fb0cea, #24a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

.calendar-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.calendar-image-wrapper {
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(26, 0, 43, 0.1), rgba(26, 0, 43, 0.1)),
                      linear-gradient(135deg, #24a5fa, #fb0cea);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    height: 400px;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(36, 165, 250, 0.3);
}

.calendar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.calendar-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #24a5fa, #fb0cea, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.calendar-image-wrapper:hover::before {
    opacity: 1;
}

/* Modern Pricing Section - Based on Template */
/* CSS Variables for Pricing - Website Branding */
:root {
  --baseColor: #656c7c;
  --baseSize: 16px;
  --baseLineHeight: 1.5;
  --fontFamily: Inter, sans-serif;
  --purple: #8B5CF6;
  --purpleLight: #F3F4F6;
  --blue: #24a5fa;
  --pink: #fb0cea;
  --gradient: linear-gradient(135deg, #24a5fa, #fb0cea);

  --purpleTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%238B5CF6'/%3E%3C/svg%3E%0A");

  --whiteTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");

  --close: url("data:image/svg+xml,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 1.414 16.586 0 9 7.586 1.414 0 0 1.414 7.586 9 0 16.586 1.414 18 9 10.414 16.586 18 18 16.586 10.414 9 18 1.414Z' fill='%23B1B8C9'/%3E%3C/svg%3E");

  --purpleIcon: url("data:image/svg+xml,%3Csvg width='42' height='42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.813 11.077 21 1.155l17.187 9.922v19.846L21 40.845 3.813 30.923V11.077Z' stroke='%238B5CF6' stroke-width='2'/%3E%3Ccircle cx='21' cy='21' r='8' stroke='%238B5CF6' stroke-width='2'/%3E%3C/svg%3E");
}

.plans {
  width: 96%;
  max-width: 1128px;
  margin: 0 auto;
}

.plans__container {
  padding: 1rem 0 2rem;
}

/* Hero Section */
.plansHero {
  text-align: center;
  padding: 5rem 0 4.5rem;
  line-height: 1.21;
}

.plansHero__title {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 1rem 0;
  color: white;
}

.plansHero__subtitle {
  margin: 0;
  color: var(--baseColor);
}

.link-trial {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.link-trial:hover {
  text-decoration: underline;
  transform: translateY(-1px);
}

/* Plan Items */
.planItem__container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1.5rem;
}

.planItem {
  --border: 1px solid #e6e6e6;
  --bgColor: #fff;
  --boxShadow: 0 4px 20px rgba(139, 92, 246, 0.1);

  background-color: var(--bgColor);
  border: var(--border);
  border-radius: 1rem;
  box-shadow: var(--boxShadow);
  padding: 2rem 1.5rem;
  display: inline-flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.planItem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.planItem .price {
  --priceMargin: 2rem 0;
}

.planItem--pro {
  --border: 2px solid transparent;
  --boxShadow: 0px 14px 30px rgba(204, 204, 204, 0.32);
  background: linear-gradient(white, white) padding-box,
              var(--gradient) border-box;
  border: 2px solid transparent;
  transform: scale(1.05);
  z-index: 2;
}

.planItem--pro:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.planItem--pro .label {
  --labelBg: var(--purple);
  --labelColor: #fff;
}

.planItem--entp {
  --bgColor: var(--purple);
}

.planItem--entp .card {
  --titleColor: #fff;
  --descColor: rgb(255 255 255 / 90%);
}

.planItem--entp .card__icon {
  background-image: var(--purpleIcon);
  background-size: cover;
}

.planItem--entp .price,
.planItem--entp .featureList {
  --color: #fff;
}

.planItem--entp .featureList {
  --icon: var(--whiteTick);
}

.planItem .button {
  margin-top: auto;
}

/* Components */
.button {
  --bgColor: var(--purpleLight);
  --color: var(--purple);
  --shadowColor: rgba(139, 92, 246, 0.3);
  --outline: var(--purple);

  border-radius: 0.5rem;
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 0;
  line-height: inherit;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--bgColor);
  color: var(--color);
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  user-select: none;
}

.button--pink {
  background: var(--gradient);
  color: #fff;
  --shadowColor: rgba(36, 165, 250, 0.4);
  border: none;
}

.button--pink:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px var(--shadowColor);
}

.button--white {
  --bgColor: #fff;
  --shadowColor: rgba(139, 92, 246, 0.2);
  --outline: #fff;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 10px var(--shadowColor);
}

.button:focus-visible {
  outline-offset: 2px;
  outline: 2px solid var(--outline);
}

.card {
  --titleColor: #000;
  --descColor: var(--baseColor);
}

.card__header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.card__icon {
  width: 2.625rem;
  height: 2.625rem;
}

.card h2 {
  color: var(--titleColor);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  flex-grow: 1;
}

.card__desc {
  margin: 1.5rem 0 0;
  color: var(--descColor);
}

.label {
  --labelColor: var(--baseColor);
  --labelBg: #e5e5e5;

  font-weight: 600;
  line-height: 1.25;
  font-size: 1rem;
  text-align: center;
  padding: 0.625rem 1.125rem;
  border-radius: 2rem;
  user-select: none;
  background-color: var(--labelBg);
  color: var(--labelColor);
}

.price {
  --color: var(--purple);
  --priceMargin: 0;

  display: flex;
  color: var(--color);
  align-items: center;
  gap: 0.5625rem;
  font-weight: 600;
  font-size: 2rem;
  margin: var(--priceMargin);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--baseColor);
}

.featureList {
  --color: #000;
  --icon: var(--purpleTick);
  --height: 0.875rem;

  margin: 0 0 2.75rem;
  padding: 0;
  font-weight: 500;
}

.featureList li {
  color: var(--color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featureList li:before {
  content: "";
  background-image: var(--icon);
  background-size: cover;
  display: block;
  width: 1.125rem;
  height: var(--height);
}

.featureList li:last-child {
  margin-bottom: 0;
}

.featureList li.disabled {
  --color: #b1b8c9;
  --height: 1.125rem;
  --icon: var(--close);
}

.symbol {
  --big: 2.625rem;
  --small: 1.5rem;
  --radius: 0.25rem;

  border: 2px solid var(--purple);
  width: var(--big);
  height: var(--big);
  border-radius: var(--radius);
  position: relative;
}

.symbol--rounded {
  --radius: 2rem;
}

.symbol:after {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  border: 2px solid var(--blue);
  width: var(--small);
  height: var(--small);
  border-radius: var(--radius);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/* Storage Showcase Section */
.storage-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.background-light-blue-5 {
    position: absolute;
    top: -20%;
    left: -15%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.4) 0%, 
        rgba(36, 165, 250, 0.3) 20%, 
        rgba(36, 165, 250, 0.2) 40%, 
        rgba(36, 165, 250, 0.1) 60%, 
        rgba(36, 165, 250, 0.05) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 18s ease-in-out infinite alternate;
}

.background-light-pink-5 {
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, 
        rgba(252, 11, 235, 0.3) 0%, 
        rgba(252, 11, 235, 0.2) 20%, 
        rgba(252, 11, 235, 0.15) 40%, 
        rgba(252, 11, 235, 0.1) 60%, 
        rgba(252, 11, 235, 0.05) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 14s ease-in-out infinite alternate reverse;
}

.storage-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.storage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.storage-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.storage-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    margin-top: 5rem;
    color: #ffffff;
    text-align: center;
}

.storage-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #ffffff;
}

.storage-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.storage-cta {
    margin-top: 2rem;
}

.btn-storage {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-storage:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 165, 250, 0.4);
}

.link-storage {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.link-storage:hover {
    background: linear-gradient(135deg, #fb0cea, #24a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

.storage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.storage-image-wrapper {
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(26, 0, 43, 0.1), rgba(26, 0, 43, 0.1)),
                      linear-gradient(135deg, #24a5fa, #fb0cea);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    height: 400px;
    transition: all 0.3s ease;
    position: relative;
}

.storage-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(36, 165, 250, 0.3);
}

.storage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transition: transform 0.3s ease;
}

.storage-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #24a5fa, #fb0cea, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.storage-image-wrapper:hover::before {
    opacity: 1;
}

/* Content Ideas Showcase Section */
.content-ideas-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.background-light-blue-6 {
    position: absolute;
    top: -10%;
    right: -15%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.35) 0%, 
        rgba(36, 165, 250, 0.25) 20%, 
        rgba(36, 165, 250, 0.15) 40%, 
        rgba(36, 165, 250, 0.1) 60%, 
        rgba(36, 165, 250, 0.05) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(90px);
    animation: pulse 16s ease-in-out infinite alternate;
}

.background-light-pink-6 {
    position: absolute;
    bottom: -25%;
    left: -20%;
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle, 
        rgba(252, 11, 235, 0.3) 0%, 
        rgba(252, 11, 235, 0.2) 20%, 
        rgba(252, 11, 235, 0.15) 40%, 
        rgba(252, 11, 235, 0.1) 60%, 
        rgba(252, 11, 235, 0.05) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 18s ease-in-out infinite alternate reverse;
}

.content-ideas-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.content-ideas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content-ideas-text {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content-ideas-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.content-ideas-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.content-ideas-cta {
    margin-top: 2rem;
}

.btn-content-ideas {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-content-ideas:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 165, 250, 0.4);
}

.link-content-ideas {
    background: linear-gradient(135deg, #24a5fa, #fb0cea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.link-content-ideas:hover {
    background: linear-gradient(135deg, #fb0cea, #24a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

.content-ideas-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.content-ideas-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    height: 400px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.content-ideas-image {
    width: auto;
    height: 80%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}



.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: #12002b;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.text-highlight {
    color: #00ff2e;
}

.text-brand {
    color: #00ff2e;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #b8b8d1;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.hero-cta {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff2e, #00cc22);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 46, 0.4);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(252, 11, 235, 0.15) 0%, 
        rgba(252, 11, 235, 0.1) 30%, 
        rgba(252, 11, 235, 0.05) 60%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 15s ease-in-out infinite alternate;
    pointer-events: none;
}

.features::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.1) 0%, 
        rgba(36, 165, 250, 0.08) 30%, 
        rgba(36, 165, 250, 0.03) 60%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(70px);
    animation: pulse 18s ease-in-out infinite alternate reverse;
    pointer-events: none;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.feature-card {
    /* background: rgba(26, 0, 43, 0.8); Removed, will be part of multiple backgrounds */
    /* border: 2px solid; Removed */
    /* border-image: linear-gradient(135deg, #24a5fa, #fb0cea) 1; Removed */
    border: 2px solid transparent; /* Defines border thickness, transparent for gradient to show */

    background-image: linear-gradient(rgba(26, 0, 43, 0.8), rgba(26, 0, 43, 0.8)),
                      linear-gradient(135deg, #24a5fa, #fb0cea);
    background-origin: padding-box, border-box; /* Define origin for clipping */
    background-clip: padding-box, border-box;   /* Clip inner bg to padding, border bg to border */

    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(36, 165, 250, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #24a5fa, #fb0cea, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 1rem;
    text-align: left;
    line-height: 1.7;
    color: #b8b8d1;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1.02);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.04) translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(18, 0, 43, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu .mobile-logo-item {
        display: list-item;
        margin-bottom: 2rem;
    }

    .nav-menu .mobile-nav-logo {
        display: block;
        height: 50px;
        width: auto;
        margin: 0 auto 1.5rem auto;
    }

    .background-light-blue-1{
        position: absolute;
        top: 30%;
        left: 20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, 
            rgba(36, 165, 250, 0.9) 0%, 
            rgba(36, 165, 250, 0.8) 20%, 
            rgba(36, 165, 250, 0.7) 40%, 
            rgba(36, 165, 250, 0.3) 60%, 
            rgba(36, 165, 250, 0.2) 80%, 
            transparent 100%);
        border-radius: 50%;
        filter: blur(40px);
        animation: pulse 6s ease-in-out infinite alternate;
    }

    .background-light-pink-1{
        position: absolute;
        top: 50%;
        right: 20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, 
            rgba(252, 11, 235, 0.9) 0%, 
            rgba(252, 11, 235, 0.8) 20%, 
            rgba(252, 11, 235, 0.7) 40%, 
            rgba(252, 11, 235, 0.5) 60%, 
            rgba(252, 11, 235, 0.2) 80%, 
            transparent 100%);
        border-radius: 50%;
        filter: blur(40px);
        animation: pulse 6s ease-in-out infinite alternate;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    .nav-menu .btn-trial {
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 1rem;
        min-height: fit-content;
        padding: 20vh 0;
    }
    
    .features {
        padding: 2rem 1rem;
    }
    
    .features::before {
        width: 500px;
        height: 500px;
        bottom: -30%;
        right: -20%;
    }
    
    .features::after {
        width: 400px;
        height: 400px;
        top: -20%;
        left: -25%;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    /* Analytics Showcase Mobile */
    .analytics-showcase {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .analytics-text {
        padding-right: 0;
        order: 2;
    }
    
    .analytics-visual {
        order: 1;
    }
    
    .analytics-title {
        font-size: 2.2rem;
    }
    
    .analytics-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .dashboard-image-wrapper {
        max-width: 100%;
        height: 300px;
    }
    
    .dashboard-image {
        object-position: left center;
    }
    
    .background-light-blue-2 {
        width: 600px;
        height: 600px;
        top: -30%;
        left: -25%;
    }
    
    .background-light-pink-2 {
        width: 500px;
        height: 500px;
        bottom: -40%;
        right: -25%;
    }
    
    /* Calendar Showcase Mobile */
    .calendar-showcase {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .calendar-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .calendar-text {
        padding-left: 0;
        order: 2;
    }
    
    .calendar-visual {
        order: 1;
    }
    
    .calendar-title {
        font-size: 2.2rem;
    }
    
    .calendar-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .calendar-image-wrapper {
        max-width: 100%;
        height: 300px;
    }
    
    .calendar-image {
        object-position: center center;
    }
    
    .background-light-blue-3 {
        width: 600px;
        height: 600px;
        top: -30%;
        right: -25%;
    }
    
    .background-light-pink-3 {
        width: 500px;
        height: 500px;
        bottom: -40%;
        left: -25%;
    }
    
    /* Content Ideas Showcase Mobile */
    .content-ideas-showcase {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .content-ideas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .content-ideas-text {
        padding-left: 0;
        order: 2;
    }
    
    .content-ideas-visual {
        order: 1;
    }
    
    .content-ideas-title {
        font-size: 2.2rem;
    }
    
    .content-ideas-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .content-ideas-image-wrapper {
        max-width: 100%;
        height: 300px;
    }
    
    .content-ideas-image {
        height: 70%;
        max-width: 70%;
    }
    
    .background-light-blue-6 {
        width: 600px;
        height: 600px;
        top: -30%;
        right: -25%;
    }
    
    .background-light-pink-6 {
        width: 500px;
        height: 500px;
        bottom: -40%;
        left: -25%;
    }
    
    /* Pricing CTA Mobile */
    .pricing-cta {
        min-height: auto;
        padding: 4rem 1rem;
    }
    
    .pricing-cta-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .pricing-cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .link-trial {
        font-size: 1.3rem;
    }
    
    .background-light-blue-4 {
        width: 600px;
        height: 600px;
        top: -40%;
        left: -30%;
    }
    
    .background-light-pink-4 {
        width: 650px;
        height: 650px;
        bottom: -40%;
        right: -30%;
    }

    /* Modern Pricing Plans Mobile */
    .plans {
        max-width: 480px;
        width: 90%;
    }

    .planItem__container {
        grid-auto-flow: row;
        gap: 1.5rem;
    }

    .planItem {
        padding: 1.5rem;
    }

    .plansHero__title {
        font-size: 1.8rem;
    }

    .card h2 {
        font-size: 1.3rem;
    }

    .card__desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .price {
        font-size: 1.8rem;
    }

    .featureList li {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Medium Screen Adjustments for Pricing */
@media screen and (min-width: 641px) and (max-width: 768px) {
    :root {
        --baseSize: 12px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
    :root {
        --baseSize: 14px;
    }
    
    /* Storage Showcase Mobile */
    .storage-showcase {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .storage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .storage-text {
        padding-right: 0;
        order: 2;
    }
    
    .storage-visual {
        order: 1;
    }
    
    .storage-title {
        font-size: 2.2rem;
    }
    
    .storage-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .storage-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .storage-image-wrapper {
        max-width: 100%;
        height: 300px;
    }
    
    .storage-image {
        object-position: left center;
    }
    
    .background-light-blue-5 {
        width: 600px;
        height: 600px;
        top: -30%;
        left: -25%;
    }
    
    .background-light-pink-5 {
        width: 500px;
        height: 500px;
        bottom: -40%;
        right: -25%;
        }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    /* Analytics Showcase Small Mobile */
    .analytics-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .analytics-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-analytics {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .analytics-showcase {
        padding: 2rem 1rem;
    }
    
    .dashboard-image-wrapper {
        height: 250px;
    }
    
    .background-light-blue-2 {
        width: 400px;
        height: 400px;
        left: -30%;
        top: -35%;
    }
    
    .background-light-pink-2 {
        width: 350px;
        height: 350px;
        right: -30%;
        bottom: -45%;
    }
    
    /* Calendar Showcase Small Mobile */
    .calendar-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .calendar-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-calendar {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .calendar-showcase {
        padding: 2rem 1rem;
    }
    
    .calendar-image-wrapper {
        height: 250px;
    }
    
    .background-light-blue-3 {
        width: 400px;
        height: 400px;
        right: -30%;
        top: -35%;
    }
    
    .background-light-pink-3 {
        width: 350px;
        height: 350px;
        left: -30%;
        bottom: -45%;
    }
    
    /* Content Ideas Showcase Small Mobile */
    .content-ideas-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .content-ideas-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-content-ideas {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .content-ideas-showcase {
        padding: 2rem 1rem;
    }
    
    .content-ideas-image-wrapper {
        height: 250px;
    }
    
    .content-ideas-image {
        height: 60%;
        max-width: 60%;
    }
    
    .background-light-blue-6 {
        width: 400px;
        height: 400px;
        right: -30%;
        top: -35%;
    }
    
    .background-light-pink-6 {
        width: 350px;
        height: 350px;
        left: -30%;
        bottom: -45%;
    }
    
    /* Pricing CTA Small Mobile */
    .pricing-cta-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .pricing-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .link-trial {
        font-size: 1.1rem;
    }
    
    .pricing-cta {
        padding: 3rem 1rem;
    }
    
    .background-light-blue-4 {
        width: 400px;
        height: 400px;
        top: -45%;
        left: -35%;
    }
    
    .background-light-pink-4 {
        width: 450px;
        height: 450px;
        bottom: -45%;
        right: -35%;
    }
    
    /* Pricing Plans Small Mobile - Additional adjustments */
    .pricing-card.popular {
        transform: scale(1.02);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.04) translateY(-3px);
    }
    
    /* Storage Showcase Small Mobile */
    .storage-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .storage-subtitle {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .storage-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-storage {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .storage-showcase {
        padding: 2rem 1rem;
    }
    
    .storage-image-wrapper {
        height: 250px;
    }
    
    .background-light-blue-5 {
        width: 400px;
        height: 400px;
        left: -30%;
        top: -35%;
    }
    
    .background-light-pink-5 {
        width: 350px;
        height: 350px;
        right: -30%;
        bottom: -45%;
    }
}

/* FAQ Section */
.faq-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.background-light-blue-7 {
    position: absolute;
    top: -15%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.25) 0%, 
        rgba(36, 165, 250, 0.15) 20%, 
        rgba(36, 165, 250, 0.1) 40%, 
        rgba(36, 165, 250, 0.05) 60%, 
        rgba(36, 165, 250, 0.02) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 20s ease-in-out infinite alternate;
}

.background-light-pink-7 {
    position: absolute;
    bottom: -20%;
    right: -25%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, 
        rgba(252, 11, 235, 0.2) 0%, 
        rgba(252, 11, 235, 0.12) 20%, 
        rgba(252, 11, 235, 0.08) 40%, 
        rgba(252, 11, 235, 0.04) 60%, 
        rgba(252, 11, 235, 0.02) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 24s ease-in-out infinite alternate reverse;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Bahnschrift', Arial, sans-serif;
}

.faq-question:hover {
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    transform: scale(1.02);
}

.faq-question:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    color: #333;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .background-light-blue-7 {
        width: 500px;
        height: 500px;
        top: -25%;
        left: -30%;
    }
    
    .background-light-pink-7 {
        width: 600px;
        height: 600px;
        bottom: -30%;
        right: -35%;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-question-text {
        padding-right: 0;
    }
    
    .faq-arrow {
        align-self: flex-end;
        margin-top: -1.5rem;
    }
    
    .faq-answer p {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .background-light-blue-7 {
        width: 350px;
        height: 350px;
        top: -30%;
        left: -35%;
    }
    
    .background-light-pink-7 {
        width: 400px;
        height: 400px;
        bottom: -35%;
        right: -40%;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a0033 0%, #0d001a 100%);
    padding: 3rem 2rem 2rem 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 30%, 
        transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 25s ease-in-out infinite alternate;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(36, 165, 250, 0.08) 0%, 
        rgba(36, 165, 250, 0.04) 30%, 
        transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 30s ease-in-out infinite alternate reverse;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.footer-contact {
    margin: 0;
}

.footer-email {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #00ff2e;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-support {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-section.contact-section {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem 1rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section.contact-section {
        grid-column: 1;
        margin-bottom: 0.5rem;
    }
    
    .footer-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-email {
        font-size: 0.95rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-support {
        font-size: 0.95rem;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .footer::before {
        width: 400px;
        height: 400px;
        top: -40%;
        left: -25%;
    }
    
    .footer::after {
        width: 350px;
        height: 350px;
        bottom: -25%;
        right: -20%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-email {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-support {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer::before {
        width: 300px;
        height: 300px;
        top: -35%;
        left: -30%;
    }
    
    .footer::after {
        width: 250px;
        height: 250px;
        bottom: -20%;
        right: -25%;
    }
} 