:root {
  --primary: #e43d12;
  --secondary: #d6536d;
  --accent: #ffa2b6;
  --highlight: #efb11d;
  --background: #ebe9e1;
  --text-dark: #0a0a0a;
  --text-light: #ffffff;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-dark: rgba(25, 25, 25, 0.8);

  --font-sans:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(228, 61, 18, 0.4);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: none;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(228, 61, 18, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
}

.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  border-color: var(--primary);
  background-color: rgba(228, 61, 18, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: none;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--accent);
  animation-delay: 0s;
}

.shape-2 {
  bottom: -10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: var(--highlight);
  animation-delay: -5s;
}

.shape-3 {
  top: 40%;
  left: 60%;
  width: 30vw;
  height: 30vw;
  background: var(--primary);
  opacity: 0.4;
  animation-delay: -10s;
}

.dark-shapes .shape-4 {
  top: 0;
  right: 0;
  width: 50vw;
  height: 50vw;
  background: rgba(228, 61, 18, 0.2);
  filter: blur(100px);
}

.dark-shapes .shape-5 {
  bottom: 0;
  left: 0;
  width: 40vw;
  height: 40vw;
  background: rgba(214, 83, 109, 0.2);
  filter: blur(100px);
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(30px, -50px) rotate(10deg) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-5deg) scale(0.9);
  }

  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.text-gradient {
  background: linear-gradient(135deg,
      var(--primary),
      var(--secondary),
      var(--highlight));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animated-gradient {
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.section {
  padding: 120px 0;
  position: relative;
  width: 100%;
}

.relative-section {
  position: relative;
  overflow: hidden;
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

.relative-z {
  position: relative;
  z-index: 5;
}

.section-heading {
  margin-bottom: 70px;
  max-width: 650px;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-heading p {
  font-size: 1.25rem;
  color: #555;
}

.bg-dark .section-heading p {
  color: #aaa;
}

.grid {
  display: grid;
  gap: 32px;
}

.glass-section {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
}

.bg-dark .glass-card {
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle,
      rgba(228, 61, 18, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.primary-glow {
  background: radial-gradient(circle,
      rgba(228, 61, 18, 0.25) 0%,
      transparent 70%);
  opacity: 1;
}

.accent-glow {
  background: radial-gradient(circle,
      rgba(255, 162, 182, 0.3) 0%,
      transparent 70%);
  opacity: 1;
  width: 300px;
  height: 300px;
}

.card:hover .card-glow {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 2;
}

.tilt-card {
  transform-style: preserve-3d;
}

.tilt-card-subtle {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: none;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(228, 61, 18, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(228, 61, 18, 0.5);
}

.btn-secondary {
  background-color: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.w-100 {
  width: 100%;
}

.btn-glow {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(228, 61, 18, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(228, 61, 18, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(228, 61, 18, 0);
  }
}

.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: var(--transition);
  padding: 10px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  padding: 5px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

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

.center-logo-layout {
  justify-content: space-between;
}

.center-logo-layout .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.left-links,
.right-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 900px) {

  .center-logo-layout .left-links,
  .center-logo-layout .right-links {
    display: none;
  }

  .center-logo-layout .logo {
    position: static;
    transform: none;
  }
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-weight: 600;
  color: #111;
  font-size: 0.95rem;
}

.nav-links .btn-nav {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 10px 28px;
  border-radius: var(--radius-full);
}

.nav-links .btn-nav:hover {
  background: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: none;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
  transform-origin: left center;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  width: 110%;
}

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

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  width: 110%;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  position: relative;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-title {
  font-size: 6.5rem;
  line-height: 1.05;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.word-reveal {
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #444;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin-top: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transform: rotate(-2deg) scale(1.05);
  transform-origin: center;
  z-index: 5;
}

.marquee {
  white-space: nowrap;
  display: inline-flex;
  animation: scrollText 30s linear infinite;
}

.marquee span {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-right: 10px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(228, 61, 18, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
  font-size: 1rem;
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.portfolio-grid-asym {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  grid-auto-rows: 250px;
  gap: 32px;
}

@media (min-width: 768px) {
  .portfolio-grid-asym {
    grid-template-columns: 1fr 1fr;
  }
}

.portfolio-item {
  padding: 0;
  border: none;
}

.portfolio-item:hover .portfolio-placeholder {
  transform: scale(1.1);
}

.portfolio-placeholder {
  height: 280px;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bg-moving {
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite alternate;
}

.bg-gradient-1 {
  background-image: linear-gradient(135deg, var(--primary), var(--secondary));
}

.bg-gradient-2 {
  background-image: linear-gradient(135deg, var(--secondary), var(--accent));
}

.bg-gradient-3 {
  background-image: linear-gradient(135deg, var(--highlight), rgb(240, 97, 31));
}

.glass-panel {
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(20px);
  opacity: 0.9;
  transition: var(--transition);
}

.portfolio-item:hover .glass-panel {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bg-dark {
  background-color: #050505;
  color: var(--text-light);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 650px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hover-float:hover {
  transform: translateY(-5px) translateX(10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(228, 61, 18, 0.4);
}

.feature-item:hover .feature-icon {
  animation: rotateShake 0.5s ease-in-out;
}

@keyframes rotateShake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(15deg);
  }

  75% {
    transform: rotate(-15deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.feature-item span {
  font-size: 1.25rem;
  font-weight: 600;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.pricing-card {
  padding: 50px 40px;
  position: relative;
}

.featured-pricing {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(228, 61, 18, 0.15);
  z-index: 2;
  overflow: visible;
}

.featured-pricing:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px rgba(228, 61, 18, 0.2);
}

.animated-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
      var(--primary),
      var(--secondary),
      var(--primary));
  background-size: 200% auto;
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: gradientShift 3s linear infinite;
  box-shadow: 0 5px 15px rgba(228, 61, 18, 0.4);
}

.pricing-header {
  margin-bottom: 35px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #555;
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-dark);
}

.price span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #888;
}

.pricing-features {
  margin-bottom: 45px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
  font-size: 1.05rem;
}

.pricing-features li svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(228, 61, 18, 0.3));
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.about-modern-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-headline {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.about-lead-text strong {
  color: var(--text-dark);
  font-weight: 800;
}

.about-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card-small {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-icon-small {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

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

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature-text p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.about-modern-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glowing-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 61, 18, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 4s infinite alternate;
}

.central-image-container {
  position: relative;
  width: 85%;
  height: 80%;
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.glass-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 1);
  z-index: 3;
}

.floating-badge h4 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 900;
}

.floating-badge span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #666;
}

.badge-1 {
  top: 40px;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}

.badge-2 {
  bottom: 60px;
  left: -40px;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.subtitle {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.about-text p {
  color: #555;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  font-weight: 600;
  margin: 0;
}

.visual-card {
  position: absolute;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-card {
  width: 80%;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.visual-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  font-weight: 900;
}

.hover-card {
  width: 200px;
  height: 150px;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 1);
}

.hover-card svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.hover-card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.large-text {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.9;
  font-weight: 500;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  font-size: 4rem;
  margin-bottom: 24px;
}

.contact-form-wrapper {
  padding: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.input-effect {
  position: relative;
}

.input-effect input,
.input-effect textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  font-size: 1.1rem;
  background: transparent;
  color: var(--text-dark);
  font-family: inherit;
  transition: var(--transition);
  resize: none;
}

.input-effect input:focus,
.input-effect textarea:focus {
  outline: none;
}

.input-effect label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1.1rem;
  color: #777;
  transition: var(--transition);
  pointer-events: none;
}

.input-effect input:focus~label,
.input-effect input:not(:placeholder-shown)~label,
.input-effect textarea:focus~label,
.input-effect textarea:not(:placeholder-shown)~label {
  top: -20px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.4s;
}

.input-effect input:focus~.focus-border,
.input-effect textarea:focus~.focus-border {
  width: 100%;
}

.footer {
  padding: 100px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content.center-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.center-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-footer .footer-links {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 80px;
}

@media (min-width: 900px) {
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

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

.footer-links a {
  font-size: 1.1rem;
  color: #aaa;
  width: fit-content;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.icon-glow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.icon-glow:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(228, 61, 18, 0.4);
  border-color: var(--primary);
}

.scroll-hide {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-show {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
  transition-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
  transition-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
  transition-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}

.delay-7 {
  animation-delay: 0.7s;
  transition-delay: 0.7s;
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.pulse-glow {
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  background: #20ba56;
  animation: none;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content {
    padding: 60px 40px;
  }

  .about-modern-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-headline {
    font-size: 3rem;
  }

  .featured-pricing {
    transform: scale(1);
  }

  .featured-pricing:hover {
    transform: translateY(-10px);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  html,
  a,
  button {
    cursor: auto;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 4rem;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    padding: 30px;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    left: 0;
    top: 0;
    margin: 0;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .about-modern-visual {
    height: 450px;
  }

  .glowing-orb {
    width: 300px;
    height: 300px;
  }

  .floating-badge h4 {
    font-size: 2rem;
  }

  .floating-badge {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .badge-1 {
    right: -10px;
  }

  .badge-2 {
    left: -10px;
  }

  .section {
    padding: 80px 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-grid-asym {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .footer-content.center-footer {
    gap: 40px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .bg-shapes {
    opacity: 0.3;
  }

  .card,
  .glass-card,
  .glass-panel {
    backdrop-filter: none;
    background: #fff;
  }

  .bg-dark .glass-card {
    background: #111;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .about-headline {
    font-size: 2.2rem;
  }

  .about-lead-text {
    font-size: 1.1rem;
  }

  .about-modern-visual {
    height: 350px;
  }

  .glowing-orb {
    width: 250px;
    height: 250px;
  }

  .floating-badge h4 {
    font-size: 1.5rem;
  }

  .floating-badge span {
    font-size: 0.75rem;
  }

  .badge-1 {
    top: 20px;
    right: 0px;
  }

  .badge-2 {
    bottom: 20px;
    left: 0px;
  }

  .pricing-card {
    padding: 40px 25px;
  }

  .price {
    font-size: 2.8rem;
  }
}