/* 
  ECOLIFE DESIGN SYSTEM 
  Version: Premium 2.0
*/

:root {
  --primary: #0077ff;
  --secondary: #00d2ff;
  --accent: #f59e0b;
  --bg: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --blue-gradient: linear-gradient(180deg, #0077ff, #0056b3);
  --shadow-button: 0 12px 24px -6px rgba(0, 119, 255, 0.4);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- HEADER --- */
.main-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #f1f5f9;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Top: Info row */
.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #f8fafc;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  justify-self: start;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #000000;
  letter-spacing: -1px;
}

.logo-name .first-letter {
  font-size: 1.25em;
  /* Make Э bigger */
  line-height: 1;
}

.header-info {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: end;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.8px;
}

.info-value,
.info-phones a {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
}

.info-phones {
  display: flex;
  flex-direction: column;
}

.info-phones a:hover {
  color: var(--primary);
}

/* Bottom: Nav row */
.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 2rem;
  background: #fdfdfd;
}

.nav-list {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: #64748b;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-list a:hover {
  color: var(--primary);
}

.header-socials {
  display: flex;
  gap: 1rem;
}

.header-socials img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}


.header-socials a:hover img {
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: white;
  border: 1px solid #e2e8f0;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 992px) {
  .header-top {
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    grid-template-columns: none;
  }

  .header-info,
  .header-bottom {
    display: none;
  }

  .header-right {
    gap: 1rem;
  }

  .header-socials {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }

  .logo-name {
    font-size: 1.5rem;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0f172a;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  font-size: 1.8rem;
  font-weight: 800;
  color: white !important;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.mobile-nav .contact-button {
  margin-top: 1rem;
}

/* --- HERO --- */
.hero {
  padding: 80px 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f0f8ff;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f8ff 10%, rgba(240, 248, 255, 0) 80%);
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 119, 255, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: #0f172a;
}

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

.hero p {
  font-size: 1.35rem;
  color: #475569;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.h-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

.h-feature span {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-left: 2px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background: var(--blue-gradient);
  color: white !important;
  padding: 1.25rem 2.75rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.4);
}

.floating-cloud {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 110px;
  height: 110px;
  background: var(--blue-gradient);
  color: white !important;
  border-radius: 50%;
  border: none;
  animation: cloudPulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 15px;
  line-height: 1.1;
  z-index: 2000;
  text-decoration: none;
}


.floating-cloud:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--text);
  padding: 1.25rem 2.75rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-4px);
  border-color: var(--primary);
}

/* --- FEATURES --- */
.features-section {
  padding: 20px 1.5rem;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 3.5rem;
  color: #0f172a;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 3.5rem 2rem;
  border-radius: 32px;
  background: #f8fafc;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--blue-gradient);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(0, 119, 255, 0.4);
}

.feature-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- PRICING --- */
.pricing-section {
  padding: 80px 1.5rem;
  background: #f8fafc;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.price-card-main {
  background: var(--blue-gradient);
  color: white;
  border-radius: 40px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 119, 255, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.card-benefits {
  list-style: none;
  margin: 2rem auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  width: fit-content;
  /* Grouped block is centered, but text remains left-aligned for readability */
}

.card-benefits li {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-benefits li span {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.price-card-main h3 {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.price-card-main .price {
  font-size: 3.2rem;
  font-weight: 950;
  margin: 0.25rem 0;
  line-height: 1.2;
  letter-spacing: -1px;
}

.price-card-main .btn-secondary {
  margin: 2.5rem auto 0 !important;
  display: inline-flex;
  width: fit-content;
  padding: 1rem 3rem;
  justify-content: center;
}

.price-list {
  background: white;
  border-radius: 40px;
  padding: 2.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-list-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.price-list-scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 1.5rem;
  margin-right: -1.5rem;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.price-list-scroll::-webkit-scrollbar {
  width: 6px;
}

.price-list-scroll::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 1.15rem 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  font-size: 1.05rem;
}

.price-item .name {
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-item .cost {
  font-weight: 800;
  color: var(--primary);
}

/* --- CONTACT --- */
.contact-section {
  padding: 80px 1.5rem;
  background: #f8fafc;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  min-height: 400px;
}

.contact-card {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #f1f5f9;
  background: white;
}

.form-card {
  padding: 0 1.5rem 2rem;
  text-align: center;
}

.combined-card {
  display: flex;
  flex-direction: column;
  background: white;
}

.map-half {
  height: 300px;
  width: 100%;
}

.map-half iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.info-half {
  padding: 1.5rem 2rem;
  background: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col .social-links {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  justify-content: center;
}

.info-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.info-group p {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
}

.info-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.info-link:hover {
  color: var(--primary);
}

/* --- FAQ --- */
.faq-section {
  padding: 80px 1.5rem;
  background: #fff;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #f8fafc;
  border-radius: 24px;
  padding: 0;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item[open] {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.15rem;
  color: #0f172a;
  background: #f1f7ff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230077ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  transition: transform 0.4s ease, background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 119, 255, 0.1);
}

.faq-item[open] summary {
  color: #0f172a;
  background: white;
  padding-bottom: 1.5rem;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.faq-answer {
  padding: 0 2rem 1.75rem;
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
  animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* --- FOOTER --- */
footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: white;
  padding: 80px 1.5rem 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue-gradient);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -1.5px;
}

.footer-col p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
}

.footer-phone a {
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone a:hover {
  color: var(--primary);
}

.footer-email a {
  color: #94a3b8;
  text-decoration: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.footer-email a:hover {
  color: white;
  border-color: white;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-col .social-links a img[alt="Max"] {
  filter: brightness(0) invert(1) !important;
}

.social-links a:hover {
  background: var(--blue-gradient);
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 119, 255, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
  color: #475569;
  font-size: 0.95rem;
}

.footer-col a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: white;
}

/* --- FLOATING ELEMENTS --- */


@keyframes cloudPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 119, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 119, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 119, 255, 0);
  }
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 2rem;
  width: calc(100% - 4rem);
}

.mobile-header-info {
  padding: 0 2rem 2.5rem;
  text-align: center;
}

.mobile-nav .info-block {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav .info-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav .info-value,
.mobile-nav .info-phones a {
  font-size: 1.1rem;
  font-weight: 600;
  color: white !important;
  text-decoration: none;
}

.mobile-nav .info-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-header-info .header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
}

.mobile-header-info .phone-link {
  font-size: 1.6rem !important;
  font-weight: 800;
  color: white !important;
}

.mobile-header-info .instagram-link img {
  width: 40px;
  height: 40px;
  filter: none !important;
  /* Keep original colors as in header */
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 12px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
}

.modal-overlay.active {
  display: flex;
}

.price-modal {
  background: white;
  width: 95%;
  max-width: 700px;
  height: 90vh;
  max-height: 90vh;
  border-radius: 40px;
  padding: 40px 10px 30px;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE tracking */
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 30px;
}

.modal-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.modal-header p {
  font-size: 1.15rem;
  color: #64748b;
  font-weight: 500;
}

.price-modal::-webkit-scrollbar {
  display: none;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.form-embed-quiz {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.form-embed-quiz iframe {
  width: 100%;
  max-width: 400px;
  height: 1000px;
  border: none;
  border-radius: 20px;
  margin: 0 auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .pricing-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bg {
    width: 85%;
    opacity: 0.25;
    right: 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  .desktop-nav,
  .header .contact-button {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 20px 1.25rem 20px !important;
    min-height: auto !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .hero-container {
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-content {
    padding: 20px 1.5rem !important;
    width: 100% !important;
    align-items: flex-start !important;
    text-align: left !important;
    position: relative !important;
    z-index: 5 !important;
    margin: 0 !important;
  }

  .hero h1 {
    font-size: 1.6rem !important;
    margin: 0 0 0.75rem 0 !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .hero-badge {
    margin: 0 auto 1.5rem auto !important;
    padding: 6px 15px !important;
    font-size: 0.8rem !important;
    width: fit-content !important;
    display: block !important;
    text-align: center !important;
  }

  .section-title {
    font-size: 1.9rem !important;
    margin-bottom: 2rem !important;
  }

  .hero p {
    font-size: 0.95rem !important;
    margin: 0 0 1.5rem 0 !important;
    max-width: 90% !important;
    text-align: left !important;
  }

  .hero-cta {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1rem !important;
    align-items: center !important;
    text-align: center !important;
    margin: 1.5rem 0 0 0 !important;
  }

  .btn-primary,
  .btn-secondary {
    width: auto !important;
    min-width: 200px !important;
    padding: 1rem !important;
    font-size: 0.95rem !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .hero-bg {
    width: 65% !important;
    max-width: none !important;
    top: -25% !important;
    right: -25% !important;
    left: auto !important;
    transform: none !important;
    opacity: 0.8 !important;
    z-index: 1 !important;
  }


  .hero-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
    text-align: center !important;
    margin: 1.5rem 0 0 0 !important;
    width: 100% !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
  }

  .pricing-section {
    padding: 20px 1.5rem;
  }

  .price-card-main {
    padding: 2.5rem 1.5rem;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

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

  .price-list {
    padding: 2rem 1.25rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .price-list-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .price-item {
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .price-item .name {
    gap: 8px;
  }

  .contact-section {
    padding: 20px 1.5rem;
  }

  .form-card {
    padding: 2.5rem 1.5rem;
  }

  .form-embed iframe {
    min-height: 500px;
  }

  .map-card iframe {
    min-height: 400px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-list p {
    justify-content: center;
  }

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

  /* FAQ Mobile */
  .faq-section {
    padding: 20px 1.5rem;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-item summary::after {
    width: 28px;
    height: 28px;
    background-size: 14px;
    min-width: 28px;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Floating Button Mobile */
  .floating-cloud {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 15px;
    font-size: 0.85rem;
    padding: 10px;
  }
}

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

  .h-feature {
    flex-direction: column;
    gap: 0.5rem !important;
    text-align: center !important;
    align-items: center !important;
  }

  .h-feature span:last-child {
    font-size: 1.1rem !important;
    white-space: nowrap;
  }

  .price-item {
    font-size: 0.9rem;
    gap: 8px;
  }

  .price-item .cost {
    white-space: nowrap;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .floating-cloud {
    width: 85px;
    height: 85px;
    bottom: 15px;
    right: 15px;
    font-size: 0.75rem;
    padding: 8px;
    line-height: 1.1;
  }

  .section-title {
    font-size: 1.7rem;
    margin-top: 2rem !important;
  }

  .contact-wrapper h2.section-title {
    margin-top: 1rem !important;
  }
}