:root {
  --canva-purple: #7d2ae8;
  --canva-blue: #00c4cc;
  --canva-pink: #ff007c;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0d1216;
}

.fw-black {
  font-weight: 900;
}

.hero-section {
  background: linear-gradient(135deg, var(--bs-danger) 0%, var(--bs-yellow) 100%);
  color: white;
  padding: 100px 0;
}

.btn-light-outline {
  border: 1px solid white;
  color: white;
  background: transparent;
}

.btn-light-outline:hover {
  background: white;
  color: #7d2ae8;
}

.canva-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
  border: none;
}

.canva-card:hover {
  transform: translateY(-5px);
}

.card-gradient-1 {
  background: linear-gradient(45deg, #f7c71d, #f88600);
}

.figma-hero-carousel {
  background-color: #000;
  color: #fff;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.figma-hero-carousel .carousel-item {
  padding: 100px 0;
}

.figma-hero-carousel h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.figma-hero-carousel p {
  font-size: 1.25rem;
  color: #b3b3b3;
  max-width: 500px;
  margin-bottom: 2rem;
}

.figma-hero-carousel .btn-figma-primary {
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  transition: opacity 0.2s;
}

.figma-hero-carousel .btn-figma-primary:hover {
  opacity: 0.9;
}

.figma-hero-carousel .btn-figma-outline {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  background: transparent;
  transition: background-color 0.2s;
}

.figma-hero-carousel .btn-figma-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.figma-product-image {
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.carousel-item.active .figma-product-image {
  transform: perspective(1000px) rotateY(0deg);
}

.figma-hero-carousel .carousel-indicators {
  bottom: 40px;
  justify-content: start;
  margin-left: 10%;
}

.figma-hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 12px;
}

.card-gradient-2 {
  background: #fdf2e9;
  color: #333;
}

.card-gradient-3 {
  background: #ffebf3;
  color: #333;
}

.card-gradient-4 {
  background: #e0f7fa;
  color: #333;
}

.card-gradient-5 {
  background: #fffde7;
  color: #333;
}

.card-gradient-6 {
  background: linear-gradient(45deg, #bc2fff, #dd2476);
  color: white;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.template-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(90deg, #7d2ae8 0%, #ff007c 100%);
  color: white;
  padding: 80px 0;
}

.footer-link {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #000;
}

.navbar-brand img {
  height: 30px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.grid-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .grid-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

