/* Reset / Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 90%;
  max-width: 1200px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(10, 10, 10, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.logo {
  height: 50px;
  filter: brightness(1.2);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transition: all 0.3s ease;
}

.nav-links a:hover::before {
  width: 100%;
  left: 0;
}

.nav-links a:hover {
  color: #ec4899;
}

.cta {
  padding: 0.8rem 1.5rem !important;
  background: linear-gradient(135deg, #6366f1, #ec4899) !important;
  color: white !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3) !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4) !important;
}

.cta::before {
  display: none !important;
}

/* Home Section */
.home {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #6366f1, #ec4899);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.home-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 2rem;
}

.motto-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  backdrop-filter: blur(20px);
  padding: 4rem 3rem;
  animation: fadeInUp 1.5s cubic-bezier(0.23, 1.01, 0.32, 1) both;
  position: relative;
  overflow: hidden;
}

.motto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(236, 72, 153, 0.1)
  );
  border-radius: 2rem;
  z-index: -1;
}

.motto {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.2rem;
  color: #ffffffb3;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-features {
  padding-left: 15px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Process Section */
.process {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.process-step {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.23, 1.01, 0.32, 1);
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(236, 72, 153, 0.3);
  transform: translateY(-5px);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(236, 72, 153, 0.05)
  );
  border-radius: 1.5rem;
  z-index: -1;
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.step-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 1rem;
}

/* SVG Connecting Lines */
.process-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.connection-line {
  stroke: url(#gradient);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.5s ease;
}

.connection-line.animate {
  stroke-dashoffset: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 0.8rem 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-card {
    height: auto;
    padding: 2rem 1.5rem;
  }

  .process h2 {
    font-size: 2rem;
  }

  .process-intro {
    font-size: 1rem;
    margin-bottom: 4rem;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

/* Offer Section */
.offer {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.offer h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.offer-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.1);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(236, 72, 153, 0.05)
  );
  border-radius: 1.5rem;
  z-index: -1;
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.offer-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.offer-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.offer-features {
  list-style: none;
}

.offer-features li {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.offer-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
}

/* Pricing Section */
.pricing {
  padding: 8rem 2rem;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.3);
}

.pricing-card.featured {
  border-color: rgba(236, 72, 153, 0.5);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 1rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.currency {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Wireframe Preview Styles */
.wireframe-preview {
  margin: 2rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wireframe-preview:hover {
  transform: scale(1.02);
}

.browser-frame {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}
.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
  background: #28ca42;
}

.browser-content {
  padding: 1rem;
  min-height: 200px;
}

.wireframe-section {
  margin-bottom: 1rem;
  animation: wireframeFloat 3s ease-in-out infinite;
}

@keyframes wireframeFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* Basic wireframe elements */
.wireframe-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.nav-logo {
  width: 60px;
  height: 20px;
  background: rgba(236, 72, 153, 0.6);
  border-radius: 4px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.nav-items {
  display: flex;
  gap: 0.5rem;
}

.nav-item {
  width: 30px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.hero-section {
  text-align: center;
  padding: 1.5rem 0;
}

.hero-title {
  width: 80%;
  height: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin: 0 auto 0.5rem;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-subtitle {
  width: 60%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.hero-button {
  width: 80px;
  height: 24px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 12px;
  margin: 0 auto;
  animation: buttonGlow 2s infinite;
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
  }
  50% {
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.6);
  }
}

/* Contact Section */
.contact {
  padding: 8rem 2rem 6rem 2rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 320px;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  padding: 1.1rem 1.5rem;
  transition: border 0.3s;
}

.contact-method:hover {
  border: 1px solid #ec4899;
}

.method-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pricing-cta,
.pricing-cta.featured-cta {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.pricing-cta.featured-cta {
  background: linear-gradient(90deg, #ec4899 0%, #6366f1 100%);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.18);
}

.pricing-cta:hover,
.pricing-cta:focus {
  background: linear-gradient(90deg, #ec4899 0%, #6366f1 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.25);
  outline: none;
}

.pricing-cta.featured-cta:hover,
.pricing-cta.featured-cta:focus {
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.22);
}

.method-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.method-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
  flex: 1 1 400px;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.08);
  backdrop-filter: blur(12px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form label {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.9rem 1.1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s, background 0.2s;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ec4899;
  background: rgba(255, 255, 255, 0.13);
}

.contact-form textarea {
  min-height: 120px;
  max-height: 240px;
}

.submit-btn {
  margin-top: 1rem;
  padding: 1rem 0;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn:hover,
.submit-btn:focus {
  background: linear-gradient(90deg, #ec4899 0%, #6366f1 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.25);
  outline: none;
}

.btn-animation {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, #6366f1 0%, #ec4899 100%);
  opacity: 0.08;
  z-index: 0;
  border-radius: 50px;
  pointer-events: none;
  transition: opacity 0.3s;
}

.submit-btn:active .btn-animation {
  opacity: 0.18;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
  color: #fff;
  padding: 0;
  margin-top: 0;
  font-size: 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 1.5rem 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
}

.footer-brand {
  /*! flex: 1 1 220px; */
  min-width: 200px;
  height: fit-content;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 3rem;
  /*! flex: 2 1 400px; */
  min-width: 300px;
  justify-content: flex-end;
}

.footer-column {
  min-width: 140px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #ec4899;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.98rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 3rem;
  }
  .contact-form-wrapper,
  .contact-info {
    min-width: 0;
    width: 100%;
  }
  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
  }
  .footer-links {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    justify-content: flex-start;
  }
}

.form-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.4s ease forwards;
}

.form-toast.hidden {
  display: none;
}

#form-toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 600px) {
  nav .logo-mobile {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  nav .logo {
    display: none;
  }
  nav .logo-mobile {
    display: block;
  }

  .idk {
    display: none;
  }
}

select,
option {
  /*! background-color: #161625; */
  color: #000;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ec4899;
  appearance: none;
}

select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}
