/* ============================================
   NEON BINARY - SOFT PASTEL DESIGN SYSTEM
   Mobile-First Responsive CSS
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4A4A4A;
  background-color: #FFF5F7;
  overflow-x: hidden;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --pastel-pink: #FFD6E8;
  --pastel-blue: #C8E6FF;
  --pastel-lavender: #E8D6FF;
  --pastel-mint: #D6FFE8;
  --pastel-peach: #FFE8D6;
  --pastel-yellow: #FFF6D6;
  --soft-white: #FFFCFD;
  --soft-gray: #F5F0F2;
  --text-dark: #4A4A4A;
  --text-medium: #7A7A7A;
  --text-light: #A5A5A5;
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --shadow-medium: rgba(0, 0, 0, 0.08);
  --gradient-dreamy: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 50%, #C8E6FF 100%);
  --gradient-subtle: linear-gradient(180deg, #FFFCFD 0%, #FFF5F7 100%);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #4A4A4A;
  margin-bottom: 16px;
}

h1 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 28px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
}

a {
  color: #4A4A4A;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 100%);
  color: #4A4A4A;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-medium);
  background: linear-gradient(135deg, #FFC0DC 0%, #D6C0F0 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #C8E6FF 0%, #D6FFE8 100%);
  color: #4A4A4A;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-medium);
  background: linear-gradient(135deg, #B0D8FF 0%, #C0FFD8 100%);
}

.btn-link {
  color: #4A4A4A;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD6E8, #E8D6FF);
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* CTA GROUP */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
      justify-content: center;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 100%);
  color: #4A4A4A;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFCFD 0%, #FFF5F7 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px var(--shadow-medium);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #4A4A4A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--soft-gray);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: #4A4A4A;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--soft-white);
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 100%);
  transform: translateX(4px);
}

/* HEADER */
header {
  background: var(--soft-white);
  padding: 20px 0;
  box-shadow: 0 2px 12px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 45px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  padding: 10px 18px;
  color: #4A4A4A;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 4px;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 100%);
}

/* HERO SECTION */
.hero {
  background: var(--gradient-dreamy);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 232, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #4A4A4A;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px var(--shadow-soft);
}

.hero-subtitle {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #FFD6E8 0%, #C8E6FF 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #4A4A4A;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #7A7A7A;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7A7A7A;
  margin-bottom: 40px;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: var(--soft-white);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: all 0.3s ease;
  flex: 1 1 100%;
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD6E8, #E8D6FF, #C8E6FF);
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.service-card h3 {
  color: #4A4A4A;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  color: #7A7A7A;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 600;
  color: #4A4A4A;
  margin: 20px 0;
}

/* FEATURES SECTION */
.features {
  background: linear-gradient(180deg, var(--soft-white) 0%, var(--soft-gray) 100%);
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-item {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.feature-item h3 {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 8px;
}

.feature-item p {
  color: #7A7A7A;
  font-size: 15px;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #C8E6FF 0%, #D6FFE8 100%);
  text-align: center;
}

.stats h2 {
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.stat-item {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
}

.stat-item p:last-child {
  color: #7A7A7A;
  font-size: 16px;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--soft-white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFCFD 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #FFD6E8;
}

.testimonial-card p:first-child {
  font-style: italic;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
}

.client-name {
  font-weight: 600;
  color: #4A4A4A;
  font-size: 15px;
  margin-top: 8px;
}

/* CTA FINAL SECTION */
.cta-final {
  background: var(--gradient-dreamy);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 230, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* CTA SECTION (Generic) */
.cta-section {
  background: linear-gradient(135deg, #FFE8D6 0%, #FFF6D6 100%);
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #7A7A7A;
  margin-bottom: 32px;
}

/* TECH CATEGORIES */
.tech-categories {
  background: var(--soft-white);
}

.tech-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tech-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 280px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-top: 4px solid #C8E6FF;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.tech-card h3 {
  color: #4A4A4A;
  margin-bottom: 12px;
}

.tech-card p {
  color: #7A7A7A;
}

/* TECH DETAIL */
.tech-detail {
  background: var(--soft-gray);
  margin-bottom: 40px;
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.column {
  flex: 1 1 100%;
  min-width: 280px;
}

.column h2,
.column h3 {
  margin-bottom: 16px;
}

.column p {
  margin-bottom: 20px;
}

.tech-applications {
  list-style: none;
  margin-top: 16px;
}

.tech-applications li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4A4A4A;
}

.tech-applications li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A4A4A;
  font-weight: 600;
}

/* TECH TRENDS */
.tech-trends {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 100%);
}

.tech-trends h2 {
  text-align: center;
  margin-bottom: 48px;
}

.trends-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trend-card {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 280px;
  margin-bottom: 20px;
}

.trend-card h3 {
  color: #4A4A4A;
  margin-bottom: 12px;
}

/* GADGETS */
.gadget-categories {
  background: var(--soft-white);
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 260px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid #D6FFE8;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

/* FEATURED GADGETS */
.featured-gadgets {
  background: var(--soft-gray);
}

.gadgets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.gadget-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.gadget-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FFD6E8, #E8D6FF);
  color: #4A4A4A;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin: 20px 0;
}

.features-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A4A4A;
}

.features-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4A4A4A;
  font-size: 20px;
}

.price-range {
  font-size: 20px;
  font-weight: 600;
  color: #4A4A4A;
  margin-top: 20px;
}

/* SELECTION SERVICE */
.selection-service {
  background: var(--soft-white);
}

.benefits-list {
  list-style: none;
  margin-top: 20px;
}

.benefits-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4A4A4A;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A4A4A;
  font-weight: 600;
}

.pricing-box {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.pricing-box h3 {
  margin-bottom: 16px;
}

.price-large {
  font-size: 36px;
  font-weight: 700;
  color: #4A4A4A;
  margin: 16px 0;
  font-family: 'Orbitron', sans-serif;
}

.pricing-box p {
  color: #7A7A7A;
  margin-bottom: 24px;
}

/* BUYING GUIDE */
.buying-guide {
  background: var(--soft-gray);
}

.guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.guide-section {
  flex: 1 1 100%;
  min-width: 280px;
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.guide-section h3 {
  margin-bottom: 16px;
}

.guide-section ul {
  list-style: none;
}

.guide-section ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A4A4A;
}

.guide-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #4A4A4A;
}

/* SERVICES DETAILED */
.services-detailed {
  background: var(--soft-white);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.service-detail-card {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  border-left: 5px solid #FFD6E8;
  margin-bottom: 20px;
}

.service-detail-card h3 {
  color: #4A4A4A;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-detail-card p {
  color: #7A7A7A;
  margin-bottom: 20px;
}

.deliverables {
  list-style: none;
  margin: 24px 0;
}

.deliverables li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4A4A4A;
}

.deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A4A4A;
  font-weight: 600;
}

.price-info {
  font-size: 18px;
  color: #4A4A4A;
  margin: 24px 0;
  padding: 16px;
  background: var(--soft-gray);
  border-radius: 12px;
}

/* PROCESS OVERVIEW */
.process-overview {
  background: linear-gradient(135deg, #C8E6FF 0%, #D6FFE8 100%);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.step {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  position: relative;
  padding-left: 80px;
  margin-bottom: 20px;
}

.step-number {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FFD6E8, #E8D6FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #4A4A4A;
  font-family: 'Orbitron', sans-serif;
}

.step h3 {
  margin-bottom: 8px;
}

/* GUARANTEES */
.guarantees {
  background: var(--soft-white);
}

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.guarantee-item {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  margin-bottom: 20px;
  border-top: 4px solid #D6FFE8;
}

/* SMART HOME */
.smart-home-intro {
  background: var(--soft-white);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-item {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  margin-bottom: 20px;
  text-align: center;
}

.benefit-item h3 {
  color: #4A4A4A;
  margin-bottom: 8px;
}

/* SYSTEMS OVERVIEW */
.systems-overview {
  background: var(--soft-gray);
}

.systems-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.system-card {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

/* INSTALLATION PROCESS */
.installation-process {
  background: var(--soft-white);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.phase {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  border-left: 4px solid #C8E6FF;
  margin-bottom: 20px;
}

.phase h3 {
  margin-bottom: 12px;
  color: #4A4A4A;
}

.timeline-note {
  text-align: center;
  font-style: italic;
  color: #7A7A7A;
  margin-top: 32px;
}

/* PRICING PACKAGES */
.pricing-packages {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 50%, #C8E6FF 100%);
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.package-card {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  flex: 1 1 100%;
  max-width: 360px;
  min-width: 280px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card.featured {
  border: 3px solid #FFD6E8;
  transform: scale(1.02);
}

.package-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.package-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: #4A4A4A;
  margin: 20px 0;
  font-family: 'Orbitron', sans-serif;
}

.package-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.package-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4A4A4A;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A4A4A;
  font-weight: 600;
}

.customization-note {
  text-align: center;
  font-style: italic;
  color: #7A7A7A;
  margin-top: 32px;
}

/* ENERGY SAVINGS */
.energy-savings {
  background: var(--soft-white);
}

.savings-stats {
  list-style: none;
  margin-top: 20px;
}

.savings-stats li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4A4A4A;
  font-weight: 500;
}

.savings-stats li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #4A4A4A;
  font-weight: 600;
}

/* ABOUT PAGE */
.story {
  background: var(--soft-white);
}

.values-list {
  list-style: none;
  margin-top: 16px;
}

.values-list li {
  padding: 12px 0;
  color: #4A4A4A;
  border-bottom: 1px solid var(--soft-gray);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: #4A4A4A;
}

/* MISSION VISION */
.mission-vision {
  background: linear-gradient(135deg, #C8E6FF 0%, #D6FFE8 100%);
}

/* ACHIEVEMENTS */
.achievements {
  background: var(--soft-white);
}

/* LOCATION */
.location {
  background: var(--soft-gray);
}

/* APPROACH */
.approach {
  background: var(--soft-white);
}

.approach-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.approach-features .feature {
  background: var(--soft-white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  margin-bottom: 20px;
}

/* CONTACT PAGE */
.contact-form-section {
  background: var(--soft-white);
}

.form-wrapper {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--soft-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #4A4A4A;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--soft-gray);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: #4A4A4A;
  background: var(--soft-white);
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #FFD6E8;
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 16px;
}

/* CONTACT INFO */
.contact-info {
  background: var(--soft-gray);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.info-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  text-align: center;
  margin-bottom: 20px;
}

.info-card h3 {
  color: #4A4A4A;
  margin-bottom: 12px;
}

/* SHOWROOM VISIT */
.showroom-visit {
  background: var(--soft-white);
}

.showroom-visit ul {
  list-style: none;
  margin-top: 16px;
}

.showroom-visit ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A4A4A;
}

.showroom-visit ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A4A4A;
  font-weight: 600;
}

/* SUPPORT OPTIONS */
.support-options {
  background: var(--soft-gray);
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.support-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  text-align: center;
  margin-bottom: 20px;
}

/* LEGAL CONTENT */
.legal-content {
  background: var(--soft-white);
  padding: 60px 20px;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: var(--soft-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.legal-text h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #4A4A4A;
}

.legal-text h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #4A4A4A;
}

.legal-text ul,
.legal-text ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-text li {
  margin-bottom: 8px;
  color: #4A4A4A;
  list-style: disc;
}

.last-updated {
  font-size: 14px;
  color: #7A7A7A;
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: var(--gradient-dreamy);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D6FFE8, #C8E6FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #4A4A4A;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px var(--shadow-medium);
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 20px;
  font-weight: 500;
}

/* NEXT STEPS */
.next-steps {
  background: var(--soft-white);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-top: 70px;
}

.step-card .step-number {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FFD6E8, #E8D6FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  color: #4A4A4A;
  font-family: 'Orbitron', sans-serif;
}

/* EXPLORE MORE */
.explore-more {
  background: var(--soft-gray);
}

.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.explore-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  flex: 1 1 100%;
  min-width: 240px;
  text-align: center;
  margin-bottom: 20px;
}

.explore-card h3 {
  margin-bottom: 12px;
}

.explore-card p {
  margin-bottom: 20px;
}

/* BACK HOME */
.back-home {
  background: var(--soft-white);
  text-align: center;
  padding: 40px 20px;
}

/* CONTACT INFO QUICK */
.contact-info-quick {
  margin: 24px 0;
  font-size: 18px;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #4A4A4A 0%, #2A2A2A 100%);
  color: #F5F0F2;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 100%;
  min-width: 200px;
}

.footer-section h4 {
  color: #FFD6E8;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #F5F0F2;
  font-size: 15px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #F5F0F2;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FFD6E8;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 214, 232, 0.2);
}

.footer-bottom p {
  color: #F5F0F2;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D6FF 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-medium);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-banner-text {
  flex: 1 1 300px;
  color: #4A4A4A;
}

.cookie-banner-text h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-banner-text p {
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner-actions .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-accept {
  background: linear-gradient(135deg, #D6FFE8, #C8E6FF);
  color: #4A4A4A;
}

.btn-reject {
  background: var(--soft-white);
  color: #4A4A4A;
  border: 2px solid #FFD6E8;
}

.btn-settings {
  background: transparent;
  color: #4A4A4A;
  border: 2px solid #4A4A4A;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--soft-white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px var(--shadow-medium);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #4A4A4A;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--soft-gray);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--soft-gray);
  border-radius: 12px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-category h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.cookie-category p {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #D1D1D1;
  border-radius: 28px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #D6FFE8, #C8E6FF);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN - TABLET */
@media (min-width: 768px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .hero {
    padding: 100px 20px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-item {
    flex: 1 1 calc(25% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .tech-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .column {
    flex: 1 1 calc(50% - 32px);
  }
  
  .trend-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .gadget-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .guide-section {
    flex: 1 1 calc(50% - 32px);
  }
  
  .benefit-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .system-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .guarantee-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .info-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .support-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .step-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .explore-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-section {
    flex: 1 1 calc(25% - 32px);
  }
}

/* RESPONSIVE DESIGN - DESKTOP */
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .hero {
    padding: 120px 20px;
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .feature-item {
    flex: 1 1 calc(25% - 24px);
  }
  
  .tech-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .category-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .gadget-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .benefit-item {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .system-card {
    flex: 1 1 calc(25% - 24px);
  }
  
  .guarantee-item {
    flex: 1 1 calc(25% - 24px);
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}