:root {
  --primary-color: #0056b3;
  /* Trustworthy Blue */
  --primary-dark: #003580;
  --secondary-color: #e63946;
  /* Alert/Recording Red */
  --accent-color: #4cc9f0;
  /* Light Blue */
  --bg-light: #f8f9fa;
  --text-dark: #2b2d42;
  --text-light: #6c757d;
  --white: #ffffff;
  --font-heading: 'Montserrat', sans-serif;
  /* Clean Tech font */
  --font-body: 'Roboto', sans-serif;
  /* Readable font */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(252, 163, 17, 0.4);
}

.btn-primary:hover {
  background-color: #e8960f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(252, 163, 17, 0.6);
}

.btn-sm {
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.9rem;
  border-radius: 20px;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.2rem;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Header */
header {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
}

.logo span {
  color: var(--secondary-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
}

nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, #eef4ff 100%);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
  z-index: 2;
}

.hero-image {
  flex: 1;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(67, 97, 238, 0.2);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: rotate(0deg) scale(1.02);
}

.badge {
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-price {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.2rem;
}

.new-price {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-family: var(--font-heading);
}

.small-text {
  font-size: 0.9rem;
  margin-top: 15px;
  color: #28a745;
  /* Success Green */
}

/* Shape Divider */
.custom-shape-divider-bottom-1672500000 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1672500000 svg {
  position: relative;
  display: block;
  width: calc(180% + 1.3px);
  height: 115px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1672500000 .shape-fill {
  fill: #FFFFFF;
}

/* Features */
.features {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.section-badge {
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.features h2 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

/* Usability Section */
.usability {
  padding: 80px 0;
  background-color: #f0f4f8;
}

.usability-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.usability-image {
  flex: 1;
  min-width: 300px;
}

.usability-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.usability-text {
  flex: 1;
  min-width: 300px;
}

.usability-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.check-list {
  list-style: none;
}

.check-list li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-list i {
  color: var(--secondary-color);
  background: white;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Kit Section */
.kit-section {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

.kit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap-reverse;
}

.kit-details {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.kit-image {
  flex: 1;
  max-width: 500px;
}

.kit-image img {
  width: 100%;
  border-radius: 20px;
}

.kit-item-box {
  background: #fff9ed;
  /* Light yellow bg */
  border: 2px dashed var(--secondary-color);
  padding: 30px;
  border-radius: 20px;
}

.kit-item-box h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.kit-item-box ul {
  list-style: none;
}

.kit-item-box li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: white;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: white;
}

.price-big {
  font-weight: bold;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.value {
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-heading);
}

.cents {
  font-size: 1.5rem;
  vertical-align: top;
}

.payment-info {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.guarantee {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.footer-logo span {
  color: var(--secondary-color);
}

.social-links {
  margin: 30px 0;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary-color);
}

.copyright {
  color: #666;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .custom-shape-divider-bottom-1672500000 svg {
    width: calc(250% + 1.3px);
    height: 60px;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .usability-container {
    flex-direction: column-reverse;
    /* Text first on mobile usually better but image first is ok too, keeping text after for flow */
  }

  .kit-container {
    flex-direction: column;
  }
}