/* Architect Styles CSS */
:root {
  --ocean-depths: #1a1a2e;
  --midnight-canvas: #16213e;
  --coral-flame: #e63946;
  --coral-whisper: #fdeaeb;
  --deep-crimson: #c8252f;
  --forest-shadow: #0f3460;
  --silver-mist: #eee2dc;
  --warm-ivory: #faf7f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--ocean-depths);
    color: var(--silver-mist);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation Styles */
.NavigationWrapper {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.NavigationWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.CompanyLogo {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--coral-flame);
  text-decoration: none;
    letter-spacing: -0.5px;
}

.MenuLinks {
  display: flex;
  gap: 34px;
}

.NavItem {
  color: var(--silver-mist);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.NavItem:hover {
  color: var(--coral-flame);
}

.NavItem::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-flame);
    transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.NavItem:hover::after {
    width: 100%;
}

/* Main Showcase */
.MainShowcase {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  background: linear-gradient(135deg, var(--ocean-depths) 0%, var(--midnight-canvas) 100%);
}

.ContentZone {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.PrimaryHeading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--warm-ivory);
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.LeadDescription {
  font-size: 1.25rem;
  color: var(--silver-mist);
  margin-bottom: 42px;
  line-height: 1.6;
  opacity: 0.9;
}

.ActionButtons {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}

.MainCTA {
  background: var(--coral-flame);
  color: white;
  padding: 18px 38px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.3);
}

.MainCTA:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
  background: var(--deep-crimson);
}

.SecondaryCTA {
  border: 2px solid var(--coral-flame);
  color: var(--coral-flame);
  padding: 16px 36px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.SecondaryCTA:hover {
  background: var(--coral-flame);
  color: white;
  transform: translateY(-2px);
}

.FeatureImage {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Services Section */
.ServicesGrid {
  padding: 120px 32px;
  background: var(--midnight-canvas);
}

.SectionWrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.SectionTitle {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  text-align: center;
  color: var(--warm-ivory);
  margin-bottom: 64px;
  font-weight: 600;
}

.ProgramCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.ProgramCard {
  background: rgba(250, 247, 242, 0.08);
  padding: 42px 36px;
  border-radius: 28px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(238, 226, 220, 0.15);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ProgramCard:hover {
  transform: translateY(-8px);
  background: rgba(250, 247, 242, 0.12);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.CardTitle {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  color: var(--coral-flame);
  margin-bottom: 21px;
  font-weight: 600;
}

.CardText {
  color: var(--silver-mist);
  line-height: 1.7;
  opacity: 0.9;
}

/* Methodology Block */
.MethodologyBlock {
  padding: 120px 32px;
  background: var(--ocean-depths);
}

.ContentContainer {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.MethodTitle {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  color: var(--warm-ivory);
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.MethodDescription {
  font-size: 1.1rem;
  color: var(--silver-mist);
  margin-bottom: 36px;
  line-height: 1.7;
}

.FeaturesList {
  list-style: none;
}

.FeatureItem {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  color: var(--silver-mist);
  line-height: 1.6;
}

.FeatureItem::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--coral-flame);
  font-size: 1.5rem;
  line-height: 1;
}

.MethodImage {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Contact Zone */
.ContactZone {
  padding: 120px 32px;
  background: var(--midnight-canvas);
}

.ContactWrapper {
  max-width: 890px;
  margin: 0 auto;
  text-align: center;
}

.ContactTitle {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  color: var(--warm-ivory);
  margin-bottom: 24px;
  font-weight: 600;
}

.ContactSubtext {
  font-size: 1.2rem;
  color: var(--silver-mist);
  margin-bottom: 64px;
  opacity: 0.9;
}

.ContactInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}

.InfoBlock {
  text-align: left;
}

.InfoTitle {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  color: var(--coral-flame);
  margin-bottom: 16px;
  font-weight: 600;
}

.InfoText {
  color: var(--silver-mist);
  line-height: 1.7;
}

/* Contact Form */
.ContactForm {
  max-width: 600px;
  margin: 0 auto;
}

.FormGroup {
  margin-bottom: 28px;
}

.FormInput, .FormTextarea {
  width: 100%;
  padding: 20px 28px;
  background: rgba(250, 247, 242, 0.08);
  border: 2px solid rgba(238, 226, 220, 0.2);
  border-radius: 24px;
  color: var(--warm-ivory);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.FormInput:focus, .FormTextarea:focus {
  outline: none;
  border-color: var(--coral-flame);
  background: rgba(250, 247, 242, 0.12);
}

.FormInput::placeholder, .FormTextarea::placeholder {
  color: rgba(238, 226, 220, 0.6);
}

.SubmitButton {
  background: var(--coral-flame);
  color: white;
  padding: 20px 48px;
  border: none;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.3);
}

.SubmitButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
  background: var(--deep-crimson);
}

/* Bottom Block */
.BottomBlock {
  background: var(--ocean-depths);
  padding: 64px 32px 32px;
  border-top: 1px solid rgba(238, 226, 220, 0.15);
}

.FooterContent {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.CompanyName {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  color: var(--coral-flame);
  margin-bottom: 18px;
  font-weight: 600;
}

.CompanyDesc {
  color: var(--silver-mist);
  line-height: 1.7;
  opacity: 0.8;
}

.LegalLinks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.LegalLink {
  color: var(--silver-mist);
  text-decoration: none;
  transition: color 0.3s ease;
}

.LegalLink:hover {
  color: var(--coral-flame);
}

.CopyrightBar {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(238, 226, 220, 0.1);
}

.CopyrightText {
  color: rgba(238, 226, 220, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 890px) {
  .NavigationWrapper .MenuLinks {
    gap: 21px;
  }
  
  .CompanyLogo {
    font-size: 24px;
  }
  
  .ContentZone {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .ContentContainer {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .ContactInfo {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .FooterContent {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }
  
  .LegalLinks {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .NavigationWrapper {
    padding: 0 21px;
  }
  
  .MainShowcase, .ServicesGrid, .MethodologyBlock, .ContactZone {
    padding-left: 21px;
    padding-right: 21px;
  }
  
  .ActionButtons {
    flex-direction: column;
    align-items: center;
  }
  
  .MainCTA, .SecondaryCTA {
    text-align: center;
    min-width: 240px;
  }
  
  .ProgramCards {
    grid-template-columns: 1fr;
  }
}

/* TODO: Add more micro-animations */
/* TODO: Optimize for better performance */

/*
.old-hero-section {
  background: linear-gradient(45deg, #333, #555);
  padding: 100px 0;
}
*/

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Custom selection colors */
::selection {
  background: var(--coral-flame);
  color: white;
}

/* Focus styles for accessibility */
.FormInput:focus, .FormTextarea:focus, .NavItem:focus, .MainCTA:focus, .SecondaryCTA:focus, .SubmitButton:focus {
    outline: 2px solid var(--coral-flame);
    outline-offset: 3px;
}
















/* Problem Identification Zone Styles */
.ProblemZone {
    padding: 140px 32px;
    background: linear-gradient(165deg, var(--forest-shadow) 0%, var(--ocean-depths) 100%);
    position: relative;
    overflow: hidden;
}

.ProblemZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ProblemContainer {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 84px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ProblemHeading {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 600;
    color: var(--warm-ivory);
    margin-bottom: 36px;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.ProblemIntro {
    font-size: 1.15rem;
    color: var(--silver-mist);
    margin-bottom: 56px;
    line-height: 1.65;
    opacity: 0.92;
}

.PainPointsList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.PainCard {
    background: rgba(250, 247, 242, 0.06);
    padding: 38px 32px;
    border-radius: 26px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 226, 220, 0.12);
    transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.PainCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.08), transparent);
    transition: left 0.6s ease;
}

.PainCard:hover::before {
    left: 100%;
}

.PainCard:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(250, 247, 242, 0.1);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
    border-color: rgba(230, 57, 70, 0.3);
}

.PainIcon {
    font-size: 2.8rem;
    margin-bottom: 24px;
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.PainCard:hover .PainIcon {
    filter: grayscale(0);
}

.PainTitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.35rem;
    color: var(--coral-flame);
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.PainDescription {
    color: var(--silver-mist);
    line-height: 1.65;
    opacity: 0.88;
    font-size: 0.95rem;
}

.ProblemVisual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ProblemImage {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(0.15) contrast(1.1);
}

.ProblemImage:hover {
    transform: scale(1.05) rotate(-1deg);
}

/* Responsive adjustments for Problem section */
@media (max-width: 1024px) {
    .ProblemContainer {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }
    
    .PainPointsList {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .ProblemZone {
        padding: 100px 24px;
    }
    
    .PainPointsList {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .PainCard {
        padding: 32px 24px;
    }
    
    .ProblemImage {
        max-width: 400px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .ProblemZone {
        padding: 80px 18px;
    }
    
    .PainCard {
        padding: 28px 20px;
    }
    
    .PainIcon {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    
    .PainTitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}















/* Benefits Achievement Zone Styles */
.BenefitsZone {
    padding: 135px 32px;
    background: var(--midnight-canvas);
    position: relative;
}

.BenefitsZone::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.BenefitsWrapper {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 78px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.BenefitsVisual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.BenefitsImage {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1.05) contrast(1.08);
}

.BenefitsImage:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.4);
}

.BenefitsHeading {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 600;
    color: var(--warm-ivory);
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.6px;
}

.BenefitsIntro {
    font-size: 1.18rem;
    color: var(--silver-mist);
    margin-bottom: 52px;
    line-height: 1.68;
    opacity: 0.91;
}

.AdvantagesList {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.AdvantageItem {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px;
    background: rgba(250, 247, 242, 0.05);
    border-radius: 22px;
    border: 1px solid rgba(238, 226, 220, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.AdvantageItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--coral-flame), transparent);
    transition: left 0.7s ease;
}

.AdvantageItem:hover::before {
    left: 100%;
}

.AdvantageItem:hover {
    transform: translateX(8px);
    background: rgba(250, 247, 242, 0.08);
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.AdvantageMarker {
    font-size: 2.2rem;
    flex-shrink: 0;
    margin-top: 4px;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.AdvantageItem:hover .AdvantageMarker {
    transform: scale(1.15) rotate(5deg);
}

.AdvantageContent {
    flex: 1;
}

.AdvantageTitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.42rem;
    color: var(--coral-flame);
    margin-bottom: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.AdvantageText {
    color: var(--silver-mist);
    line-height: 1.7;
    opacity: 0.89;
    font-size: 0.98rem;
}

/* Responsive design for Benefits section */
@media (max-width: 1080px) {
    .BenefitsWrapper {
        grid-template-columns: 1fr;
        gap: 58px;
        text-align: left;
    }
    
    .BenefitsVisual {
        order: 2;
    }
    
    .BenefitsContent {
        order: 1;
    }
}

@media (max-width: 768px) {
    .BenefitsZone {
        padding: 105px 24px;
    }
    
    .AdvantageItem {
        padding: 28px 24px;
        gap: 22px;
    }
    
    .AdvantageMarker {
        font-size: 2rem;
    }
    
    .AdvantageTitle {
        font-size: 1.3rem;
    }
    
    .BenefitsImage {
        max-width: 420px;
        border-radius: 22px;
    }
}

@media (max-width: 580px) {
    .BenefitsZone {
        padding: 85px 20px;
    }
    
    .AdvantageItem {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 24px 20px;
    }
    
    .AdvantageMarker {
        margin-top: 0;
        font-size: 1.8rem;
    }
    
    .AdvantageTitle {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .AdvantageText {
        font-size: 0.95rem;
    }
}

/* Animation for staggered entrance */
.AdvantageItem:nth-child(1) { animation-delay: 0.1s; }
.AdvantageItem:nth-child(2) { animation-delay: 0.2s; }
.AdvantageItem:nth-child(3) { animation-delay: 0.3s; }
.AdvantageItem:nth-child(4) { animation-delay: 0.4s; }
.AdvantageItem:nth-child(5) { animation-delay: 0.5s; }

/* TODO: Add intersection observer animations */
/*
.old-benefits-list {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 60px 0;
}
*/












/* Target Audience Definition Block */
.AudienceBlock {
    padding: 125px 32px;
    background: var(--ocean-depths);
    position: relative;
}

.AudienceBlock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 75%, rgba(230, 57, 70, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.AudienceContainer {
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.AudienceIntro {
    text-align: center;
    margin-bottom: 72px;
}

.AudienceHeading {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.3rem, 4.8vw, 3.7rem);
    font-weight: 600;
    color: var(--warm-ivory);
    margin-bottom: 28px;
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.AudienceDescription {
    font-size: 1.2rem;
    color: var(--silver-mist);
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
    opacity: 0.92;
}

.TargetProfiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 38px;
}

.ProfileCard {
    background: rgba(250, 247, 242, 0.07);
    padding: 42px 36px;
    border-radius: 26px;
    text-align: center;
    border: 1px solid rgba(238, 226, 220, 0.15);
    transition: all 0.42s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.ProfileCard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--coral-flame);
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.ProfileCard:hover::after {
    width: 80%;
}

.ProfileCard:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(250, 247, 242, 0.11);
    box-shadow: 0 25px 58px rgba(0, 0, 0, 0.28);
    border-color: rgba(230, 57, 70, 0.3);
}

.ProfileIcon {
    font-size: 3.2rem;
    margin-bottom: 26px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ProfileCard:hover .ProfileIcon {
    transform: scale(1.2) rotate(-3deg);
}

.ProfileTitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.45rem;
    color: var(--coral-flame);
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.ProfileDesc {
    color: var(--silver-mist);
    line-height: 1.68;
    opacity: 0.89;
    font-size: 0.98rem;
}

/* Pricing Commercial Zone */
.PricingZone {
    padding: 135px 32px;
    background: var(--midnight-canvas);
    position: relative;
}

.PricingZone::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 30%, rgba(230, 57, 70, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.PricingContainer {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.PricingHeader {
    text-align: center;
    margin-bottom: 84px;
}

.PricingTitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 600;
    color: var(--warm-ivory);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.PricingSubtitle {
    font-size: 1.18rem;
    color: var(--silver-mist);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.91;
}

.TariffsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
    margin-bottom: 64px;
}

.PricingCard {
    background: rgba(250, 247, 242, 0.06);
    border: 1px solid rgba(238, 226, 220, 0.12);
    border-radius: 28px;
    padding: 48px 36px;
    position: relative;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.PricingCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-flame), var(--deep-crimson));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.PricingCard:hover::before {
    transform: scaleX(1);
}

.PricingCard:hover {
    transform: translateY(-12px);
    background: rgba(250, 247, 242, 0.1);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.35);
    border-color: rgba(230, 57, 70, 0.25);
}

.Featured {
    border-color: var(--coral-flame);
    background: rgba(230, 57, 70, 0.08);
    transform: scale(1.05);
}

.Featured:hover {
    transform: translateY(-12px) scale(1.05);
}

.PopularBadge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral-flame);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
}

.PlanHeader {
    text-align: center;
    margin-bottom: 42px;
}

.PlanName {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    color: var(--coral-flame);
    margin-bottom: 18px;
    font-weight: 600;
}

.PriceDisplay {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.Currency {
    font-size: 1.8rem;
    color: var(--warm-ivory);
    margin-right: 4px;
}

.Amount {
    font-family: 'Raleway', sans-serif;
    font-size: 3.2rem;
    color: var(--warm-ivory);
    font-weight: 700;
    line-height: 1;
}

.Period {
    font-size: 1.1rem;
    color: var(--silver-mist);
    margin-left: 6px;
    opacity: 0.8;
}

.PlanDescription {
    color: var(--silver-mist);
    font-size: 0.95rem;
    opacity: 0.85;
}

.PlanFeatures {
    margin-bottom: 38px;
}

.FeatureItem {
    color: var(--silver-mist);
    padding: 12px 0;
    border-bottom: 1px solid rgba(238, 226, 220, 0.08);
    font-size: 0.95rem;
    line-height: 1.5;
}

.FeatureItem:last-child {
    border-bottom: none;
}

.PlanButton {
    width: 100%;
    background: var(--coral-flame);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 28px rgba(230, 57, 70, 0.25);
}

.PlanButton:hover {
    transform: translateY(-3px);
    background: var(--deep-crimson);
    box-shadow: 0 12px 36px rgba(230, 57, 70, 0.35);
}

.GuaranteeSection {
    text-align: center;
    background: rgba(250, 247, 242, 0.05);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(238, 226, 220, 0.1);
}

.GuaranteeText {
    color: var(--silver-mist);
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .TargetProfiles {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }
    
    .TariffsGrid {
        gap: 36px;
    }
    
    .Featured {
        transform: none;
    }
    
    .Featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .AudienceBlock, .PricingZone {
        padding: 100px 24px;
    }
    
    .TargetProfiles {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .ProfileCard {
        padding: 36px 28px;
    }
    
    .TariffsGrid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .PricingCard {
        padding: 42px 28px;
    }
}

@media (max-width: 480px) {
    .AudienceBlock, .PricingZone {
        padding: 80px 18px;
    }
    
    .ProfileCard {
        padding: 32px 24px;
    }
    
    .ProfileIcon {
        font-size: 2.8rem;
        margin-bottom: 22px;
    }
    
    .PricingCard {
        padding: 36px 24px;
    }
    
    .Amount {
        font-size: 2.8rem;
    }
}

/* TODO: Add mobile-specific optimizations */
/* 
.old-pricing-table {
    background: #f8f9fa;
    border-collapse: collapse;
}
*/




















        /* Architect Styles CSS */
        :root {
          --ocean-depths: #1a1a2e;
          --midnight-canvas: #16213e;
          --coral-flame: #e63946;
          --coral-whisper: #fdeaeb;
          --deep-crimson: #c8252f;
          --forest-shadow: #0f3460;
          --silver-mist: #eee2dc;
          --warm-ivory: #faf7f2;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--ocean-depths);
            color: var(--silver-mist);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .NavigationWrapper {
          position: fixed;
          top: 0;
          width: 100%;
          background: rgba(26, 26, 46, 0.95);
          backdrop-filter: blur(12px);
          z-index: 1000;
          padding: 18px 0;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .NavigationWrapper > div {
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width: 1280px;
          margin: 0 auto;
          padding: 0 32px;
        }

        .CompanyLogo {
          font-family: 'Raleway', sans-serif;
          font-size: 28px;
          font-weight: 700;
          color: var(--coral-flame);
          text-decoration: none;
          letter-spacing: -0.5px;
        }

        .MenuLinks {
          display: flex;
          gap: 34px;
        }

        .NavItem {
          color: var(--silver-mist);
          text-decoration: none;
          font-weight: 400;
          transition: color 0.3s ease;
          position: relative;
        }

        .NavItem:hover {
          color: var(--coral-flame);
        }

        .NavItem::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--coral-flame);
            transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .NavItem:hover::after {
            width: 100%;
        }

        /* Main Content */
        .MainContent {
            padding: 140px 32px 80px;
            background: linear-gradient(135deg, var(--ocean-depths) 0%, var(--midnight-canvas) 100%);
            min-height: 100vh;
        }

        .ContentContainer {
            max-width: 1200px;
            margin: 0 auto;
        }

        .PageHeader {
            text-align: center;
            margin-bottom: 72px;
        }

        .PageTitle {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            color: var(--warm-ivory);
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .PageSubtitle {
            font-size: 1.2rem;
            color: var(--silver-mist);
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .WebinarImage {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            margin: 0 auto 64px;
            display: block;
        }

        .ProgramSection {
            background: rgba(250, 247, 242, 0.06);
            border: 1px solid rgba(238, 226, 220, 0.12);
            border-radius: 28px;
            padding: 48px;
            margin-bottom: 48px;
        }

        .SectionTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 2.2rem;
            color: var(--coral-flame);
            margin-bottom: 32px;
            font-weight: 600;
            text-align: center;
        }

        .ModulesList {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .ModuleCard {
            background: rgba(250, 247, 242, 0.04);
            border: 1px solid rgba(238, 226, 220, 0.1);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .ModuleCard:hover {
            transform: translateY(-4px);
            background: rgba(250, 247, 242, 0.08);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(230, 57, 70, 0.2);
        }

        .ModuleHeader {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .ModuleName {
            font-family: 'Raleway', sans-serif;
            font-size: 1.4rem;
            color: var(--warm-ivory);
            font-weight: 600;
            line-height: 1.3;
            flex: 1;
        }

        .ModuleTime {
            background: var(--coral-flame);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .ModuleDescription {
            color: var(--silver-mist);
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .TopicsList {
            list-style: none;
            margin-left: 0;
        }

        .TopicItem {
            position: relative;
            padding-left: 24px;
            margin-bottom: 12px;
            color: var(--silver-mist);
            opacity: 0.85;
            font-size: 0.95rem;
        }

        .TopicItem::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--coral-flame);
            font-size: 1.2rem;
            line-height: 1;
        }

        .WebinarInfo {
            background: var(--midnight-canvas);
            border-radius: 24px;
            padding: 42px;
            text-align: center;
        }

        .InfoTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.8rem;
            color: var(--coral-flame);
            margin-bottom: 24px;
            font-weight: 600;
        }

        .InfoGrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .InfoItem {
            text-align: center;
        }

        .InfoLabel {
            font-size: 0.9rem;
            color: var(--silver-mist);
            opacity: 0.7;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .InfoValue {
            font-family: 'Raleway', sans-serif;
            font-size: 1.2rem;
            color: var(--warm-ivory);
            font-weight: 600;
        }

        .TargetAudience {
            color: var(--silver-mist);
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .NavigationWrapper > div {
                padding: 0 21px;
            }
            
            .MainContent {
                padding: 120px 21px 60px;
            }
            
            .ProgramSection {
                padding: 32px 24px;
            }
            
            .ModuleCard {
                padding: 24px 20px;
            }
            
            .ModuleHeader {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .WebinarInfo {
                padding: 32px 24px;
            }
            
            .InfoGrid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .MainContent {
                padding: 110px 18px 50px;
            }
            
            .ProgramSection {
                padding: 28px 20px;
            }
            
            .ModuleCard {
                padding: 20px 16px;
            }
            
            .WebinarInfo {
                padding: 28px 20px;
            }
        }

        /* Smooth scrolling */
        html {
          scroll-behavior: smooth;
        }

        /* Selection colors */
        ::selection {
          background: var(--coral-flame);
          color: white;
        }
    














        :root {
          --ocean-depths: #1a1a2e;
          --midnight-canvas: #16213e;
          --coral-flame: #e63946;
          --coral-whisper: #fdeaeb;
          --deep-crimson: #c8252f;
          --forest-shadow: #0f3460;
          --silver-mist: #eee2dc;
          --warm-ivory: #faf7f2;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--ocean-depths);
            color: var(--silver-mist);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .NavigationWrapper {
          position: fixed;
          top: 0;
          width: 100%;
          background: rgba(26, 26, 46, 0.95);
          backdrop-filter: blur(12px);
          z-index: 1000;
          padding: 18px 0;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .NavigationWrapper > div {
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width: 1280px;
          margin: 0 auto;
          padding: 0 32px;
        }

        .CompanyLogo {
          font-family: 'Raleway', sans-serif;
          font-size: 28px;
          font-weight: 700;
          color: var(--coral-flame);
          text-decoration: none;
          letter-spacing: -0.5px;
        }

        .MenuLinks {
          display: flex;
          gap: 34px;
        }

        .NavItem {
          color: var(--silver-mist);
          text-decoration: none;
          font-weight: 400;
          transition: color 0.3s ease;
          position: relative;
        }

        .NavItem:hover {
          color: var(--coral-flame);
        }

        .NavItem::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--coral-flame);
            transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .NavItem:hover::after {
            width: 100%;
        }

        /* Main Content */
        .MainContent {
            padding: 120px 32px 80px;
            background: linear-gradient(135deg, var(--ocean-depths) 0%, var(--midnight-canvas) 100%);
            min-height: 100vh;
        }

        .ContentContainer {
            max-width: 900px;
            margin: 0 auto;
        }

        .PageHeader {
            text-align: center;
            margin-bottom: 64px;
        }

        .PageTitle {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 600;
            color: var(--warm-ivory);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .PageSubtitle {
            font-size: 1.1rem;
            color: var(--silver-mist);
            opacity: 0.85;
            line-height: 1.6;
        }

        /* Cookie Cards */
        .CookieSection {
            margin-bottom: 48px;
        }

        .CookieCard {
            background: rgba(250, 247, 242, 0.06);
            border: 1px solid rgba(238, 226, 220, 0.12);
            border-radius: 24px;
            padding: 36px;
            margin-bottom: 32px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }

        .CookieCard::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--coral-flame), transparent);
            transition: left 0.6s ease;
        }

        .CookieCard:hover::before {
            left: 100%;
        }

        .CookieCard:hover {
            transform: translateY(-4px);
            background: rgba(250, 247, 242, 0.1);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(230, 57, 70, 0.2);
        }

        .CookieTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            color: var(--coral-flame);
            margin-bottom: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .CookieBadge {
            background: var(--coral-flame);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .CookieDescription {
            color: var(--silver-mist);
            line-height: 1.7;
            margin-bottom: 24px;
            opacity: 0.9;
        }

        .CookieDetails {
            background: rgba(26, 26, 46, 0.3);
            border-radius: 16px;
            padding: 24px;
            border-left: 4px solid var(--coral-flame);
        }

        .DetailRow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(238, 226, 220, 0.1);
            flex-wrap: wrap;
            gap: 12px;
        }

        .DetailRow:last-child {
            border-bottom: none;
        }

        .DetailLabel {
            font-weight: 600;
            color: var(--warm-ivory);
            font-size: 0.9rem;
        }

        .DetailValue {
            color: var(--silver-mist);
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Quick Summary */
        .QuickSummary {
            background: var(--midnight-canvas);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 48px;
            text-align: center;
            border: 2px solid rgba(230, 57, 70, 0.2);
        }

        .SummaryTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.8rem;
            color: var(--coral-flame);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .SummaryText {
            color: var(--silver-mist);
            line-height: 1.7;
            opacity: 0.9;
            font-size: 1.05rem;
        }

        /* Controls Section */
        .ControlsSection {
            background: rgba(250, 247, 242, 0.05);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 48px;
        }

        .ControlsTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.6rem;
            color: var(--warm-ivory);
            margin-bottom: 24px;
            font-weight: 600;
            text-align: center;
        }

        .ControlsGrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .ControlItem {
            background: rgba(26, 26, 46, 0.4);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .ControlItem:hover {
            background: rgba(26, 26, 46, 0.6);
            transform: translateY(-2px);
        }

        .ControlMethod {
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            color: var(--coral-flame);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .ControlDescription {
            color: var(--silver-mist);
            opacity: 0.85;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Footer */
        .BottomBlock {
          background: var(--ocean-depths);
          padding: 64px 32px 32px;
          border-top: 1px solid rgba(238, 226, 220, 0.15);
        }

        .FooterContent {
          max-width: 1280px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: 64px;
          margin-bottom: 48px;
        }

        .CompanyName {
          font-family: 'Raleway', sans-serif;
          font-size: 1.5rem;
          color: var(--coral-flame);
          margin-bottom: 18px;
          font-weight: 600;
        }

        .CompanyDesc {
          color: var(--silver-mist);
          line-height: 1.7;
          opacity: 0.8;
        }

        .LegalLinks {
          display: flex;
          flex-direction: column;
          gap: 16px;
        }

        .LegalLink {
          color: var(--silver-mist);
          text-decoration: none;
          transition: color 0.3s ease;
        }

        .LegalLink:hover {
          color: var(--coral-flame);
        }

        .CopyrightBar {
          text-align: center;
          padding-top: 32px;
          border-top: 1px solid rgba(238, 226, 220, 0.1);
        }

        .CopyrightText {
          color: rgba(238, 226, 220, 0.6);
          font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .NavigationWrapper > div {
                padding: 0 21px;
            }
            
            .MainContent {
                padding: 110px 21px 60px;
            }
            
            .CookieCard {
                padding: 28px 24px;
            }
            
            .CookieDetails {
                padding: 20px;
            }
            
            .QuickSummary {
                padding: 32px 24px;
            }
            
            .ControlsSection {
                padding: 28px 20px;
            }
            
            .ControlsGrid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .FooterContent {
                grid-template-columns: 1fr;
                gap: 42px;
                text-align: center;
            }
            
            .LegalLinks {
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .MainContent {
                padding: 100px 18px 50px;
            }
            
            .CookieCard {
                padding: 24px 20px;
            }
            
            .QuickSummary {
                padding: 28px 20px;
            }
            
            .DetailRow {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

        /* Smooth scrolling */
        html {
          scroll-behavior: smooth;
        }

        /* Selection colors */
        ::selection {
          background: var(--coral-flame);
          color: white;
        }
    















        /* Architect Styles CSS */
        :root {
          --ocean-depths: #1a1a2e;
          --midnight-canvas: #16213e;
          --coral-flame: #e63946;
          --coral-whisper: #fdeaeb;
          --deep-crimson: #c8252f;
          --forest-shadow: #0f3460;
          --silver-mist: #eee2dc;
          --warm-ivory: #faf7f2;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--ocean-depths);
            color: var(--silver-mist);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .NavigationWrapper {
          position: fixed;
          top: 0;
          width: 100%;
          background: rgba(26, 26, 46, 0.95);
          backdrop-filter: blur(12px);
          z-index: 1000;
          padding: 18px 0;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .NavigationWrapper > div {
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width: 1280px;
          margin: 0 auto;
          padding: 0 32px;
        }

        .CompanyLogo {
          font-family: 'Raleway', sans-serif;
          font-size: 28px;
          font-weight: 700;
          color: var(--coral-flame);
          text-decoration: none;
          letter-spacing: -0.5px;
        }

        .MenuLinks {
          display: flex;
          gap: 34px;
        }

        .NavItem {
          color: var(--silver-mist);
          text-decoration: none;
          font-weight: 400;
          transition: color 0.3s ease;
          position: relative;
        }

        .NavItem:hover {
          color: var(--coral-flame);
        }

        .NavItem::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--coral-flame);
            transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .NavItem:hover::after {
            width: 100%;
        }

        /* Main Content */
        .MainContent {
            padding: 120px 32px 80px;
            background: linear-gradient(135deg, var(--ocean-depths) 0%, var(--midnight-canvas) 100%);
            min-height: 100vh;
        }

        .ContentContainer {
            max-width: 920px;
            margin: 0 auto;
        }

        .PageHeader {
            text-align: center;
            margin-bottom: 64px;
        }

        .PageTitle {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 600;
            color: var(--warm-ivory);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .PageSubtitle {
            font-size: 1.1rem;
            color: var(--silver-mist);
            opacity: 0.85;
            line-height: 1.6;
        }

        /* Trust Banner */
        .TrustBanner {
            background: linear-gradient(135deg, var(--coral-flame), var(--deep-crimson));
            border-radius: 24px;
            padding: 32px;
            margin-bottom: 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .TrustBanner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .TrustTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.6rem;
            color: white;
            margin-bottom: 12px;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .TrustMessage {
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            font-size: 1.05rem;
            position: relative;
            z-index: 2;
        }

        /* Privacy Sections */
        .PrivacySection {
            margin-bottom: 42px;
        }

        .SectionCard {
            background: rgba(250, 247, 242, 0.06);
            border: 1px solid rgba(238, 226, 220, 0.12);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }

        .SectionCard::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--coral-flame);
            transition: width 0.5s ease;
        }

        .SectionCard:hover::after {
            width: 100%;
        }

        .SectionCard:hover {
            transform: translateY(-3px);
            background: rgba(250, 247, 242, 0.09);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
            border-color: rgba(230, 57, 70, 0.2);
        }

        .SectionHeader {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .SectionNumber {
            background: var(--coral-flame);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .SectionTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.4rem;
            color: var(--warm-ivory);
            font-weight: 600;
            line-height: 1.3;
        }

        .SectionContent {
            color: var(--silver-mist);
            line-height: 1.7;
            opacity: 0.9;
        }

        .SectionContent p {
            margin-bottom: 16px;
        }

        .SectionContent p:last-child {
            margin-bottom: 0;
        }

        /* Data Rights Grid */
        .RightsGrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .RightCard {
            background: rgba(26, 26, 46, 0.3);
            border-radius: 16px;
            padding: 24px;
            border-left: 4px solid var(--coral-flame);
            transition: all 0.3s ease;
        }

        .RightCard:hover {
            background: rgba(26, 26, 46, 0.5);
            transform: translateX(4px);
        }

        .RightTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            color: var(--coral-flame);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .RightDescription {
            color: var(--silver-mist);
            opacity: 0.85;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Security Features */
        .SecurityFeatures {
            background: var(--midnight-canvas);
            border-radius: 20px;
            padding: 36px;
            margin-bottom: 48px;
        }

        .SecurityTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.8rem;
            color: var(--coral-flame);
            margin-bottom: 28px;
            font-weight: 600;
            text-align: center;
        }

        .FeaturesList {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }

        .FeatureItem {
            text-align: center;
            padding: 20px;
        }

        .FeatureIcon {
            width: 48px;
            height: 48px;
            background: rgba(230, 57, 70, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .FeatureItem:hover .FeatureIcon {
            background: rgba(230, 57, 70, 0.25);
            transform: scale(1.1);
        }

        .FeatureName {
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            color: var(--warm-ivory);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .FeatureDesc {
            color: var(--silver-mist);
            opacity: 0.8;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Update Notice */
        .UpdateNotice {
            background: rgba(250, 247, 242, 0.05);
            border: 2px dashed rgba(230, 57, 70, 0.3);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
            margin-bottom: 48px;
        }

        .UpdateTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.3rem;
            color: var(--coral-flame);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .UpdateText {
            color: var(--silver-mist);
            opacity: 0.85;
            line-height: 1.6;
        }

        /* Footer */
        .BottomBlock {
          background: var(--ocean-depths);
          padding: 64px 32px 32px;
          border-top: 1px solid rgba(238, 226, 220, 0.15);
        }

        .FooterContent {
          max-width: 1280px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: 64px;
          margin-bottom: 48px;
        }

        .CompanyName {
          font-family: 'Raleway', sans-serif;
          font-size: 1.5rem;
          color: var(--coral-flame);
          margin-bottom: 18px;
          font-weight: 600;
        }

        .CompanyDesc {
          color: var(--silver-mist);
          line-height: 1.7;
          opacity: 0.8;
        }

        .LegalLinks {
          display: flex;
          flex-direction: column;
          gap: 16px;
        }

        .LegalLink {
          color: var(--silver-mist);
          text-decoration: none;
          transition: color 0.3s ease;
        }

        .LegalLink:hover {
          color: var(--coral-flame);
        }

        .CopyrightBar {
          text-align: center;
          padding-top: 32px;
          border-top: 1px solid rgba(238, 226, 220, 0.1);
        }

        .CopyrightText {
          color: rgba(238, 226, 220, 0.6);
          font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .NavigationWrapper > div {
                padding: 0 21px;
            }
            
            .MainContent {
                padding: 110px 21px 60px;
            }
            
            .SectionCard {
                padding: 28px 24px;
            }
            
            .SecurityFeatures {
                padding: 32px 24px;
            }
            
            .TrustBanner {
                padding: 28px 24px;
            }
            
            .UpdateNotice {
                padding: 24px 20px;
            }
            
            .RightsGrid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .FeaturesList {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .FooterContent {
                grid-template-columns: 1fr;
                gap: 42px;
                text-align: center;
            }
            
            .LegalLinks {
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .MainContent {
                padding: 100px 18px 50px;
            }
            
            .SectionCard {
                padding: 24px 20px;
            }
            
            .SecurityFeatures {
                padding: 28px 20px;
            }
            
            .SectionHeader {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
        }

        /* Smooth scrolling */
        html {
          scroll-behavior: smooth;
        }

        /* Selection colors */
        ::selection {
          background: var(--coral-flame);
          color: white;
        }
    



















           
        /* Architect Styles CSS */
        :root {
          --ocean-depths: #1a1a2e;
          --midnight-canvas: #16213e;
          --coral-flame: #e63946;
          --coral-whisper: #fdeaeb;
          --deep-crimson: #c8252f;
          --forest-shadow: #0f3460;
          --silver-mist: #eee2dc;
          --warm-ivory: #faf7f2;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--ocean-depths);
            color: var(--silver-mist);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .NavigationWrapper {
          position: fixed;
          top: 0;
          width: 100%;
          background: rgba(26, 26, 46, 0.95);
          backdrop-filter: blur(12px);
          z-index: 1000;
          padding: 18px 0;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .NavigationWrapper > div {
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width: 1280px;
          margin: 0 auto;
          padding: 0 32px;
        }

        .CompanyLogo {
          font-family: 'Raleway', sans-serif;
          font-size: 28px;
          font-weight: 700;
          color: var(--coral-flame);
          text-decoration: none;
          letter-spacing: -0.5px;
        }

        .MenuLinks {
          display: flex;
          gap: 34px;
        }

        .NavItem {
          color: var(--silver-mist);
          text-decoration: none;
          font-weight: 400;
          transition: color 0.3s ease;
          position: relative;
        }

        .NavItem:hover {
          color: var(--coral-flame);
        }

        .NavItem::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--coral-flame);
            transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .NavItem:hover::after {
            width: 100%;
        }

        /* Main Content */
        .MainContent {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 32px 80px;
            background: linear-gradient(135deg, var(--ocean-depths) 0%, var(--midnight-canvas) 100%);
            position: relative;
        }

        .MainContent::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .ThankYouContainer {
            max-width: 700px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .SuccessIcon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--coral-flame), var(--deep-crimson));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 36px;
            font-size: 3.5rem;
            color: white;
            box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 25px 70px rgba(230, 57, 70, 0.4); }
            100% { transform: scale(1); box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3); }
        }

        .ThankYouTitle {
            font-family: 'Raleway', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            color: var(--warm-ivory);
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .ThankYouMessage {
            font-size: 1.25rem;
            color: var(--silver-mist);
            margin-bottom: 48px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .ConfirmationCard {
            background: rgba(250, 247, 242, 0.08);
            border: 1px solid rgba(238, 226, 220, 0.15);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 48px;
            backdrop-filter: blur(8px);
        }

        .ConfirmationTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.4rem;
            color: var(--coral-flame);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .ConfirmationText {
            color: var(--silver-mist);
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 24px;
        }

        .NextSteps {
            background: var(--midnight-canvas);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 40px;
        }

        .NextStepsTitle {
            font-family: 'Raleway', sans-serif;
            font-size: 1.3rem;
            color: var(--warm-ivory);
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }

        .StepsList {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .StepItem {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
            color: var(--silver-mist);
            opacity: 0.9;
        }

        .StepItem:last-child {
            margin-bottom: 0;
        }

        .StepNumber {
            background: var(--coral-flame);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .StepText {
            line-height: 1.6;
        }

        .ActionButtons {
            display: flex;
            gap: 21px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .PrimaryButton {
            background: var(--coral-flame);
            color: white;
            padding: 18px 38px;
            border-radius: 9999px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 32px rgba(230, 57, 70, 0.3);
            display: inline-block;
        }

        .PrimaryButton:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
            background: var(--deep-crimson);
        }

        .SecondaryButton {
            border: 2px solid var(--coral-flame);
            color: var(--coral-flame);
            padding: 16px 36px;
            border-radius: 9999px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .SecondaryButton:hover {
            background: var(--coral-flame);
            color: white;
            transform: translateY(-2px);
        }

        /* Footer */
        .BottomBlock {
          background: var(--ocean-depths);
          padding: 64px 32px 32px;
          border-top: 1px solid rgba(238, 226, 220, 0.15);
        }

        .FooterContent {
          max-width: 1280px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: 64px;
          margin-bottom: 48px;
        }

        .CompanyName {
          font-family: 'Raleway', sans-serif;
          font-size: 1.5rem;
          color: var(--coral-flame);
          margin-bottom: 18px;
          font-weight: 600;
        }

        .CompanyDesc {
          color: var(--silver-mist);
          line-height: 1.7;
          opacity: 0.8;
        }

        .LegalLinks {
          display: flex;
          flex-direction: column;
          gap: 16px;
        }

        .LegalLink {
          color: var(--silver-mist);
          text-decoration: none;
          transition: color 0.3s ease;
        }

        .LegalLink:hover {
          color: var(--coral-flame);
        }

        .CopyrightBar {
          text-align: center;
          padding-top: 32px;
          border-top: 1px solid rgba(238, 226, 220, 0.1);
        }

        .CopyrightText {
          color: rgba(238, 226, 220, 0.6);
          font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .NavigationWrapper > div {
                padding: 0 21px;
            }
            
            .MainContent {
                padding: 110px 21px 60px;
            }
            
            .ConfirmationCard {
                padding: 32px 24px;
            }
            
            .NextSteps {
                padding: 28px 20px;
            }
            
            .ActionButtons {
                flex-direction: column;
                align-items: center;
            }
            
            .PrimaryButton, .SecondaryButton {
                text-align: center;
                min-width: 240px;
            }
            
            .FooterContent {
                grid-template-columns: 1fr;
                gap: 42px;
                text-align: center;
            }
            
            .LegalLinks {
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .MainContent {
                padding: 100px 18px 50px;
            }
            
            .SuccessIcon {
                width: 100px;
                height: 100px;
                font-size: 3rem;
                margin-bottom: 32px;
            }
            
            .ConfirmationCard {
                padding: 28px 20px;
            }
            
            .NextSteps {
                padding: 24px 16px;
            }
            
            .StepItem {
                gap: 12px;
            }
        }

        /* Smooth scrolling */
        html {
          scroll-behavior: smooth;
        }

        /* Selection colors */
        ::selection {
          background: var(--coral-flame);
          color: white;
        }
    