/* ============================================================
   RESET & BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



  body {
   background-color: #f5f5f5; /* Your base color */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px; /* Controls grain size */  
  background-blend-mode: multiply;
   font-family: 'Red Hat Text', sans-serif;
   }






   /* For body text */
li {
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 500;              /* Slightly lighter than default */
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
	
}



/* For headings - make them elegant and light */

h1 {
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 500 !important;  /* Super light and elegant */
    letter-spacing: 0em;       /* Slight tightening for elegance */
    line-height: 1.2;
	font-size: 1.9rem;   /* adjust here */
	
}


/* For subtitles */

h2 {
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 500   !important;           /* Between light and regular */
    letter-spacing: 0em;
    line-height: 1.2;
	font-size: 1.6rem; 
}

h3 {
    font-family: 'Red Hat Text', sans-serif;
    font-weight: 320   !important;           /* Between light and regular */
    letter-spacing: 0em;
    line-height: 1.3;
	font-size: 1.4rem; 
}


/* Prevent sticky header covering anchor targets */
[id] {
    scroll-margin-top: 190px;
}

/* ============================================================
   PAGE CONTAINER
============================================================ */
.pageContainer {
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
   
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

@media screen and (orientation: landscape) {
    .pageContainer {
        max-width: 65%;
    }
}

/* ============================================================
   HEADER (Sticky)
============================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 180px;

    display: flex;              /* ADD */
    flex-direction: column;     /* ADD */

    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 20px 0 0 0;        /* remove bottom padding */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header Layout */
.header-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.title-section {
    display: flex;
    flex-direction: column;
}

.site-title {
  /*   font-size: 32px;
    font-weight: 700;*/
    margin: 5px 0 0 0;
/*    letter-spacing: -0.5px;*/
}

.site-subtitle {
 /*   font-size: 20px;
    font-weight: 600;*/
    margin-top: 4px;
	margin-bottom: 10px;
}

.logo-container {
    display: flex;
    justify-content: flex-end;
}

.header-logo {
    max-width: 200px;
    height: auto;
}

/* ============================================================
   PREMIUM NAVIGATION
============================================================ */

/* Add separation from H2   #253f54*/
.header-nav {
     margin-top: 20px;  /* or whatever spacing you want */
    width: 100%;
    background-color:#2b4861 ;
}

/* Nav layout */
.header-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 30px;
    padding: 6px 0;   /* reduced from 10px 0 0 0 */
    margin: 0;
}

/* Link styling */
.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: .8rem;
    padding: 6px 14px;   /* reduced from 8px */
    border-radius: 6px;
    transition: background 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

/* Hover / tap state */
.header-nav a:hover {
    background: rgba(255,255,255,0.15);
    opacity: 1;
}

/* Remove old underline animation */
.header-nav a::after {
    display: none;
}

header h2 {
    margin-top: 0;
    margin-bottom: 25px;   /* increase this to lift it up */
}
/* ============================================================
   CONTAINER
============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ============================================================
   HERO / GRID SECTION
============================================================ */
.grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    background: #F5F5F5;
}

.grid-image img {
    width: 220px;
    border-radius: 12px;
    margin: 10px;
}

.grid-text {
    text-align: center;
    padding: 20px;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 20px auto 0 auto;
    display: block;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.subtitle_bold {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #4a5568;
    font-weight: bold;
}

/* ============================================================
   SECTIONS
============================================================ */
.equity-section,
.benefits-section,
.contact-section {
    padding: 100px 0;
}

.equity-section {
    background: #f7fafc;
}

.benefits-section {
    background: white;
}

.contact-section {
    background: #f7fafc;
}

.equity-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.equity-card,
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.benefit-card {
    border-left: 4px solid #667eea;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

/* ============================================================
   AI TYPING SPEECH BUBBLE
============================================================ */


/* Pricing Section Background */
.pricing-section {
    background: linear-gradient(to bottom, #f9fcfc, #eef7f7);
    padding: 80px 0;
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Card Base Style */
.pricing-card {
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(111, 255, 170, 0.2);
    transition: 0.3s ease;
	border: 2px solid #6fa;
}

/* Soft Pastel Variations */
.pricing-card.setup {
    background: #f3f8ff;   /* soft blue */
}

.pricing-card.growth {
    background: #caffca;   /* soft green */
}

.pricing-card.premium {
    background: #fff5f9;   /* soft pink */
}

/* Highlight middle plan */
.pricing-card.highlight {
    box-shadow: 0 10px 30px rgba(111, 255, 170, 0.2);
    border: 2px solid #6fa;
}

/* Hover Effect */
.pricing-card:hover {
    transform: translateY(-8px);
}

/* Headings */
.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Price Styling */
.price {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1c3d3d;
}

.price span {
    font-size: 16px;
    color: #666;
}

.tagline {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.deposit {
    margin-top: 15px;
    font-size: 14px;
}

.how-it-works {
    background-color: white;
    padding: 80px 0;
}

.step{
 padding-bottom : 20px;
 margin-left:10px;
 margin-right:10px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {

	h1 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    h2 {
        font-size: 1.1rem;
        line-height: 1.25;
    }

    .site-title {
        font-size: 24px;
    }

    .site-subtitle {
        font-size: 16px;
    }

    .header-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
	
	 .header-logo {
        width: 80%;
        height: auto;
    }

    .logo-container {
        justify-content: center;
    }

    @media (max-width: 768px) {

    .header-nav ul {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        padding: 0 10px;
        flex-wrap: nowrap;   /* IMPORTANT */
    }

    .header-nav a {
        font-size: 0.85rem;
        padding: 6px 6px;
    }



    .equity-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }
	
	#chatTypingBubble {
        width: 220px;
        bottom: 100px;
        right: 180px;
    }

    #chatTypingBubble .typingText {
        font-size: 13px;
    }
	
}

@media (max-width: 480px) {

    .site-title {
        font-size: 21px;
    }

    .site-subtitle {
        font-size: 15px;
    }

    #chatTypingBubble {
        width: 220px;
        bottom: 100px;
        right: 180px;
    }

    #chatTypingBubble .typingText {
        font-size: 13px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    #chatTypingBubble {
        animation: none;
        opacity: 1;
        transform: none;
    }
}