* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(0, 0, 0, 0.378);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 1rem;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand h1 {
  color: #ffffff;
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  color: rgb(255, 253, 253);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #6366f1;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: rgb(252, 248, 248);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary.large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary.large {
  padding: 14px 30px;
  font-size: 16px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/*Hero Section*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Keep your existing styles for .circle1 to .circle4 */
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 10s infinite ease-in-out;
}

/* Example animation - keep or tweak */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}


/* .hero {
  background: linear-gradient(135deg, #000000 0%, #321865 50%, #0b0c31 100%);
  color: white;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); */
  /* opacity: 0.3;
} */

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
} */
/* 
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.highlight {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

/* .hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.corechallenge-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
} */
/* Challenges Section */
.challenges {
  padding: 60px 0;
  background: #f8fafc;
}

.challenges h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a2038;
}

.section-description {
  text-align: center;
  font-size: 1.125rem;
  color: #18191b;
  /* margin-bottom: 3rem; */
  max-width: 600px;
  margin: 0 auto 2rem;
  /* margin-left: auto;
  margin-right: auto; */
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.challenge-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.challenge-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.challenge-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a2038;
}

.challenge-card p {
  color: #64748b;
  line-height: 1.6;
}



/* Technology Section */
.technology {
  padding: 60px 0;
  background: white;
}

.technology h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a2038;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.tech-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tech-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2038;
}

.tech-badge {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.tech-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.tech-card li {
  padding: 0.5rem 0;
  color: #475569;
  position: relative;
  padding-left: 1.5rem;
}

.tech-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.tech-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6366f1;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

.iot-platform-section {
  background: #f5f7ff;
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 4rem auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.iot-platform-container {
  text-align: left;
}

.platform-badge {
  display: inline-block;
  background-color: #dbeafe;
  color: #1d4ed8;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.iot-platform-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.platform-description {
  color: #060606;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.platform-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.stat-box strong {
  font-size: 1.5rem;
  display: block;
  color: #0f172a;
}

.stat-uptime strong { color: #2563eb; }
.stat-activations strong { color: #a855f7; }
.stat-global strong { color: #22c55e; }
.stat-support strong { color: #f97316; }

.stat-box span {
  font-size: 0.9rem;
  color: #475569;
}




/* Features Section */
.features {
  padding: 60px 0;
  background: #f8fafc;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a2038;
}

.features-grid {
  display: flex;
  gap: 1.5rem; 
  flex-wrap: wrap;
  justify-content: center;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; */
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a2038;
}

.feature-item p {
  color: #64748b;
}

/* Benefits Section */
.benefits {
  padding: 60px 0;
  background: white;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a2038;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background-color: #ffffff;
  /* border: 1px solid #c7ced7; */
  color: white;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  /* background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease; */
}

.benefit-card:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a2038;
}

.benefit-card p {
  color: #64748b;
  font-size: 0.9rem;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

/* Use Cases Section */
.use-cases {
  padding: 60px 0;
  background: #f8fafc;
}

.use-cases h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a2038;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.use-case-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-card.automotive {
  border-top: 4px solid #06b6d4;
}

.use-case-card.healthcare {
  border-top: 4px solid #8b5cf6;
}

.use-case-card.smart-city {
  border-top: 4px solid #f59e0b;
}

.use-case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.use-case-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2038;
}

.use-case-icon {
  font-size: 2rem;
}

.use-case-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.use-case-card li {
  padding: 0.5rem 0;
  color: #475569;
  position: relative;
  padding-left: 1.5rem;
}

.use-case-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

.use-case-stat {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

/* Partners Section */
.partners {
  padding: 60px 0;
  background: white;
}

.partners h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a2038;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.partner-logo {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(77, 77, 82, 0.08);
  font-weight: 600;
  font-size: 1rem;
  color: #343333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 140px;
  text-align: center;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(35, 35, 74, 0.08);
}

/* Team Section */
.team-section {
  padding: 4rem 2rem;
  background: #f9fbff;
  text-align: center;
}

.team-section h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 2rem;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-card {
  background: linear-gradient(to bottom right, #eef1ff, #f6f8ff);
  padding: 2rem;
  border-radius: 20px;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #a88beb;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #111;
}

.team-card .role {
  color: #4c5bd4;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card ul {
  list-style: none;
  padding: 0;
}

.team-card li {
  background: white;
  margin: 0.4rem 0;
  padding: 0.6rem;
  border-radius: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



.icon {
  font-size: 1rem;
}

/* Policy Section Styles */
.policy {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf3 100%);
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy h2 {
    font-size: 2.5rem;
    color: #1a2038;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.policy h3 {
    font-size: 1.5rem;
    color: #1a2038;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy h3:first-of-type {
    margin-top: 0;
}

.policy p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy ul li {
    color: #475569;
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.policy ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy strong {
    color: #1a2038;
    font-weight: 600;
}

.policy a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.policy .highlight {
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

.policy .note {
    background: #f8fafc;
    border-left: 4px solid #6366f1;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.policy .note p {
    margin: 0;
    color: #475569;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .policy {
        padding: 100px 15px 60px;
    }

    .policy-container {
        padding: 2rem;
    }

    .policy h2 {
        font-size: 2rem;
    }

    .policy h3 {
        font-size: 1.3rem;
    }

    .policy p {
        font-size: 1rem;
    }
}

/* Blog Container Styles */
.blog-container {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf3 100%);
}

.blog-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #23234a;
    text-align: center;
}

/* Post Grid Layout */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1.5rem;
}

/* Post Card Styles */
.post-card {
    background: #fcfcfd;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(35, 35, 74, 0.08);
    transition: transform 0.25s cubic-bezier(.4,1,.3,1), box-shadow 0.25s cubic-bezier(.4,1,.3,1), border-color 0.25s, filter 0.25s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1.5px solid #e3e7ee;
    position: relative;
}

.post-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(35, 35, 74, 0.12);
    border-color: #cfd8dc;
    filter: none;
}

/* Post Image Styles */
.post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #e3e7ee;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image {
    transform: scale(1.02);
}

/* Post Content Styles */
.post-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: transparent;
}

/* Author and Meta Info Styles */
.author {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.post-meta {
    font-size: 0.85rem;
    color: #a0a4ae;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e3e7ee;
}

/* Post Title Styles */
.post-card h2 {
    font-size: 1.4rem;
    color: #23234a;
    margin: 0.5rem 0;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.25s, background-size 0.25s;
    background-image: linear-gradient(90deg, #e3e7ee 60%, #cfd8dc 100%);
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: left bottom;
}

.post-card:hover h2 {
    color: #23234a;
    background-size: 100% 2px;
}

/* Post Description Styles */
.post-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #000000 0%, #321865 50%, #0b0c31 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.blog-hero .section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

/* Post Card Hover Effects */
.post-card {
    position: relative;
}

.post-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.post-card:hover::after {
    transform: scaleX(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .post-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .post-image {
        height: 200px;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Post Meta Styling */
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    font-size: 0.85rem;
}

.post-meta::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: #13293d;
    color: #ffffff;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    gap: 40px;
    flex: 1;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
    border-bottom: 2px solid #00b4d8;
    padding-bottom: 5px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 6px;
    text-decoration: none;
}

.footer-column a:hover {
    color: #00b4d8;
}

.footer-contact-form {
    flex: 0 0 300px;
    background-color: #1a2b3c;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-contact-form h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-contact-form label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
    color: #ffffff;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-family: inherit;
}

.footer-contact-form textarea {
    resize: vertical;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: 2px solid #00b4d8;
}

.btn-primary {
    padding: 10px 20px;
    background-color: #00b4d8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0092b2;
}

.footer-legal {
    text-align: center;
    font-size: 13px;
    color: #cccccc;
    border-top: 1px solid #1a2b3c;
    padding-top: 10px;
    margin-top: 20px;
}

.legal-links {
    margin-top: 6px;
}

.legal-links a {
    color: #cccccc;
    margin: 0 10px;
    text-decoration: none;
}

.legal-links a:hover {
    color: #00b4d8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-left {
        flex-direction: column;
        gap: 20px;
    }

    .footer-contact-form {
        width: 100%;
    }
}

/* Product Hero Section */
.product-hero {
    background: linear-gradient(135deg, #000000 0%, #321865 50%, #0b0c31 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-hero .section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2038;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-features {
    margin-top: 1.5rem;
}

.product-features h4 {
    color: #1a2038;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.product-features h4:first-child {
    margin-top: 0;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.product-features ul li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.product-features ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.feature-highlights span {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Product CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf3 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #1a2038;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-hero {
        padding: 6rem 0 3rem;
    }

    .product-hero h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .product-card {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .feature-highlights {
        gap: 0.5rem;
    }

    .feature-highlights span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2038;
    margin-bottom: 1rem;
}

.services-section .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2038;
    margin: 0;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-group {
    flex: 1;
}

.service-group h4 {
    color: #1a2038;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.service-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-group ul li {
    padding: 0.75rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.service-group ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-header {
        margin-bottom: 1.5rem;
    }

    .service-content {
        gap: 1.5rem;
    }
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-link:hover {
    text-decoration: none;
}
