

:root {
  --deep-charcoal: #0A0A0A;
  --clean-white: #FFFFFF;
  --soft-dark-gray: #1F1F1F;
  --electric-blue: #00BFFF;
  --vibrant-orange: #FF6A00;
  --neon-green: #00FFC6;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep-charcoal);
  color: var(--clean-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(0, 191, 255, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0, 191, 255, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0, 191, 255, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0, 191, 255, 0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  z-index: -1;
  opacity: 0.5;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
  100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clean-white);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--vibrant-orange));
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--electric-blue);
}

p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

a:hover {
  color: var(--neon-green);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
  z-index: 1001;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clean-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.logo:hover {
  color: var(--electric-blue);
}

.logo::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--neon-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav ul li a {
  color: var(--clean-white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-smooth);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-green));
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  padding: 0.5rem;
  margin: -0.5rem;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--electric-blue);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: var(--clean-white);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--clean-white);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
  color: var(--deep-charcoal);
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 191, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--deep-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 191, 255, 0.4);
}

.btn-cta {
  background: linear-gradient(135deg, var(--vibrant-orange), #FF8C42);
  color: var(--clean-white);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 106, 0, 0.6);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 191, 255, 0.1), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 106, 0, 0.1), transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-visual {
  position: relative;
  animation: fadeIn 1.5s ease-out 0.6s backwards;
}

.device-mockup {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.device-mockup img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 191, 255, 0.3);
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.diagonal-divider {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--deep-charcoal) 50%, var(--soft-dark-gray) 50%);
  margin: 4rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--soft-dark-gray);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--electric-blue);
  box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  transition: var(--transition-bounce);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card p {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

.card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.tech-badge {
  background: rgba(0, 191, 255, 0.15);
  color: var(--electric-blue);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--soft-dark-gray);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 198, 0.2);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green));
  transform: translateX(-50%);
}

.stat-number {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  background: var(--soft-dark-gray);
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.9), rgba(255, 106, 0, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 2rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  color: var(--clean-white);
  margin-bottom: 1rem;
}

.portfolio-overlay p {
  color: var(--clean-white);
  margin-bottom: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--soft-dark-gray);
  border: 2px solid rgba(0, 191, 255, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--vibrant-orange);
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 106, 0, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--electric-blue);
  box-shadow: 0 20px 60px rgba(0, 191, 255, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, var(--vibrant-orange), #FF8C42);
  color: var(--clean-white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--neon-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--soft-dark-gray);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 16px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--clean-white);
  font-weight: 500;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--deep-charcoal);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 8px;
  color: var(--clean-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--electric-blue);
}

.form-button {
  width: 100%;
  margin-top: 1rem;
}

.testimonial-slider {
  max-width: 900px;
  margin: 3rem auto;
  position: relative;
}

.testimonial {
  background: var(--soft-dark-gray);
  border: 1px solid rgba(0, 255, 198, 0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(0, 191, 255, 0.2);
  line-height: 1;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
  font-weight: 600;
  color: var(--electric-blue);
  margin-bottom: 0.25rem;
}

.testimonial-company {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2,
.cta-banner p {
  color: var(--deep-charcoal);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-banner .btn {
  background: var(--deep-charcoal);
  color: var(--clean-white);
  position: relative;
  z-index: 1;
}

.cta-banner .btn:hover {
  background: var(--soft-dark-gray);
}

footer {
  background: var(--soft-dark-gray);
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--electric-blue);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--soft-dark-gray);
  border-top: 2px solid var(--electric-blue);
  padding: 1.5rem 2rem;
  display: none;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-content h1 {
  font-size: clamp(5rem, 15vw, 12rem);
  margin-bottom: 1rem;
}

.error-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.error-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.thankyou-content {
  position: relative;
  z-index: 1;
}

.checkmark-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-out;
}

.checkmark-circle::after {
  content: '✓';
  font-size: 5rem;
  color: var(--deep-charcoal);
  font-weight: 700;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 20s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  background: var(--electric-blue);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  background: var(--vibrant-orange);
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.shape:nth-child(3) {
  width: 100px;
  height: 100px;
  background: var(--neon-green);
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, 20px) rotate(180deg); }
  75% { transform: translate(40px, 10px) rotate(270deg); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 968px) {
  .menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 1002;
  }
  
  nav ul {
    display: flex;
  }
  
  .hero-content[style*="grid-template-columns: 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  .hero-content[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  .hero-content .hero-visual {
    order: 2;
  }
  
  .hero-content .hero-text {
    order: 1;
  }
  
  nav {
    position: relative;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 191, 255, 0.2);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }
  
  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav ul li a {
    display: block;
    padding: 1.25rem 0;
    width: 100%;
    font-size: 1.1rem;
  }
  
  nav ul.active {
    right: 0;
  }
  
  .menu-toggle.active {
    position: fixed;
    right: 2rem;
    top: 1.5rem;
  }
  
  .menu-toggle.active span {
    background: var(--clean-white);
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  body.menu-open .menu-overlay {
    display: block;
    opacity: 1;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  nav ul {
    max-width: 100%;
    padding: 70px 1.5rem 2rem;
  }
  
  .menu-toggle.active {
    right: 1.5rem;
    top: 1.25rem;
  }
  
  section {
    padding: 4rem 1.5rem;
  }
  
  .hero {
    padding: 5rem 1.5rem 3rem;
    min-height: 80vh;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 2rem 1.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .form-container {
    padding: 2rem 1.5rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .device-mockup {
    max-width: 100%;
  }
  
  .device-mockup img {
    width: 100%;
    height: auto;
  }
  
  .cta-banner {
    padding: 3rem 2rem;
  }
  
  .card img {
    height: 180px;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  section {
    padding: 4rem 1rem;
  }
  
  .hero {
    padding: 5rem 1rem 3rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  nav ul {
    padding: 60px 1rem 2rem;
  }
  
  .menu-toggle.active {
    right: 1rem;
    top: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .card {
    padding: 1.5rem 1rem;
  }
  
  .card[style*="padding: 3rem"] {
    padding: 1.5rem 1rem !important;
  }
  
  .form-container {
    padding: 2rem 1rem;
  }
  
  table {
    font-size: 0.8rem;
  }
  
  .card table th,
  .card table td {
    padding: 0.5rem 0.25rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .form-container {
    padding: 1.5rem 1rem !important;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  
  .card[style*="margin-bottom: 2rem"] {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .logo {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  nav ul {
    width: 100%;
    max-width: 100%;
    padding: 60px 1rem 2rem;
  }
  
  .menu-toggle {
    width: 24px;
  }
  
  .menu-toggle span {
    width: 24px;
    height: 2px;
  }
  
  .menu-toggle.active {
    right: 1rem;
    top: 1rem;
  }
  
  section {
    padding: 3rem 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .form-container {
    padding: 1.25rem 0.75rem !important;
  }
  
  .form-group {
    margin-bottom: 0.875rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 0.625rem;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .card[style*="margin-bottom: 2rem"] {
    margin-bottom: 1.25rem !important;
    padding: 1.25rem 0.75rem !important;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  div[style*="display: flex; align-items: center"] {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }
  
  div[style*="width: 50px; height: 50px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.25rem !important;
  }
  
  div[style*="display: flex; justify-content: space-between"] {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  div[style*="display: flex; justify-content: space-between"] span:last-child {
    margin-top: 0.25rem;
  }
  
  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .story-text {
    order: 1;
  }
  
  .story-image {
    order: 2;
  }
  
  .hero {
    padding: 4rem 1rem 2rem;
    min-height: 70vh;
  }
  
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .card {
    padding: 1.5rem 1rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
  
  .form-container {
    padding: 1.5rem 1rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .portfolio-item {
    aspect-ratio: 4/3;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card img {
    height: 150px;
  }
  
  .device-mockup img {
    width: 100%;
    height: auto;
  }
  
  .cta-banner {
    padding: 2rem 1.5rem;
  }
  
  .card img[style*="border-radius: 50%"] {
    width: 100px !important;
    height: 100px !important;
  }
  
  nav ul {
    padding: 50px 1rem 2rem;
  }
  
  .menu-toggle.active {
    right: 0.75rem;
    top: 0.75rem;
  }
  
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  table {
    font-size: 0.85rem;
  }
  
  table th,
  table td {
    padding: 0.75rem 0.5rem;
  }
  
  .card table,
  table[style*="width: 100%"] {
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
  }
  
  .card table thead,
  .card table tbody,
  .card table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  
  div[style*="overflow-x: auto"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  div[style*="overflow-x: auto"] table {
    min-width: 600px;
  }
}

@media (max-width: 768px) {
  .card {
    padding: 2rem 1.5rem;
  }
  
  .card[style*="padding: 3rem"] {
    padding: 2rem 1.5rem !important;
  }
  
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  
  .card table {
    font-size: 0.85rem;
    display: table;
  }
  
  .card table th,
  .card table td {
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
  }
  
  .card table th:first-child,
  .card table td:first-child {
    min-width: 120px;
  }
}
  
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  
  .cta-banner p {
    font-size: 1rem;
  }
  
  .cookie-content {
    padding: 1rem;
  }
  
  .cookie-content p {
    font-size: 0.85rem;
  }
  
  .testimonial {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spacer {
  height: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}
