:root {
  --google-blue: #4285f4;
  --google-blue-dark: #1a73e8;
  --google-green: #34a853;
  --google-yellow: #fbbc04;
  --google-red: #ea4335;
  --google-gray-50: #f8f9fa;
  --google-gray-100: #f1f3f4;
  --google-gray-200: #e8eaed;
  --google-gray-300: #dadce0;
  --google-gray-400: #bdc1c6;
  --google-gray-500: #9aa0a6;
  --google-gray-600: #5f6368;
  --google-gray-700: #3c4043;
  --google-gray-800: #202124;
  --google-indigo: #536dfe;
}

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

body {
  font-family: "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--google-gray-700);
  overflow-x: hidden;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 28px;
  font-weight: 600;
  color: var(--google-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo::before {
  content: "";
  margin-right: 0;
  font-size: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--google-gray-600);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--google-blue);
}

/* Primary Button Styles */
.primary-btn {
  background: var(--google-blue);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.primary-btn:hover {
  background: var(--google-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.3);
}

.primary-btn .material-icons {
  font-size: 20px;
}

/* Secondary Button Styles */
.secondary-btn {
  background: white;
  color: var(--google-gray-700);
  padding: 16px 32px;
  border: 2px solid var(--google-gray-300);
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.secondary-btn:hover {
  border-color: var(--google-blue);
  color: var(--google-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.secondary-btn .material-icons {
  font-size: 20px;
}

/* CTA Button in Header */
.cta-button {
  background: var(--google-blue);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--google-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Hero Section */
.hero {
  padding: 80px 24px 0;
  padding-top: 160px;
  background: var(--google-gray-50);
  color: var(--google-gray-800);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
}

.hero-content {
  max-width: 600px;
  justify-self: start;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--google-gray-800);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  line-height: 1.6;
  color: var(--google-gray-600);
}

.hero-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--google-gray-700);
}

.hero-features .material-icons {
  margin-right: 12px;
  color: var(--google-blue);
}

.hero-video {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 650px;
  width: 350px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  justify-self: end;
}

.hero-video::before,
.hero-video::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.hero-video::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.hero-video::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.hero-video video {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  background: white;
}

.hero-video video::-webkit-media-controls {
  display: none !important;
}

.hero-video video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero-cta {
  margin-top: 32px;
}

.hero-cta .primary-btn {
  padding: 16px 32px;
  font-size: 16px;
}

/* Video Showcase Section */
.video-showcase {
  padding: 80px 24px;
  padding-top: 100px;
  background: #f8f9fa;
}

.video-slider {
  position: relative;
  margin: 40px 0;
}

.video-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.video-slide.active {
  display: grid;
}

.video-content {
  padding: 20px;
  justify-self: start;
}

.video-content h3 {
  font-size: 2.5rem;
  color: var(--google-blue);
  margin-bottom: 24px;
}

.video-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--google-gray-700);
  margin-bottom: 32px;
}

.video-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.video-features li {
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
  font-size: 1.2rem;
  color: var(--google-gray-800);
}

.video-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--google-blue);
  font-size: 1.2rem;
}

.video-player {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  height: 650px;
  width: 350px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
}

.video-player::before,
.video-player::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.video-player::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.video-player::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.video-player video {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  background: white;
}

.video-player video::-webkit-media-controls {
  display: none !important;
}

.video-player video::-webkit-media-controls-enclosure {
  display: none !important;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.slider-prev,
.slider-next {
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--google-blue);
  color: white;
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--google-blue);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-container,
  .video-slide {
    gap: 40px;
  }

  .hero-video,
  .video-player {
    width: 300px;
    height: 560px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }

  .hero-container,
  .video-slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    justify-self: center;
  }

  .hero-features {
    text-align: left;
  }

  .hero-features li {
    justify-content: flex-start;
  }

  .hero-video,
  .video-player {
    width: 350px;
    height: 650px;
    margin: 0 auto;
    justify-self: center;
  }

  .video-content {
    text-align: center;
    justify-self: center;
  }

  .video-features li {
    text-align: left;
    display: inline-block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .hero-features {
    text-align: left;
  }

  .hero-features li {
    justify-content: flex-start;
  }

  .hero-video,
  .video-player {
    width: 100%;
    height: 500px;
  }

  .video-content h3 {
    font-size: 1.75rem;
  }

  .video-content p {
    font-size: 1.1rem;
  }

  .video-features li {
    font-size: 1.1rem;
  }
}

/* Services Section */
.services {
  padding: 80px 24px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--google-gray-800);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--google-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--google-gray-200);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--google-blue), var(--google-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger the animation for each card */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--google-blue), var(--google-blue-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 28px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--google-gray-800);
  margin-bottom: 16px;
}

.service-description {
  color: var(--google-gray-600);
  line-height: 1.6;
}

/* Form Styles */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--google-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--google-blue);
}

.form-group select {
  width: 100%;
  padding: 12px;
  padding-right: 32px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
}

/* Media Queries */
@media (max-width: 768px) {
  .form-container {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 16px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }
}

/* Simple Contact Section */
.simple-contact {
  padding: 80px 24px;
  background: var(--google-gray-50);
  text-align: center;
}

.contact-options {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.consultation-option {
  margin-bottom: 16px;
}

.consultation-option .primary-btn {
  background: var(--google-blue);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
}

.consultation-option .primary-btn:hover {
  background: var(--google-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.divider {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 16px 0;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: var(--google-gray-300);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background: var(--google-gray-50);
  padding: 0 16px;
  color: var(--google-gray-600);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.email-option {
  width: 100%;
}

.email-text {
  color: var(--google-gray-700);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.simple-form {
  background: var(--google-blue);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.simple-form input {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
}

.simple-form input:focus {
  outline: none;
  border-color: var(--google-blue-dark);
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.simple-form .secondary-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  margin-top: 16px;
  width: auto;
  display: inline-flex;
  padding: 12px 24px;
}

.simple-form .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

@media (max-width: 480px) {
  .contact-options {
    padding: 0 16px;
  }
  
  .simple-form {
    padding: 24px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--google-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--google-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--google-blue-dark);
}

/* Process Section */
.process {
  padding: 80px 24px;
  padding-top: 100px;
  background: var(--google-gray-50);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--google-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.process-step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--google-gray-200);
  margin-top: 20px;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.process-step.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.step-illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--google-gray-800);
  margin-bottom: 16px;
}

.step-description {
  color: var(--google-gray-600);
  line-height: 1.4;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .process-steps {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 32px;
  }
  
  .process-step {
    padding: 32px 24px;
  }
  
  .step-illustration {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .process {
    padding: 60px 24px;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 24px;
  background: var(--google-gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.enterprise {
  border-color: var(--google-blue);
  transform: scale(1.05);
}

.pricing-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--google-gray-800);
  margin-bottom: 8px;
}

.pricing-badge {
  background: var(--google-green);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.enterprise-badge {
  background: var(--google-blue);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--google-gray-600);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--google-gray-800);
}

.price-description {
  color: var(--google-gray-600);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--google-gray-700);
}

.pricing-features .material-icons {
  color: var(--google-green);
  font-size: 20px;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
}

/* Media Queries */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 16px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-links {
    gap: 16px;
  }

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

  .nav-links .cta-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-header h3 {
    font-size: 1.25rem;
  }

  .amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 12px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 12px;
  }

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

  .nav-links .cta-btn {
    padding: 4px 8px;
    font-size: 0.85rem;
  }

  .pricing-card {
    padding: 20px;
  }
}

/* Addons Section */
.addons-section {
  margin-top: 64px;
  text-align: center;
}

.addons-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--google-gray-800);
  margin-bottom: 32px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.addon-item .material-icons {
  color: var(--google-blue);
  font-size: 32px;
}

.addon-item h4 {
  font-weight: 500;
  color: var(--google-gray-800);
  margin-bottom: 4px;
}

.addon-item p {
  color: var(--google-gray-600);
  font-weight: 600;
}

/* Quote Form Section */
.quote-form-section {
  padding: 80px 24px;
  background: white;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  float: right;
}

.quote-form {
  background: var(--google-gray-50);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.pricing-preview {
  background: var(--google-blue);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 24px 0;
}

.pricing-preview h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.price-note {
  opacity: 0.9;
  font-size: 14px;
}

/* Stats Section */
.stats {
  padding: 80px 24px;
  background: var(--google-blue);
  color: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  opacity: 1;
  transform: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  color: white;
}

/* Footer */
.footer {
  background: var(--google-gray-800);
  color: white;
  padding: 48px 24px 24px;
  text-align: center;
}

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

/* Form Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--google-red);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 2px rgba(234, 67, 53, 0.2);
}

/* Ripple Effect */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
} 