/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: rgb(201, 167, 155);
  color: #fff;
  border-color: rgb(201, 167, 155);
}

.btn-primary:hover {
  background-color: #b8967c;
  border-color: #b8967c;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #333;
  border-color: #E4E4E7;
}

.btn-secondary:hover {
  background-color: #F7EFE5;
  border-color: #FADADD;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Header */
.header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E4E7;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 32px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FADADD;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-actions .btn {
  padding: 0.5rem 1.5rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E4E7;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 1rem;
}

.mobile-nav-menu .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid #F7EFE5;
}

.mobile-nav-menu .nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
  border-top: 1px solid #E4E4E7;
}

.mobile-nav-actions .btn {
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

/* Blog Styles */
.blog-hero .hero-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.blog-content {
  padding: 5rem 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 4rem;
  align-items: start;
}

.blog-main .section-title {
  margin-bottom: 3rem;
  color: #333;
  font-size: 2rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: #F7EFE5;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.widget-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-item:hover {
  background: #FADADD;
  border-color: #E9CBA7;
  transform: translateX(5px);
}

.category-name {
  font-weight: 500;
}

.category-count {
  background: #FADADD;
  color: #333;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
}

.category-item:hover .category-count {
  background: #E9CBA7;
}

.category-item.active {
  background: #FADADD;
  border-color: #E9CBA7;
  transform: translateX(5px);
}

.category-item.active .category-count {
  background: #E9CBA7;
}

.post-content h2 {
  margin-top: 1.5rem;
}

/* Category Page Styles */
.category-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem 0;
  margin-top: 85px;
  text-align: center;
}

.category-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.category-description {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.category-count-display {
  font-size: 1rem;
  color: #666;
}

.category-breadcrumb {
  margin-bottom: 1rem;
}

.category-breadcrumb a {
  color: var(--nattal-dark);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-sidebar {
    position: static;
    order: -1;
  }
  
  .sidebar-widget {
    padding: 1.5rem;
  }
  
  .posts-grid {
    gap: 1.5rem;
  }
}

.post-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e2e8f0;
}

.post-card .post-author
{
  margin-bottom: 1.5rem;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #FADADD;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.post-category {
  background: #F7EFE5;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 500;
}

.post-date {
  color: #64748b;
}

.post-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.post-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.post-title a:hover {
  color: var(--nattal-dark);
}

.post-summary {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.post-author {
  font-size: 0.875rem;
  color: #64748b;
}

.post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  background: #F7EFE5;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
}

.post-link:hover {
  color: #333;
  background: #FADADD;
}

.post-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem 0;
  margin-top: 85px;
}

.post-breadcrumb {
  margin-bottom: 1rem;
}

.post-breadcrumb a {
  color: var(--nattal-dark);
  text-decoration: none;
  font-weight: 500;
}

.post-header .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-header .post-summary {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.post-header .post-meta {
  margin-bottom: 0;
}

.post-content {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.content-wrapper h2 {
  color: var(--nattal-dark);
  margin: 2.5rem 0 1rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.content-wrapper p {
  margin-bottom: 1.5rem;
  color: #374151;
}

.content-wrapper ul, .content-wrapper ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-wrapper li {
  margin-bottom: 0.5rem;
  color: #374151;
}

.code-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin: 2rem 0;
  overflow-x: auto;
}

.code-block pre {
  margin: 0;
  padding: 1.5rem;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

.example-block {
  background: #f0f9ff;
  border-left: 4px solid var(--nattal-light);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.post-conclusion {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.related-posts {
  background: #f8fafc;
  padding: 4rem 0;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--nattal-dark);
}

.newsletter-cta {
  background: var(--nattal-dark);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.newsletter-cta .section-title {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  color: #333;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Devices Composition */
.devices-composition {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Monitor Mockup */
.monitor-mockup {
  position: relative;
  z-index: 1;
}

.monitor-screen {
  background-color: #1a1a1a;
  border: 8px solid #2a2a2a;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  width: 400px;
  height: 270px;
  overflow: hidden;
}

.monitor-screen img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.monitor-stand {
  width: 60px;
  height: 30px;
  background-color: #2a2a2a;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  position: relative;
}

.monitor-base {
  width: 120px;
  height: 8px;
  background-color: #2a2a2a;
  margin: 0 auto;
  border-radius: 10px;
}

/* Phone Mockup */
.phone-mockup {
  position: absolute;
  right: -20px;
  bottom: 20px;
  z-index: 2;
  max-width: 180px;
  padding: 8px;
  background-color: #333;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.phone-screen {
  background-color: rgb(247, 238, 233);
  border: 8px solid #333;
  border-radius: 25px;
  padding: 1.5rem 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.app-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0;
}

.app-logo {
  height: 25px;
  width: auto;
}

.card-main {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-align: center;
  border: 2px solid rgb(224, 210, 204);
}

.card-main h3 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gestational-age-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.gestational-age {
  font-size: 2rem;
  font-weight: 700;
  color: #FADADD;
}

.consultation-record {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 2px solid rgb(224, 210, 204);
}

.consultation-record h4 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.record-item {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.status {
  text-align: center;
  font-size: 0.9rem;
  color: #22c55e;
  font-weight: 500;
  margin-bottom: 1rem;
}

.quick-stats {
  display: flex;
  justify-content: space-around;
}

.stat {
  font-size: 0.8rem;
  color: #666;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: #333;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Overview */
.features-overview {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background-color: #F7EFE5;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background: linear-gradient(135deg, #FADADD 0%, #F7EFE5 100%);
}

.benefits-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.cta-card {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.cta-card p {
  color: #666;
  margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background-color: #F7EFE5;
  padding: 2.5rem;
  border-radius: 20px;
}

.rating {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #E9CBA7 0%, #FADADD 100%);
  text-align: center;
}

.cta-content h2 {
  color: #333;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: #333;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #ccc;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  color: #FADADD;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column a,
.footer-column p,
.footer-content a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover, .footer-content a:hover {
  color: #FADADD;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #ccc;
  margin: 0;
}

/* Funcionalidades Page Styles */
.features-hero {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #F7EFE5;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title .highlight {
  color: rgb(201, 167, 155);
}

.nav-link.active {
  color: rgb(201, 167, 155);
  font-weight: 600;
}

/* Main Features */
.main-features {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-highlight.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-highlight.reverse .feature-content {
  order: 2;
}

.feature-highlight.reverse .feature-demo {
  order: 1;
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  background-color: #F7EFE5;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #FADADD;
}

.feature-text h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.feature-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-benefits {
  list-style: none;
  padding: 0;
}

.feature-benefits li {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Demo Cards */
.demo-card {
  background-color: #F7EFE5;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.demo-input, .demo-output {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.demo-output {
  margin-bottom: 0;
}

.demo-avatar {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.demo-message {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.demo-exam {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.demo-exam h4 {
  margin-bottom: 1rem;
  color: #333;
}

.exam-results {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exam-item {
  color: #666;
  font-size: 0.9rem;
}

.demo-ai-response {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.demo-conversation {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.demo-conversation h4 {
  margin-bottom: 1rem;
  color: #333;
}

.conversation-bubble {
  background-color: #F7EFE5;
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  font-style: italic;
  color: #333;
}

.conversation-bubble:last-child {
  margin-bottom: 0;
}

.demo-annotation {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 15px;
}

.annotation-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.annotation-item:last-child {
  margin-bottom: 0;
}

.annotation-avatar {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.annotation-content {
  background-color: #F7EFE5;
  padding: 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Complete Resources */
.complete-resources {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.resource-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-icon {
  background-color: #F7EFE5;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.resource-icon i {
  font-size: 1.5rem;
  color: #FADADD;
}

.resource-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.resource-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta-data-fields {
  text-align: center;
}

.data-fields-card {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.data-fields-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.data-fields-card p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.data-fields-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact CTA Section */
.contact-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F7EFE5 0%, #FADADD 100%);
  text-align: center;
}

.contact-cta .section-title {
  color: #333;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #FFFFFF;
  margin: 5% auto;
  padding: 0;
  border: none;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #E4E4E7;
}

.modal-header h3 {
  color: #333;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close {
  color: #666;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close:hover {
  color: #333;
}

.modal-body {
  padding: 1rem 2rem 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E4E4E7;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FADADD;
  box-shadow: 0 0 0 3px rgba(250, 218, 221, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.form-actions .btn {
  min-width: 150px;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #F7EFE5;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Data Fields Page Styles */
.data-fields-hero {
  grid-template-columns: 1fr;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.back-button {
  margin-bottom: 1.5rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-back:hover {
  color: #FADADD;
}

.data-fields {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.data-fields-content {
  max-width: 1000px;
  margin: 0 auto;
}

.field-group {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.field-group h2 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F7EFE5;
}

.subfield-group {
  margin-bottom: 2rem;
}

.subfield-group:last-child {
  margin-bottom: 0;
}

.subfield-group h3 {
  color: #FADADD;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #F7EFE5;
}

.field-list {
  display: grid;
  gap: 0.75rem;
}

.field-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #F7EFE5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.field-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.field-item strong {
  color: #333;
  font-weight: 600;
  min-width: 200px;
  flex-shrink: 0;
}

.conclusion-box {
  background: #F7EFE5;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
  border: 1px solid #FADADD;
}

.conclusion-box p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #333;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #ccc;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  color: #FADADD;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column a,
.footer-column p {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FADADD;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #ccc;
  margin: 0;
}

/* Pricing Page Styles */
.pricing-hero {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Explanation Section */
.pricing-explanation {
  padding: 6rem 0;
  background: #FFFFFF;
}

.explanation-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.explanation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.explanation-card {
  background: #F7EFE5;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #FADADD;
}

.explanation-icon {
  background: #FADADD;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.explanation-icon i {
  font-size: 1.5rem;
  color: #FFFFFF;
}

.explanation-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.explanation-card p {
  color: #666;
  line-height: 1.6;
}

.pricing-formula {
  background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
  padding: 3rem;
  border-radius: 20px;
  margin-top: 4rem;
  border: 1px solid #FADADD;
}

.pricing-formula h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.formula-explanation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.formula-step {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #FADADD;
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-number {
  background: #FADADD;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.formula-step p {
  margin: 0;
  color: #333;
  text-align: left;
}

.formula-arrow {
  color: #FADADD;
  font-size: 1.5rem;
}

.pricing-highlight {
  background: #FADADD;
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.pricing-highlight p {
  margin: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .explanation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-formula {
    padding: 2rem;
    margin: 2rem 1rem 0;
  }

  .formula-step {
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .formula-step p {
    text-align: center;
  }
}

/* Letter Section Styles */
.letter-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
}

.letter-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #FADADD;
}

.letter-content p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.question-block {
  background-color: #F7EFE5;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  border-left: 4px solid #FADADD;
}

.question-block p {
  margin: 0;
  font-style: italic;
  color: #333;
}

.call-to-action-text {
  text-align: center;
  margin: 2.5rem 0;
}

.call-to-action-text p {
  font-size: 1.3rem;
  color: rgb(201, 167, 155);
  margin: 0;
}

.letter-content a {
  color: rgb(201, 167, 155);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.letter-content a:hover {
  color: #b8967c;
  border-bottom-color: #b8967c;
  transform: translateY(-1px);
}

.letter-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .letter-card {
    padding: 2rem;
    margin: 0 1rem;
  }

  .letter-content p {
    font-size: 1rem;
  }

  .call-to-action-text p {
    font-size: 1.1rem;
  }
}

.pricing-plans {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
}

.pricing-table {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
}

.plans-table th,
.plans-table td {
  padding: 0.8rem;
  border-bottom: 1px solid #E4E4E7;
  text-align: center;
  vertical-align: middle;
}

.feature-column {
  background: #FFFFFF;
  text-align: left;
  font-weight: 500;
  color: #333;
  width: 35%;
}

.plan-column {
  background: #FFFFFF;
  position: relative;
  width: 32.5%;
}

.popular-column {
  background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
  border-left: 2px solid #FADADD;
  border-right: 2px solid #FADADD;
}

.popular-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 0.3rem 1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 1;
  letter-spacing: 0.3px;
}

.plan-header {
  text-align: center;
  padding: 1rem 0;
}

.plan-icon {
  background-color: #F7EFE5;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.plan-icon i {
  font-size: 1.3rem;
  color: #FADADD;
}

.plan-header h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.plan-price {
  margin-bottom: 0.5rem;
}

.plan-price .currency {
  font-size: 1rem;
  color: #666;
  vertical-align: top;
}

.plan-price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.plan-price .period {
  font-size: 0.9rem;
  color: #666;
  display: block;
  margin-top: 0.25rem;
}

.plan-description {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.feature-name {
  background: #F7EFE5;
  text-align: left;
  font-weight: 500;
  color: #333;
}

.feature-value {
  background: #FFFFFF;
  color: #2d2d2d;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.75rem 1rem !important;
}

.popular-column .feature-value {
  background: #FFFFFF;
  font-weight: 500;
}

.feature-value i.fa-check {
  color: #16a34a;
  font-size: 1rem;
}

.feature-value i.fa-times {
  color: #dc2626;
  font-size: 1rem;
}

.feature-value.not-allowed {
  color: #888;
  font-style: normal;
  font-size: 0.85rem;
}

.feature-value.additional-price {
  color: #16a34a;
  font-weight: 500;
  font-size: 0.9rem;
}

.cta-row td {
  border-bottom: none;
  padding: 2rem 1.5rem;
}

.cta-cell {
  background: #FFFFFF;
}

.popular-column .cta-cell {
  background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
}

.cta-cell .btn {
  width: 100%;
  max-width: 200px;
}

.trial-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trial-detail {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.trial-info:hover .trial-detail {
  color: rgb(201, 167, 155);
}

.popular-column .btn-primary {
  background-color: #FADADD;
  border-color: #FADADD;
  color: #333;
}

.popular-column .btn-primary:hover {
  background-color: #E9CBA7;
  border-color: #E9CBA7;
}

.feature-value.not-allowed {
  color: #ef4444;
  font-style: italic;
}

.feature-value.additional-price {
  color: #22c55e;
  font-weight: 600;
}

.plan-price-cell {
  font-weight: 600;
}

.plan-price-cell .currency {
  font-size: 0.9rem;
  color: #666;
  vertical-align: top;
}

.plan-price-cell .amount {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.plan-price-cell .period {
  font-size: 0.8rem;
  color: #666;
  display: inline;
  margin-left: 0.25rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Security Page Specific Styles */
.encryption-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F7EFE5;
  padding: 2rem;
  border-radius: 15px;
}

.encryption-step {
  text-align: center;
  flex: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.encryption-step h4 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #333;
}

.encryption-step p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.encryption-arrow {
  font-size: 1.5rem;
  color: #FADADD;
  margin: 0 1rem;
}

.access-control-demo {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 15px;
}

.user-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #F7EFE5;
  border-radius: 12px;
}

.user-avatar {
  font-size: 2rem;
}

.user-info h4 {
  margin: 0 0 0.25rem;
  color: #333;
}

.user-info p {
  margin: 0 0 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.access-level {
  background: #FADADD;
  color: #333;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.sharing-options h4 {
  margin-bottom: 1rem;
  color: #333;
}

.share-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: #f8fafc;
  border-radius: 8px;
}

.share-user {
  font-weight: 500;
  color: #333;
}

.toggle-on {
  color: #22c55e;
  font-size: 0.9rem;
}

.toggle-off {
  color: #ef4444;
  font-size: 0.9rem;
}

.compliance-demo {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 15px;
}

.compliance-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.compliance-icon {
  font-size: 2rem;
}

.compliance-header h4 {
  margin: 0;
  color: #333;
}

.compliance-items {
  display: grid;
  gap: 0.75rem;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #F7EFE5;
  border-radius: 8px;
}

.compliance-item i {
  color: #22c55e;
  font-size: 1rem;
}

.compliance-item span {
  color: #333;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .encryption-flow {
    flex-direction: column;
    gap: 1rem;
  }

  .encryption-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .user-card {
    flex-direction: column;
    text-align: center;
  }

  .share-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-header,
  .modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-cta .section-title {
    font-size: 2rem;
  }

  .header .container {
    position: relative;
  }

  .logo {
    height: 25px;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    order: 2;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .benefits-content {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons,
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .feature-highlight.reverse {
    grid-template-columns: 1fr;
  }
  
  .feature-highlight.reverse .feature-content {
    order: 1;
  }
  
  .feature-highlight.reverse .feature-demo {
    order: 2;
  }

  .feature-content {
    flex-direction: column;
    text-align: center;
  }

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

  .data-fields-card {
    padding: 2rem;
  }

  /* Mobile pricing table - transform to cards */
  .pricing-table {
    margin: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
  }

  .plans-table {
    display: none;
  }

  .pricing-table::after {
    content: '';
    display: block;
  }

  /* Mobile plan cards structure */
  .mobile-plan-cards {
    display: block;
  }

  .mobile-plan-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #E4E4E7;
    text-align: center;
  }

  .mobile-plan-card.popular {
    background: linear-gradient(135deg, #F7EFE5 0%, #FFFFFF 100%);
    border: 2px solid #FADADD;
    position: relative;
  }

  .mobile-plan-card.popular::before {
    content: 'MELHOR ESCOLHA';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .mobile-plan-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E4E4E7;
  }

  .mobile-plan-icon {
    background-color: #F7EFE5;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .mobile-plan-icon i {
    font-size: 1.3rem;
    color: #FADADD;
  }

  .mobile-plan-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .mobile-plan-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .mobile-plan-price {
    background: #F7EFE5;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }

  .mobile-plan-price .currency {
    font-size: 1rem;
    color: #666;
    vertical-align: top;
  }

  .mobile-plan-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
  }

  .mobile-plan-price .period {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 0.25rem;
  }

  .mobile-plan-minimum {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e2e8f0;
  }

  .mobile-features-list {
    text-align: left;
    margin-bottom: 2rem;
  }

  .mobile-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
  }

  .mobile-feature-item i.fa-check {
    color: #16a34a;
    font-size: 1rem;
    margin-top: 0.1rem;
  }

  .mobile-feature-item i.fa-times {
    color: #dc2626;
    font-size: 1rem;
    margin-top: 0.1rem;
  }

  .mobile-feature-text {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .mobile-feature-item.limited .mobile-feature-text {
    color: #666;
  }

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

  .mobile-plan-cards {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .devices-composition {
    max-width: 350px;
  }

  .monitor-screen {
    width: 300px;
    height: 190px;
  }

  .phone-mockup {
    max-width: 140px;
    right: -15px;
    bottom: 15px;
  }

  .phone-screen {
    padding: 1rem 0.8rem;
  }

  .app-logo {
    height: 20px;
  }

  .annotation-content {
    font-size: 0.75rem;
    padding: 0.8rem;
  }
}