.register-box select {
  background: rgba(24,24,24,0.92);
  border: 1.5px solid #444;
  color: #fff;
  border-radius: 7px;
  padding: 0.85em 1em;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #ff4d4f11;
}
.register-box select:focus {
  border: 1.5px solid #ff4d4f;
  box-shadow: 0 4px 16px #ff4d4f33;
}
/* Hero Glassmorphism Card */
.hero-glass {
  background: rgba(30,33,40,0.82);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 #0005;
  padding: 2.2rem 1.5rem 2.2rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.08);
  position: relative;
}
/* Hero SVG Graphic */
.hero-graphic {
  margin: 2.2rem auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 340px;
}
/* Fade-in Animation */
/* Desktop: Inline nav, Mobile: Hamburger menu */
/* Hamburger menu button, visible on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2201;
  position: relative;
}
.nav-toggle-bar {
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .nav-links {
  gap: 5rem;
    flex-direction: column;
    width: 100%;
   gap: 4.5rem;
    list-style: none;
    margin: 0;
   margin-left: 5rem;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #333;
    background: none;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a,
  .login-btn,
  .account-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.9em 1.2em;
    border-radius: 0;
    background: none;
    color: #fff;
    text-align: left;
    font-size: 1.08rem;
    border: none;
    margin: 0;
  }
  .nav-links a:hover,
  .login-btn:hover,
  .account-btn:hover {
    background: #181818;
    color: #ff4d4f;
  }
  .nav-toggle {
    display: flex !important;
    z-index: 2201;
    position: relative;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #232526;
    border-bottom: 1.5px solid #222;
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 3.2rem 0.5rem 0.7rem 0.5rem;
    display: none;
    z-index: 2000;
    animation: fadeInDropdown 0.25s ease;
    border-radius: 0 0 14px 14px;
    min-height: 100vh;
  }
  .nav-menu.open {
    display: flex;
  }
@media (min-width: 901px) {
  .nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: static;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  min-height: unset;
  width: 100%;
  gap: 2rem;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
  }
  .nav-links li {
    position: relative;
  }
  .nav-links a {
    font-size: 1.08rem;
    color: #fff;
    padding: 0.2em 0.7em;
    border-radius: 5px;
    background: none;
    transition: color 0.18s, background 0.18s;
  }
  .nav-links a:hover {
    color: #ff4d4f;
    background: #232526;
  }
  .login-btn, .account-btn {
    margin-left: 2.2rem;
    margin-right: 0;
    background: #ff4d4f;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    padding: 0.5em 1.5em;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(255,77,79,0.12);
    border: none;
    transition: background 0.18s;
  }
  .login-btn:hover, .account-btn:hover {
    background: #e13c3e;
    color: #fff;
  }
  .nav-links .dropdown-toggle::after {
    content: '\25BE';
    font-size: 0.7em;
    margin-left: 0.4em;
    vertical-align: middle;
    color: #fff;
  }
  .dropdown-menu {
    min-width: 180px;
    left: 0;
    right: auto;
    top: 2.2rem;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #232526;
    padding: 0.7rem 0;
  }
  .dropdown-menu li {
    width: 100%;
  }
  .dropdown-menu a {
    padding: 0.7em 1.5em;
    color: #fff;
    font-size: 1.05rem;
    border-radius: 0;
    background: none;
  }
  .dropdown-menu a:hover {
    background: #ff4d4f;
    color: #fff;
  }
/* Cleaned up misplaced/duplicate blocks and braces. */
}
/* Mobile Responsive Enhancements */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #232526;
    border-bottom: 1.5px solid #222;
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 3.2rem 0.5rem 0.7rem 0.5rem;
    display: none;
    z-index: 2000;
    animation: fadeInDropdown 0.25s ease;
    border-radius: 0 0 14px 14px;
    min-height: 100vh;
    transition: display 0.2s, opacity 0.2s;
    opacity: 0;
    pointer-events: none;
  }
  .nav-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
/* Removed stray gap and padding lines */
  }
  .feature-card, .pricing-card, .testimonial-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .login-container, .register-modal-content {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    min-width: unset;
    max-width: 98vw;
  }
  .cta-btn, .pricing-btn, .login-submit, .register-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem 0;
  }
}
/* Register Modal Lower Section */
.register-modal-content .generate-password-btn {
  background: #232526;
  color: #fff;
  border: 1px solid #444;
  border-radius: 7px;
  padding: 0.6em 1.2em;
  font-size: 1.05rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: background 0.18s, color 0.18s;
}
.register-modal-content .generate-password-btn:hover {
  background: #181818;
  color: #ff4d4f;
}
.register-modal-content .mailing-list-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.7rem;
}
.register-modal-content .mailing-list-box {
  background: #232526;
  border-radius: 12px;
  padding: 1.1em 1.5em;
  color: #fff;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 1.2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
/* Toggle Switch */
.register-modal-content .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.register-modal-content .switch input { display: none; }
.register-modal-content .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #444;
  transition: .4s;
  border-radius: 26px;
}
.register-modal-content .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #ff4d4f;
  transition: .4s;
  border-radius: 50%;
}
.register-modal-content .switch input:checked + .slider {
  background-color: #222;
}
.register-modal-content .switch input:checked + .slider:before {
  transform: translateX(22px);
}
.register-modal-content .slider.round {
  border-radius: 26px;
}
.register-modal-content .slider.round:before {
  border-radius: 50%;
}
.register-modal-content .register-btn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  width: 100%;
  font-size: 1.18rem;
  padding: 1.1em 0;
  border-radius: 8px;
  margin-top: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(255,77,79,0.15);
  transition: background 0.2s, transform 0.18s;
}
.register-modal-content .register-btn:hover {
  background: #e13c3e;
}
/* Register Modal Sectioned Layout */
.register-modal-content .register-section-title {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  margin: 1.2rem 0 0.7rem 0;
  text-align: left;
}
.register-modal-content .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.7rem;
}
.register-modal-content .form-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.register-modal-content .register-phone-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.register-modal-content .register-flag {
  font-size: 1.2rem;
  margin-right: 0.2rem;
}
@media (max-width: 900px) {
  .register-modal-content .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/* Register Modal Responsive Enhancements */
.login-modal-content form .form-row {
  display: flex;
  gap: 1rem;
}
.login-modal-content form .form-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .login-modal-content form .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}
/* Login Modal Styles */
.login-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}
.login-modal-content {
  background: #232526;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  min-width: 340px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.login-modal-logo {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ff4d4f;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
}
.login-modal-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}
.login-modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-modal-form label {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-modal-form input[type="email"],
.login-modal-form input[type="password"] {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1.08rem;
  background: #181818;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,77,79,0.08);
  outline: none;
  margin-bottom: 0.2rem;
}
.login-modal-form input[type="email"]:focus,
.login-modal-form input[type="password"]:focus {
  box-shadow: 0 4px 16px #ff4d4f44;
}
.login-modal-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.login-modal-btn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(255,77,79,0.15);
  transition: background 0.2s, transform 0.18s;
  margin-top: 0.5rem;
}
.login-modal-btn:hover {
  background: #e13c3e;
}
.login-modal-footer {
  color: #aaa;
  font-size: 0.98rem;
  margin-top: 1.2rem;
  text-align: center;
}
.login-modal-footer a {
  color: #ff4d4f;
  text-decoration: none;
  margin-left: 0.2rem;
}
.login-modal-footer a:hover {
  text-decoration: underline;
}
.login-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.18s;
}
.login-modal-close:hover {
  opacity: 1;
}
.forgot-link {
  font-size: 0.98rem;
  font-weight: 400;
  margin-left: auto;
}
.forgot-link a {
  color: #aaa;
  text-decoration: none;
  margin-left: 0.2rem;
}
.forgot-link a:hover {
  color: #ff4d4f;
}
/* Dropdown Menu Styles */
.navbar .dropdown {
  position: relative;
}
.navbar .dropdown-toggle::after {
  content: '▼';
  font-size: 0.7em;
  margin-left: 0.4em;
  vertical-align: middle;
  color: #fff;
}
.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0;
  background: #232526;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 210px;
  z-index: 10;
  padding: 0.7rem 0;
  animation: fadeInDropdown 0.25s ease;
}
.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown:focus-within .dropdown-menu {
  display: block;
}
.navbar .dropdown-menu li {
  list-style: none;
}
.navbar .dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  transition: background 0.18s, color 0.18s;
}
.navbar .dropdown-menu a:hover {
  background: #ff4d4f;
  color: #fff;
}
@keyframes fadeInDropdown {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Scroll-based reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.25,.8,.25,1), transform 0.8s cubic-bezier(.25,.8,.25,1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Login Section Styles */
.login-section {
  background: linear-gradient(120deg, #232526 60%, #181818 100%);
  padding: 4rem 2rem 3rem 2rem;
  text-align: center;
}
.login-container {
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #232526 60%, #1a1a1a 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(255,77,79,0.18), 0 2px 8px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff4d4f;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.login-input {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1.08rem;
  background: #232526;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,77,79,0.08);
  outline: none;
  transition: box-shadow 0.18s;
}
.login-input:focus {
  box-shadow: 0 4px 16px #ff4d4f44;
}
.login-submit {
  background: #ff4d4f;
  color: #fff;
  border: none;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(255,77,79,0.15);
  transition: background 0.2s, transform 0.18s;
}
.login-submit:hover {
  background: #e13c3e;
  transform: scale(1.06);
}
.login-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.login-link {
  color: #ff4d4f;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.18s;
}
.login-link:hover {
  color: #fff;
  text-decoration: underline;
}
/* Testimonials Section Styles */
.testimonials-section {
  background: linear-gradient(120deg, #232526 60%, #181818 100%);
  padding: 4rem 2rem 5rem 2rem;
  text-align: center;
}
.testimonials-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ff4d4f;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: linear-gradient(135deg, #232526 60%, #1a1a1a 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(255,77,79,0.18), 0 2px 8px rgba(0,0,0,0.18);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
}
.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px #ff4d4f22;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(255,77,79,0.18);
  border: 2px solid #ff4d4f;
}
.testimonial-name {
  font-weight: bold;
  color: #ff4d4f;
  font-size: 1.08rem;
}
.testimonial-role {
  font-size: 0.98rem;
  color: #d1d1d1;
}
/* Pricing Section Styles */
.pricing-section {
  background: linear-gradient(120deg, #232526 60%, #181818 100%);
  padding: 4rem 2rem 5rem 2rem;
  text-align: center;
}
.pricing-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ff4d4f;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: linear-gradient(135deg, #232526 60%, #1a1a1a 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(255,77,79,0.18), 0 2px 8px rgba(0,0,0,0.18);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
}
.pricing-card.popular {
  border: 2px solid #ff4d4f;
  box-shadow: 0 16px 48px rgba(255,77,79,0.28), 0 4px 16px rgba(0,0,0,0.22);
  z-index: 2;
}
.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ff4d4f;
}
.price {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  color: #fff;
}
.price span {
  font-size: 1rem;
  color: #d1d1d1;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 2rem 0;
}
.pricing-card ul li {
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #d1d1d1;
}
.pricing-btn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(255,77,79,0.15);
  transition: background 0.2s, transform 0.18s;
}
.pricing-btn:hover {
  background: #e13c3e;
  transform: scale(1.06);
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #232526 0%, #1a1a1a 100%);
  color: #fff;
}
header {
  background: #181818;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #ff4d4f;
}
.triangle {
  font-size: 2.2rem;
  margin-right: 0.5rem;
  color: #ff4d4f;
}
.brand {
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #ff4d4f;
}
/* Login button top right style */
.login-btn {
  background: #ff4d4f;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.2s;
  margin-left: 2rem;
  box-shadow: 0 2px 8px rgba(255,77,79,0.12);
  position: relative;
  top: 0;
}
.nav-login-top {
  align-self: center;
  margin-left: auto;
}
.login-btn:hover {
  background: #e13c3e;
}
.hero {
  text-align: center;
  padding: 5rem 2rem 2rem 2rem;
  opacity: 0;
  animation: fadeInHero 1.2s ease-in forwards;
}
  @keyframes fadeInHero {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
.subtitle {
  color: #ff4d4f;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(255,77,79,0.15);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #e13c3e;
}
.graphics {
  margin-top: 3rem;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
/* Add custom SVG or PNG graphics here for bottom section if needed */

/* Features Section Styles */
.features-section {
  background: radial-gradient(ellipse at center, #232526 60%, #181818 100%);
  padding: 4rem 2rem 5rem 2rem;
  text-align: center;
}
.features-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  color: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: linear-gradient(135deg, #232526 60%, #1a1a1a 100%);
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(255,77,79,0.18),
    0 2px 8px rgba(0,0,0,0.18),
    0 1.5px 0px #ff4d4f inset;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s cubic-bezier(.23,1.01,.32,1), box-shadow 0.25s cubic-bezier(.23,1.01,.32,1);
  perspective: 800px;
  will-change: transform, box-shadow;
}
.feature-card:hover {
  transform: translateY(-12px) scale(1.06) rotateX(8deg) rotateY(-8deg);
  box-shadow:
    0 16px 48px 0 rgba(255,77,79,0.28),
    0 4px 16px 0 rgba(0,0,0,0.22),
    0 2px 0px #ff4d4f inset;
  border: 1.5px solid #ff4d4f;
  z-index: 2;
}
.feature-icon {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  color: #ff4d4f;
  text-shadow:
    0 0 16px #ff4d4f88,
    0 2px 8px #fff2,
    0 0 2px #ff4d4f;
  filter: drop-shadow(0 0 8px #ff4d4f88);
  transition: text-shadow 0.25s, filter 0.25s;
}
.feature-card:hover .feature-icon {
  text-shadow:
    0 0 32px #ff4d4f,
    0 4px 16px #fff4,
    0 0 4px #ff4d4f;
  filter: drop-shadow(0 0 16px #ff4d4f);
}
.feature-card h3 {
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #ff4d4f22;
}

.feature-card p {
  font-size: 1.08rem;
  color: #d1d1d1;
  text-shadow: 0 1px 4px #0004;
}

/* Reference Images Gallery Section */
.reference-images {
  background: linear-gradient(120deg, #232526 60%, #181818 100%);
  padding: 4rem 2rem 4rem 2rem;
  text-align: center;
}
.images-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ff4d4f;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.images-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-img {
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(255,77,79,0.18), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
}
.pricing-card:hover {
  transform: scale(1.06) translateY(-8px);
  box-shadow: 0 8px 32px rgba(255,77,79,0.18), 0 2px 8px rgba(0,0,0,0.18);
  z-index: 2;
  background: #232526;
  margin: 0 auto;
  display: block;
}
.gallery-img:hover {
  transform: scale(1.04) rotateY(6deg) rotateX(2deg);
  box-shadow: 0 16px 48px rgba(255,77,79,0.28), 0 4px 16px rgba(0,0,0,0.22);
  z-index: 2;
}
