@charset "utf-8";

/* ============================================
   RESET & BASE STYLES (Mobile First)
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
}
 
body:not(.login-page )::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: linear-gradient(180deg, #b393f9 40%, #ffffff 100%);
  z-index: -1;
}


/* ============================================
   TOP BAR (Mobile First)
   ============================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.top-bar-inner {
  width: 100%;
  background: rgba(249, 249, 249, 0.407);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-svg {
  height: 24px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.nav-links a {
  display: none; /* Hide nav links on mobile */
}

.blue-inner-link {
  background: #5b2dff;
  padding: 8px 16px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  display: inline-block;
}

/* ============================================
   HAMBURGER MENU (Mobile First)
   ============================================ */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(249, 249, 249, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 0 20px 20px;
}

.mobile-menu-link {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.3s ease;
  
  text-align: center;
}

.mobile-menu-link:hover {
  border: #000000 0.5px solid;
}

.mobile-menu-download {
  background: #5b2dff;
  color: white;
  border-radius: 999px;
}

.mobile-menu-download:hover {
  background: #4a25e0;
  color: white;
}

/* ============================================
   HERO SECTION (Mobile First) - INDEX PAGE
   ============================================ */
.smarterai {
  background-image: none; /* No background image on mobile */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.first-text {
  margin: 40px 30px;
}

.ai {
  font-size: 42px;
  font-weight: 200;
  line-height: 1.2;
}

.text-ai {
  font-size: 16px;
  font-weight: 100;
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
  line-height: 1.4;
}

.smarterai-button {
  display: inline-block;
  margin: 24px 20px 0;
  padding: 12px 24px;
  background: #5b2dff;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.smarterai-button:hover {
  background: #4a25e0;
}

.people-mobile {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 50px;
}

.people-desktop {
  display: none; /* Hide on mobile */
}

/* ============================================
   BLUE TEXT SECTION (Mobile First) - INDEX PAGE
   ============================================ */
.blue-text {
  margin-top: 60px;
  padding: 0 20px;
}

.big-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  text-align: center;
  font-weight: 200;
  color: #5b2dff;
  line-height: 1.3;
}

.smoll-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  margin-top: 24px;
  font-weight: 200;
  line-height: 1.4;
  padding: 0 10px;
}

/* ============================================
   GALLERY (Mobile First) - INDEX PAGE
   ============================================ */
.gallery {
  margin-top: 120px;
}

.gallery-cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  padding: 0 20px;
  gap: 12px;
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-cards img:nth-child(1),
.gallery-cards img:nth-child(4),
.gallery-cards img:nth-child(5) {
  grid-row: span 1;
}

/* ============================================
   SERVICES SECTION (Mobile First) - INDEX PAGE
   ============================================ */
.services {
  margin-top: 80px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.services-title {
  font-size: 36px;
  font-weight: 200;
  color: #5b2dff;
  text-align: center;
  margin-bottom: 50px;
}

.agents-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 220px;
  z-index: 2;
  position: relative;
}

.agent-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #f5f5f5;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.agent-btn:hover {
  background: #e8e8e8;
}

.agent-btn-active {
  background: #e8d5ff;
  color: #5b2dff;
}

.inner-circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 235, 150, 0.7) 30%, rgba(255, 180, 100, 0.5) 60%, rgba(255, 120, 150, 0.3) 100%);
  filter: blur(25px);
  animation: pulse-inner 3s ease-in-out infinite;
  z-index: 2;
}

.static-circle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 235, 150, 0.9) 0%, rgba(255, 220, 120, 0.7) 50%, rgba(255, 200, 100, 0.5) 100%);
  opacity: 40%;
  z-index: 3;
}

@keyframes pulse-inner {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

/* ============================================
   ABOUT SECTION (Mobile First) - INDEX PAGE
   ============================================ */
.about {
  max-width: 100%;
  margin-top: 150px;
  padding: 0 20px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-text {
  background: #fff6e5;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.about-big {
  font-size: 24px;
  font-weight: 200;
  line-height: 1.2;
}

.about-small {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.4;
}

/* About the layout - INDEX PAGE */
.about-layout-title {
  margin-left: 40px;
  font-size: 26px;
  font-weight: 200;
  color: #5b2dff;
  margin-top: 110px;
}

.about-layout-image {
  width: 70%;
  height: auto;
  margin-top: 20px;
  margin-left: auto;
  display: block;
}

/* Try section - INDEX PAGE */
.try {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
}

.try-title {
  font-size: 32px;
  font-weight: 200;
  color: #5b2dff;
}

.try-button {
  background: #5b2dff;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 34px 2px;
}

.try-button:hover {
  background: #4a25e0;
}

/* ============================================
   PRICING TITLE (Mobile First) - PRICING PAGE
   ============================================ */
.pricing {
  font-size: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  font-weight: 200;
  padding: 0 20px;
}

/* ============================================
   TIME PRICING TOGGLE (Mobile First) - PRICING PAGE
   ============================================ */
.time-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  background: white;
  padding: 4px;
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.time-pricing::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 0;
  height: calc(100% - 8px);
  background: rgb(190, 187, 187);
  border-radius: 999px;
  transition: all 0.3s ease;
  z-index: 1;
}

.time-pricing.monthly-active::before {
  width: calc(50% - 4px);
  transform: translateX(0);
}

.time-pricing.yearly-active::before {
  width: calc(50% - 4px);
  transform: translateX(100%);
}

.toggle-option {
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  color: #000;
  background: transparent;
  font-size: 14px;
}

.toggle-option.active {
  color: #000;
}

/* ============================================
   PLANS SECTION (Mobile First) - PRICING PAGE
   ============================================ */
.plans-section {
  max-width: 100%;
  margin: 60px auto;
  padding: 0 20px;
}

.plan-title {
  font-size: 18px;
  font-weight: 200;
  text-align: center;
  margin-bottom: 32px;
  color: #000;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-name {
  font-size: 22px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.plan-price {
  font-size: 18px;
  font-weight: 200;
  color: #000;
  margin: 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 200;
}

.plan-features li {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.plan-button {
  background: #e0e0e0;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s ease;
}

.plan-button:hover {
  background: #d0d0d0;
}

/* ============================================
   DEVELOPERS SECTION (Mobile First) - PRICING PAGE
   ============================================ */
.developers {
  max-width: 100%;
  margin: 80px 40px;
}

.developers-text {
  font-size: 24px;
  font-weight: 200;
  text-align: center;
  padding: 0 20px;
  color: #5b2dff;
}

.developers-grid-wrapper {
  overflow: hidden;
  margin-top: 80px;
  width: 100%;
}

.developers-grid {
  display: flex;
  gap: 24px;
  padding: 8px 16px 12px;
  animation: scroll-logos 35s linear infinite;
  width: fit-content;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(calc(-50% - 12px));
  }
  100% {
    transform: translateX(0);
  }
}

.developers-logos {
  width: auto;
  height: 60px;
  flex: 0 0 auto;
}

/* ============================================
   FOOTER (Mobile First)
   ============================================ */
.footer {
  background: #1a1a1a;
  border-radius: 24px 24px 0 0;
  margin-top: 80px;
  padding: 40px 24px 32px;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

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

.footer-heading {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 200;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-brand {
  font-size: 60px;
  font-weight: 300;
  color: #353535;
  letter-spacing: -1px;
}

/* SUBPAGES */

/* subpages sign in */

.sign-in
{
  display: flex;
  
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
}
.sign-in-content
{
  font-size: 26px;
  font-weight: 200;
  
  margin-bottom: 50px;
}
.sign-in-methods
{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.sign-in-button
{
  border: #000000 0.5px solid;
  background: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
 
}
.sign-in-button:hover
{
 background: #5b2dff;
 border: none;
 color: #e8e8e8;
}



.account
{
  margin-top: 50px;
  color: #5b2dff;
  text-align: center;
  
}

.account-sing-in
{
  margin-top: 20px;
  text-align: center;
  
}
/* subpage download */

.sign-in-icon
{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sign-in-button:hover .sign-in-icon
{
  filter: brightness(0) invert(1);
}




/* ============================================
   TABLET STYLES (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
 

  /* Hide gradient on tablet and desktop, but keep it for pricing page */
  body:not(.login-page):not(.pricing-page)::before {
    display: none;
  }

  /* Top Bar - Tablet */
  .top-bar {
    padding: 14px 24px;
  }

  .top-bar-inner {
    border-radius: 18px;
    padding: 10px 24px;
    max-width: 1200px;
  }

  .logo-svg {
    height: 26px;
  }

  .nav-links {
    gap: 24px;
    font-size: 15px;
  }

  .nav-links a {
    display: inline-block; /* Show nav links on tablet */
  }

  .hamburger-menu {
    display: none; /* Hide hamburger on tablet and up */
  }

  .mobile-menu-overlay {
    display: none; /* Hide mobile menu on tablet and up */
  }

  .blue-inner-link {
    padding: 10px 20px;
    font-size: 15px;
  }

  /* Hero Section - Tablet - INDEX PAGE */
  .smarterai {
    background-image: url('../images/background-color.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -80px; /* Offset body padding-top to touch top edge */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    position: relative;
    min-height: 600px;
    padding: 120px 40px 60px;
  }

  .first-text {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
  }

  .ai {
    font-size: 56px;
    margin: 0;
  }

  .text-ai {
    font-size: 18px;
    margin-top: 24px;
    max-width: 500px;
  }

  .smarterai-button {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    align-self: start;
    margin-top: 24px;
    padding: 14px 28px;
    font-size: 17px;
  }
  .people-mobile {
    display: none; 
  }

  .people-desktop {
    display: block;
    grid-column: 2;
    grid-row: 1 / 4;
    width: auto;
    height: auto;
    max-width: 70%;
    object-fit: contain;
    justify-self: end;
    align-self: start;
    margin-right: 40px;
  }

  /* Blue Text - Tablet - INDEX PAGE */
  .blue-text {
    margin-top: 160px;
    
  }
  .big-blue 
  {
    font-size: 42px;
  }



  /* Gallery - Tablet - INDEX PAGE */
  .gallery {
    margin-top: 200px;
  }

  .gallery-cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
    gap: 15px;
  }

  .gallery-cards img:nth-child(1) {
    grid-row: span 2;
  }

  .gallery-cards img:nth-child(4) {
    grid-row: span 2;
  }

  .gallery-cards img:nth-child(5) {
    grid-row: span 2;
  }

  /* Services - Tablet - INDEX PAGE */
  .services {
    margin-top: 160px;
    padding: 60px 40px;
    min-height: 550px;
  }

  .services-title {
    font-size: 48px;
    margin-bottom: 48px;
  }

  .agents-container {
    gap: 12px;
    margin-bottom: 270px;
  }

  .agent-btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .inner-circle {
    width: 220px;
    height: 220px;
  }

  .static-circle {
    width: 180px;
    height: 180px;
  }

  /* About - Tablet - INDEX PAGE */
  .about {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 32px;
  }

  .about-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .about-text {
    padding: 28px 32px;
  }

  .about-big {
    font-size: 26px;
  }

  .about-small {
    font-size: 16px;
  }

  
  /* Pricing Title - Tablet - PRICING PAGE */
  .pricing {
    font-size: 56px;
    margin-top: 80px;
  }

  /* Plans - Tablet - PRICING PAGE */
  .plans-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 32px;
  }

  .plan-title {
    font-size: 19px;
    margin-bottom: 40px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
    max-width: 100%;
  }

  .plan-card {
    padding: 28px 22px;
  }

  .plan-name {
    font-size: 23px;
  }

  .plan-price {
    font-size: 19px;
  }

  .plan-features li {
    font-size: 15px;
  }

  .plan-button {
    font-size: 15px;
  }

  /* Developers - Tablet - PRICING PAGE */
  .developers {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 30px;
  }

  .developers-text {
    font-size: 24px;
    padding: 0;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
  }

  .developers-grid-wrapper {
    margin-top: 100px;
  }

  .developers-grid {
    display: flex;
    gap: 50px;
    padding: 0;
    animation: scroll-logos-tablet 25s linear infinite;
  }

  @keyframes scroll-logos-tablet {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(calc(-50% - 25px));
    }
    100% {
      transform: translateX(0);
    }
  }

  .developers-logos {
    height: 75px;
  }

  /* Footer - Tablet */
  .footer {
    border-radius: 32px 32px 0 0;
    margin-top: 100px;
    padding: 50px 60px 40px;
  }

  .footer-content {
    max-width: 1200px;
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 30px;
  }

  .footer-brand {
    font-size: 64px;
  }
}

/* ============================================
   DESKTOP STYLES (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
  body {
    padding-top: 96px;
  }

  /* Hide gradient on desktop (already hidden on tablet), but keep it for pricing page */
  body:not(.login-page):not(.pricing-page)::before {
    display: none;
  }

  /* Top Bar - Desktop */
  .top-bar {
    padding: 16px 32px;
  }

  .top-bar-inner {
    max-width: 1800px;
    border-radius: 20px;
    padding: 10px 28px;
  }

  .logo-svg {
    height: 27px;
  }

  .nav-links {
    gap: 80px;
  }

  .blue-inner-link {
    padding: 10px 22px;
  }
 

  /* Hero Section - Desktop - INDEX PAGE */
  .smarterai {
    background-image: url('../images/background-color.png');
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -96px; /* Offset body padding-top */
    padding: calc(96px + 80px) 80px 100px; /* body padding + original padding */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    position: relative;
    min-height: 700px;
  }

  .first-text {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
  }

  .ai {
    font-size: 84px;
    margin: 0;
  }

  .text-ai {
    font-size: 20px;
    margin-top: 40px;
    width: 500px;
  }

  .smarterai-button {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    align-self: start;
    margin-top: 40px;
    padding: 16px 32px;
    font-size: 18px;
  }

  .people-mobile {
    display: none; 
  }

  .people-desktop {
    display: block;
    grid-column: 2;
    grid-row: 1 / 4;
    width: auto;
    height: auto;
    max-width: 70%;
    object-fit: contain;
    justify-self: end;
    align-self: start;
    margin-right: 60px;
  }

  /* Blue Text - Desktop - INDEX PAGE */
  .blue-text {
    margin-top: 200px;
    padding: 0 40px;
  }

  .big-blue {
    font-size: 55px;
  }

  .smoll-blue {
    font-size: 16px;
    margin-top: 40px;
  }

  /* Gallery - Desktop - INDEX PAGE */
  .gallery {
    margin-top: 200px;
  }

  .gallery-cards {
    padding: 0 200px;
  }

  /* Services - Desktop - INDEX PAGE */
  .services {
    margin-top: 200px;
    padding: 80px 40px;
    min-height: 600px;
  }

  .services-title {
    font-size: 64px;
    margin-bottom: 60px;
  }

  .agents-container {
    gap: 16px;
    margin-bottom: 140px;
  }

  .agent-btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .inner-circle {
    width: 250px;
    height: 250px;
  }

  .static-circle {
    width: 200px;
    height: 200px;
  }

  /* About - Desktop - INDEX PAGE */
  .about {
    margin: 200px auto;
    padding: 0 32px;
  }

  .about-text {
    padding: 32px 40px;
    gap: 20px;
  }

  .about-big {
    font-size: 30px;
  }

  /* Pricing Title - Desktop - PRICING PAGE */
  .pricing {
    font-size: 67px;
    margin-top: 100px;
  }

  /* Time Pricing - Desktop - PRICING PAGE */
  .time-pricing {
    margin-top: 40px;
  }

  .toggle-option {
    padding: 8px 24px;
    font-size: 16px;
  }

  /* Plans - Desktop - PRICING PAGE */
  .plans-section {
    margin: 100px auto;
    padding: 0 32px;
  }

  .plan-title {
    font-size: 20px;
    margin-bottom: 48px;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .plan-card {
    padding: 32px 24px;
    gap: 20px;
  }

  .plan-name {
    font-size: 24px;
  }

  .plan-price {
    font-size: 20px;
  }

  .plan-features {
    gap: 12px;
  }

  .plan-features li {
    font-size: 15px;
  }

  /* Developers - Desktop - PRICING PAGE */
  .developers {
    max-width: 1600px;
    margin: 200px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .developers-text {
    font-size: 24px;
    text-align: center;
    max-width: 500px;
  }

  .developers-grid-wrapper {
    margin-top: 90px;
    width: 100%;
  }

  .developers-grid {
    display: flex;
    gap: 70px;
    padding: 0;
    animation: scroll-logos-desktop 30s linear infinite;
  }

  @keyframes scroll-logos-desktop {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(calc(-50% - 35px));
    }
    100% {
      transform: translateX(0);
    }
  }

  .developers-logos {
    height: 90px;
  }

  /* Footer - Desktop */
  .footer {
    border-radius: 40px 40px 0 0;
    margin-top: 120px;
    padding: 60px 80px 40px;
  }

  .footer-columns {
    gap: 60px;
    margin-bottom: 20px;
  }

  .footer-brand {
    font-size: 120px;
  }
}

