/*======================================================
    WEEKLY STUDY PLANNER
    MASTER STYLESHEET
    Part 1B-1
    Foundation
======================================================*/
*/* Force header to absolute top */
body, html {
    margin: 0 !important;
    padding: 0 !important;
}

.site-header {
    position: sticky !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/*======================================================
RESET
======================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}


/*======================================================
ROOT VARIABLES
======================================================*/

:root{

    /* Brand */

    --primary:#c00000;
    --primary-dark:#990000;

    /* Text */

    --heading:#222222;
    --text:#333333;
    --text-light:#666666;

    /* Backgrounds */

    --white:#ffffff;
    --light:#f8f8f8;
    --off-white:#fcfcfc;

    /* Borders */

    --border:#e8e8e8;

    /* Shadows */

    --shadow-sm:0 5px 15px rgba(0,0,0,.06);

    --shadow-md:0 12px 30px rgba(0,0,0,.08);

    --shadow-lg:0 25px 50px rgba(0,0,0,.12);

    /* Border Radius */

    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:22px;
    --radius-pill:999px;

    /* Container */

    --container-width:1200px;

    /* Section Spacing */

    --section-space:100px;
    
    /*======================================================
ROOT VARIABLES
======================================================*/

:root{

    /*==================================================
    Brand
    ==================================================*/

    --primary:#c00000;
    --primary-dark:#990000;

    /*==================================================
    Text
    ==================================================*/

    --heading:#222222;
    --text:#333333;
    --text-light:#666666;

    /*==================================================
    Backgrounds
    ==================================================*/

    --white:#ffffff;
    --light:#f8f8f8;
    --off-white:#fcfcfc;

    /*==================================================
    Borders
    ==================================================*/

    --border:#e8e8e8;

    /*==================================================
    Shadows
    ==================================================*/

    --shadow-sm:0 5px 15px rgba(0,0,0,.06);
    --shadow-md:0 12px 30px rgba(0,0,0,.08);
    --shadow-lg:0 25px 50px rgba(0,0,0,.12);

    /*==================================================
    Border Radius
    ==================================================*/

    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:22px;
    --radius-pill:999px;

    /*==================================================
    Container
    ==================================================*/

    --container-width:1200px;

    /*==================================================
    Section Spacing
    ==================================================*/

    --section-space:100px;

    /*==================================================
    Typography
    ==================================================*/


    /*==================================================
    Font Weights
    ==================================================*/


    /*==================================================
    Transition
    ==================================================*/

    --transition:.30s ease;

}

/*======================================================
TYPOGRAPHY
======================================================*/
/*======================================================
TYPOGRAPHY
======================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);

    line-height:1.2;

    font-weight:700;

    margin-bottom:20px;

}

h1{

    font-size:58px;

}

h2{

    font-size:44px;

}

h3{

    font-size:30px;

}

h4{

    font-size:24px;

}

p{

    margin-bottom:22px;

    color:var(--text-light);

}

small{

    font-size:.90rem;

    color:var(--text-light);

}

strong{

    color:var(--heading);

}

    /* Transition */

    --transition:.30s ease;

}


/*======================================================
BASE
======================================================*/

body{

    font-family:'Open Sans',sans-serif;

    font-size:16px;

    font-weight:400;

    color:var(--text);

    line-height:1.7;

    background:var(--white);

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/*======================================================
TYPOGRAPHY
======================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);

    line-height:1.2;

    font-weight:700;

    margin-bottom:20px;

}

h1{

    font-size:var(--fs-h1);

}

h2{

    font-size:var(--fs-h2);

}

h3{

    font-size:var(--fs-h3);

}

h4{

    font-size:var(--fs-h4);

}

p{

    margin-bottom:22px;

    color:var(--text-light);

}

small{

    font-size:.90rem;

    color:var(--text-light);

}

strong{

    color:var(--heading);

}


/*======================================================
LINKS
======================================================*/

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}


/*======================================================
IMAGES
======================================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}


/*======================================================
LISTS
======================================================*/

ul,
ol{

    list-style:none;

}


/*======================================================
LAYOUT
======================================================*/

section{

    padding:var(--section-space) 0;

    position:relative;

}

.container{

    width:min(90%, var(--container-width));

    margin-inline:auto;

}

.container-sm{

    width:min(820px,90%);

    margin-inline:auto;

}

.container-lg{

    width:min(1320px,94%);

    margin-inline:auto;

}


/*======================================================
SECTION HEADINGS
======================================================*/

.section-title{

    margin-bottom:20px;

}

.section-description{

    max-width:720px;

    color:var(--text-light);

}


/*======================================================
BACKGROUND HELPERS
======================================================*/

.bg-light{

    background:var(--light);

}

.bg-white{

    background:var(--white);

}


/*======================================================
RESPONSIVE TYPOGRAPHY
======================================================*/

@media(max-width:991px){

    h1{

        font-size:48px;

    }

    h2{

        font-size:38px;

    }

}

@media(max-width:768px){

    :root{

        --section-space:70px;

    }

    h1{

        font-size:38px;

    }

    h2{

        font-size:32px;

    }

    h3{

        font-size:24px;

    }

    h4{

        font-size:20px;

    }

    body{

        font-size:15px;

    }

}
/*======================================================
BUTTONS
======================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border:none;

    border-radius:10px;

    font-family:inherit;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:var(--white);

    box-shadow:var(--shadow-md);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    background:transparent;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);

    color:var(--white);

}


/*======================================================
CARDS
======================================================*/

.card{

    background:var(--white);

    border-radius:var(--radius-md);

    padding:30px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}


/*======================================================
ICON LIST
======================================================*/

.icon-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin:35px 0;

}

.icon-list li{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:600;

    color:var(--heading);

}

.icon-list img{

    width:22px;

    height:22px;

}


/*======================================================
BADGE
======================================================*/

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#fdecec;

    color:var(--primary);

    border-radius:999px;

    font-size:14px;

    font-weight:700;

}


/*======================================================
GRID
======================================================*/

.grid{

    display:grid;

    gap:30px;

}

.grid-2{

    grid-template-columns:repeat(2,1fr);

}

.grid-3{

    grid-template-columns:repeat(3,1fr);

}

.grid-4{

    grid-template-columns:repeat(4,1fr);

}


/*======================================================
FLEX
======================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    align-items:center;

    justify-content:center;

}

.flex-between{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


/*======================================================
TEXT
======================================================*/

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}


/*======================================================
SPACING
======================================================*/

.mt-1{margin-top:20px;}
.mt-2{margin-top:40px;}
.mt-3{margin-top:60px;}
.mt-4{margin-top:80px;}

.mb-1{margin-bottom:20px;}
.mb-2{margin-bottom:40px;}
.mb-3{margin-bottom:60px;}
.mb-4{margin-bottom:80px;}

.pt-1{padding-top:20px;}
.pt-2{padding-top:40px;}
.pt-3{padding-top:60px;}

.pb-1{padding-bottom:20px;}
.pb-2{padding-bottom:40px;}
.pb-3{padding-bottom:60px;}


/*======================================================
HELPERS
======================================================*/

.rounded{

    border-radius:var(--radius-md);

}

.shadow{

    box-shadow:var(--shadow-md);

}

.hidden{

    display:none;

}

.w-100{

    width:100%;

}


/*======================================================
IMAGE EFFECTS
======================================================*/

.product-image{

    border-radius:18px;

    filter:drop-shadow(0 30px 45px rgba(0,0,0,.18));

}

.image-hover{

    transition:var(--transition);

}

.image-hover:hover{

    transform:translateY(-6px);

}


/*======================================================
ANIMATIONS
======================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease both;

}


/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:991px){

    .grid-4{

        grid-template-columns:repeat(2,1fr);

    }

    .grid-3{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:768px){

    .grid-2,

    .grid-3,

    .grid-4{

        grid-template-columns:1fr;

    }

    .flex-between{

        flex-direction:column;

        gap:30px;

        align-items:flex-start;

    }

    .btn{

        width:100%;

        justify-content:center;

    }

}
/*======================================================
HERO
======================================================*/
.hero-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family:inherit;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.badge {
  background-color: #e0e0e0;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: bold;
}
/* Import Open Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

.hero-section {
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  padding: 80px 20px;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700; /* Bold for headline */
}

p {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 35px;
  line-height: 1.5;
  font-weight: 400; /* Normal weight for subtitle */
}

.cta-button {
  background-color: #0056B3;
  color: #ffffff;
  padding: 20px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}
/* Responsive adjustment for screens smaller than 768px (tablets/phones) */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column; /* Stacks the content and image */
    text-align: center;     /* Centers the text */
    gap: 20px;
  }

  h1 {
    font-size: 2rem;        /* Smaller font size for mobile */
  }

  .hero-image {
    text-align: center;     /* Ensures image stays centered */
  }
}
/*======================================================
COMPARISON SECTION
======================================================*/

.comparison{

    background:#F8FAFC;

}

.comparison-header{

    max-width:760px;

    margin:0 auto 70px;

}

.comparison-header p{

    margin-top:18px;

}

.comparison-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-bottom:70px;

}

.comparison-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.comparison-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.comparison-card img{

    width:100%;

    height:340px;

    object-fit:cover;

}

.comparison-content{

    padding:32px;

}

.comparison-content h3{

    margin-bottom:14px;

}

.comparison-table{

    display:grid;

    grid-template-columns:1fr 1fr;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-md);

}

.table-column{

    padding:45px;

}

.table-left{

    background:#F3F4F6;

}

.table-right{

    background:#EEF6FA;

}

.table-column h3{

    margin-bottom:25px;

}

.table-column ul{

    list-style:none;

}

.table-column li{

    padding:16px 0;

    border-bottom:1px solid rgba(0,0,0,.08);

    font-size:17px;

}

.table-column li:last-child{

    border:none;

}

@media(max-width:768px){

    .comparison-cards{

        grid-template-columns:1fr;

    }

    .comparison-table{

        grid-template-columns:1fr;

    }

}

/*======================================================
HEADER
======================================================*/
.site-header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    z-index: 9999;
}

.header-container {
    max-width: 1400px;
    height: 82px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*======================================================
LOGO
======================================================*/
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

/*======================================================
NAVIGATION
======================================================*/
#mainNav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: block;
    white-space: nowrap;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #16233B;
    transition: .3s;
}

.main-nav a:hover {
    color: #6A869B;
}

/*======================================================
DESKTOP BUTTON
======================================================*/
.header-btn {
    margin-left: 30px;
}

/*======================================================
HAMBURGER
======================================================*/
#menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

#menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background: #16233B;
    border-radius: 50px;
    transition: .3s ease;
}

/*======================================================
TABLET + MOBILE
======================================================*/
@media (max-width: 768px) {
    /* ... other styles ... */

    .header-btn {
        display: none;
    }

    /* Change .menu-toggle to #menuToggle */
    #menuToggle {
        display: block;
    }

    /* Change .main-nav to #mainNav */
    #mainNav {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 12px 24px rgba(0,0,0,.08);
    }

    /* Change .main-nav.active to #mainNav.active */
    #mainNav.active {
        display: block;
    }

    /* Update list and link selectors to use the ID */
    #mainNav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    #mainNav li {
        width: 100%;
        text-align: center;
    }

    #mainNav a {
        display: block;
        padding: 16px 20px;
        font-size: 18px;
    }
}

5/*======================================================
SECTION 3 : 5 STEP PLANNING SYSTEM
======================================================*/

.steps{

    background:#ffffff;

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

}

/*======================================================
DESKTOP
======================================================*/

.steps-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:26px;

}

.step-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s ease;

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}

.step-card img{

    width:100%;

    height:auto;

    display:block;

}

.step-content{

    padding:24px;

}

.step-number{

    display:inline-block;

    margin-bottom:12px;

    color:#6A869B;

    font-weight:700;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.step-content h3{

    font-size:22px;

    margin-bottom:14px;

    line-height:1.35;

}

.step-content p{

    font-size:16px;

    color:#666;

    line-height:1.7;

}

/*======================================================
SECTION 3 : 5 STEP PLANNING SYSTEM
======================================================*/

.steps{

    background:#ffffff;

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

}

/*======================================================
DESKTOP
======================================================*/

.steps-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:26px;

}

.step-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s ease;

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}

.step-card img{

    width:100%;

    height:auto;

    display:block;

}

.step-content{

    padding:24px;

}

.step-number{

    display:inline-block;

    margin-bottom:12px;

    color:#6A869B;

    font-weight:700;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.step-content h3{

    font-size:22px;

    margin-bottom:14px;

    line-height:1.35;

}

.step-content p{

    font-size:16px;

    color:#666;

    line-height:1.7;

}

/*======================================================
TABLET
======================================================*/

@media (max-width:1100px){

    .steps{

        padding:90px 30px;

    }

    .steps-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

    .step-card:last-child{

        grid-column:1 / -1;

        max-width:500px;

        margin:0 auto;

    }

}

/*======================================================
MOBILE
======================================================*/

@media (max-width:768px){

    .steps{

        padding:70px 20px;

    }

    .section-header{

        margin-bottom:45px;

    }

    .section-header h2{

        font-size:38px;

        line-height:1.2;

    }

    .section-header p{

        font-size:18px;

        line-height:1.6;

    }

    .steps-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:22px;

    }

    .step-card{

        width:100%;

    }

    .step-card img{

        width:100%;

        height:auto;

        display:block;

    }

    .step-content{

        padding:22px;

    }

    .step-number{

        font-size:12px;

    }

    .step-content h3{

        font-size:22px;

        margin-bottom:12px;

    }

    .step-content p{

        font-size:17px;

        line-height:1.6;

    }

}
/*=========================================================
SECTION : FEATURES
=========================================================*/


.features-section{

    padding:120px 5%;
    background:#F8FAFC;

}

.features-container{

    max-width:1500px;
    margin:0 auto;

}

/*=========================================================
SECTION HEADER
=========================================================*/

.features-header{

    text-align:center;
    max-width:900px;
    margin:0 auto 80px;

}

.features-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 28px;

    background:#EAF2F8;

    color:#5C7A93;

    border-radius:999px;

    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;

    margin-bottom:26px;

}

.features-badge i{

    color:#F4B400;

}

.features-header h2{

    font-size:64px;
    line-height:1.08;
    font-weight:800;

    color:#16233B;

    margin-bottom:22px;

}

.features-header h2 span{

    display:block;

    color:#6A869B;

}

.features-header p{

    font-size:24px;

    color:#586777;

    max-width:760px;

    margin:auto;

    line-height:1.7;

}

/*=========================================================
MAIN GRID
=========================================================*/


.features-grid{

    display:grid;

    grid-template-columns:1.05fr 1fr .72fr;

    gap:16px;

    align-items:stretch;

    margin-top:70px;

    margin-bottom:70px;

}

/*=========================================================
COLUMN 1
=========================================================*/

.planner-preview{

    display:flex;
    align-items:flex-start;
    justify-content:center;

}

.planner-preview img{

    width:100%;
    height:750px;      /* increase until it aligns */
    object-fit:contain;

    box-shadow:
        0 18px 40px rgba(0,0,0,.12),
        0 8px 18px rgba(0,0,0,.08);

    transition:.35s ease;

}
.planner-preview:hover img{

    transform:translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.16),
        0 12px 28px rgba(0,0,0,.10);

}

/*=========================================================
COLUMN 2
=========================================================*/

.planning-steps{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    height:750px;      /* Same as planner image */

}

/* every card shares the height */

.step{

    display:flex;

    align-items:flex-start;

    gap:16px;

    padding:16px 22px;

    border-radius:18px;

    background:#fff;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

}

.step:last-child{

    margin-bottom:0;

}

/*=========================================================
COLUMN 3
=========================================================*/

.features-side{

    height:750px;

    display:flex;

    flex-direction:column;

}

/*-------------------------------------------------------*/

.spec-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

}

/*-------------------------------------------------------*/

.product-photo{

    margin-top:18px;

}

.product-photo img{

    width:100%;
    height:355px;          /* adjust this value */
    object-fit:cover;      /* crops instead of stretching */

    display:block;

    border-radius:18px;

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

/*=========================================================
STEP CARD
=========================================================*/

.step{

    display:flex;
    align-items:flex-start;

    gap:16px;

    padding:14px 22px;

    border-radius:18px;

    background:#fff;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

    min-height:120px;

    transition:.3s;

}

.step:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.step-icon{

    width:48px;
    height:48px;

    border-radius:14px;

}

.step-icon i{

    font-size:22px;

}
.step-content{

    flex:1;

}

.step-content h3{

    font-size:18px;

    line-height:1.3;

    margin-bottom:8px;

}
.step-content p{

    font-size:15px;

    line-height:1.5;

    margin:0;

}

.spec-card{

    background:#fff;

    border-radius:18px;

    padding:22px 18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    min-height:130px;

}

.spec-card:hover{

    transform:translateY(-5px);

}

.spec-card i{

    font-size:34px;

    color:#6A869B;

    margin-bottom:16px;

}

.spec-card h4{

    font-size:20px;

    margin-bottom:8px;

}

.spec-card p{

    font-size:15px;

}
/*=========================================================
BOTTOM BAR
=========================================================*/

.benefits-bar{

    margin-top:70px;

    background:#ffffff;

    border-radius:24px;

    padding:28px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    box-shadow:0 14px 36px rgba(0,0,0,.08);

}

.benefit{

    display:flex;

    align-items:center;

    gap:18px;

}

.benefit i{

    font-size:34px;

    color:#6A869B;

}

.benefit h4{

    margin-bottom:6px;

    font-size:20px;

}

.benefit p{

    margin:0;

    color:#667085;

    line-height:1.5;

}


/*=========================================================
BONUS SECTION
=========================================================*/
/

.bonus-section{

    padding:100px 5%;

    background:#ffffff;

}

.bonus-container{

    max-width:1400px;

    margin:0 auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

/*=========================
LEFT
=========================*/

.bonus-left{

    max-width:520px;

    justify-self:start;

    align-self:start;

    display:flex;

    flex-direction:column;

}

.bonus-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:fit-content;

    padding:12px 24px;

    border-radius:999px;

    background:#FFF4E5;

    color:#D97706;

    font-weight:700;

    margin-bottom:26px;

}

.bonus-title{

    font-size:64px;

    line-height:1.05;

    font-weight:800;

    color:#16233B;

    margin-bottom:28px;

}

.bonus-title span{

    color:#6A869B;

}

.bonus-text{

    font-size:22px;

    line-height:1.75;

    color:#5F6B7A;

    margin-bottom:32px;

}

.bonus-book{

    width:210px;

    height:auto;

    display:block;

    margin:0 auto 28px;

}

.bonus-btn{

    width:320px;

    align-self:center;

    text-align:center;

}

/*=========================
RIGHT
=========================*/

.bonus-right{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

}
/*=========================================================
RIGHT COLUMN
=========================================================*/


.peek-content{

    max-width:560px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

}

/*=========================================================
TEXT
=========================================================*/

.peek-label{

    font-size:18px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:20px;

}

.peek-content h2{

    font-size:2.2rem;

    margin-bottom:14px;

    color:#1b2d5a;

}

.peek-description{

    font-size:26px;

    line-height:1.6;

    color:#596575;

    max-width:520px;

    margin:0 auto 40px;

}

/*=========================================================
VIDEO CARD
=========================================================*/

.video-card{

    width:400px;

    max-width:100%;

    aspect-ratio:3 / 4.2;
    
    margin-top:20px;

    background:#1f1f1f;

    padding:12px;

    border-radius:28px;

    box-shadow:
        0 22px 60px rgba(0,0,0,.18);

}

.video-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 25px 55px rgba(0,0,0,.18);

}

/*=========================================================
VIDEO
=========================================================*/

.planner-video{

    width:100%;

    height:100%;

    display:block;

    object-fit:contain;

    border-radius:20px;

    background:white;

}

/*=========================================================
CAPTION
=========================================================*/

.video-caption{

    margin-top:18px;

    font-weight:600;

    color:#666;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@@media(max-width:900px){

.bonus-container{

    grid-template-columns:1fr;

    gap:70px;

}

.bonus-left{

    max-width:100%;

}

.bonus-title{

    font-size:46px;

}

.bonus-text{

    font-size:19px;

}

.bonus-book{

    width:180px;

}

.bonus-btn{

    width:100%;

    max-width:340px;

}

}


/*=========================================================
TESTIMONIALS
=========================================================*/

.testimonials{

    padding:100px 5%;
    background:#f8fafc;

}

.section-heading{

    text-align:center;
    max-width:750px;
    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#6A869B;
    margin-bottom:15px;

}

.section-heading h2{

    font-size:48px;
    line-height:1.2;
    color:#222;
    margin-bottom:20px;

}

.section-heading p{

    font-size:22px;
    color:#555;
    line-height:1.7;

}

/* Cards */

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#F6B800;
    font-size:24px;
    margin-bottom:20px;

}

.testimonial-text{

    font-size:19px;
    line-height:1.8;
    color:#444;
    margin-bottom:30px;

}

.testimonial-user{

    display:flex;
    align-items:center;
    gap:15px;

}

.avatar{

    width:58px;
    height:58px;
    border-radius:50%;
    background:#6A869B;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;
    font-weight:700;

}

.testimonial-user h4{

    margin:0;
    font-size:20px;
    color:#222;

}

.testimonial-user span{

    font-size:15px;
    color:#777;

}

@media(max-width:992px){

.testimonial-grid{

    grid-template-columns:1fr;
    max-width:700px;
    margin:auto;

}

.section-heading h2{

    font-size:38px;

}

.section-heading p{

    font-size:20px;

}

}

@media(max-width:576px){

.testimonials{

    padding:70px 24px;

}

.section-heading h2{

    font-size:30px;

}

.section-heading p{

    font-size:18px;

}

.testimonial-card{

    padding:28px;

}

.testimonial-text{

    font-size:17px;

}

}

/*=========================================================
FAQ SECTION
=========================================================*/

.faq-section{

    padding:100px 5%;
    background:#ffffff;

}

.faq-container{

    max-width:900px;
    margin:auto;

}

.faq-header{

    text-align:center;
    margin-bottom:60px;

}

.faq-tag{

    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#6A869B;
    margin-bottom:18px;

}

.faq-header h2{

    font-size:48px;
    color:#222;
    margin-bottom:20px;

}

.faq-header p{

    font-size:22px;
    color:#666;
    line-height:1.7;

}

/* Accordion */

.faq-list{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.faq-item{

    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:14px;
    overflow:hidden;
    transition:.3s;

}

.faq-item:hover{

    border-color:#6A869B;

}

.faq-item summary{

    list-style:none;
    cursor:pointer;
    padding:24px 30px;
    font-size:21px;
    font-weight:600;
    color:#222;
    position:relative;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#6A869B;
    transition:.3s;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item p{

    padding:0 30px 28px;
    font-size:18px;
    line-height:1.8;
    color:#555;

}
@media(max-width:900px){

.faq-section{

    padding:80px 30px;

}

.faq-header h2{

    font-size:38px;

}

.faq-header p{

    font-size:20px;

}

}
@media(max-width:576px){

.faq-section{

    padding:70px 20px;

}

.faq-header h2{

    font-size:30px;

}

.faq-header p{

    font-size:18px;

}

.faq-item summary{

    font-size:18px;
    padding:20px;

}

.faq-item p{

    font-size:16px;
    padding:0 20px 20px;

}

}

/*=========================================================
FINAL CTA
=========================================================*/

.final-cta{

    padding:110px 5%;
    background:linear-gradient(135deg,#6A869B 0%,#4F697B 100%);
    color:#fff;

}

.cta-container{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.cta-tag{

    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);

    font-size:14px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:24px;

}

.cta-container h2{

    font-size:52px;
    line-height:1.2;
    margin-bottom:28px;

}

.cta-subtitle{

    max-width:760px;
    margin:0 auto 45px;

    font-size:22px;
    line-height:1.8;

    opacity:.95;
    

}

.final-cta strong{

    color:#FFD54A;

}



.cta-features{

    margin-top:55px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    max-width:760px;

    margin-left:auto;
    margin-right:auto;

}

.feature{

    background:rgba(255,255,255,.12);

    padding:18px;

    border-radius:10px;

    font-size:18px;
    font-weight:600;

}
.final-cta h2{

    color:#ffffff;

}

.final-cta .cta-subtitle{

    color:rgba(255,255,255,.92);

}

.final-cta .cta-tag{

    color:#ffffff;

}

.final-cta .feature{

    color:#ffffff;

}

/*=========================================================
FOOTER
=========================================================*/


.site-footer{

    background:#F8FAFC;

    padding:45px 5% 30px;

}

.footer-container{

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:24px;

}

.footer-logo img{

    width:220px;

    height:auto;

}

.footer-links{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.footer-links a{

    color:#6A869B;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.footer-links a:hover{

    color:#4F697B;

}

.footer-links span{

    color:#BFC7CF;

}

.footer-copy{

    font-size:15px;

    color:#777;

    margin:0;

}

@media(max-width:600px){

.footer-logo img{

    width:180px;

}

.footer-links{

    flex-direction:column;

    gap:12px;

}

.footer-links span{

    display:none;

}

.footer-copy{

    font-size:14px;

}

}

/*=========================================================
BONUS SECTION - MOBILE
=========================================================*/

@media (max-width:768px){

    .planner-showcase{

        flex-direction:column;
        gap:50px;
        padding:70px 20px;

    }

    .planner-left,
    .planner-right{

        width:100%;
        flex:none;

    }

    .peek-content{

        width:100%;
        text-align:center;
        align-items:center;

    }

    .video-card{

        width:100%;
        max-width:340px;
        margin:30px auto 0;

    }

    .planner-video{

        width:100%;
        height:auto;

    }

}

/*=========================================================
BONUS SECTION - RESPONSIVE
=========================================================*/

@media (max-width:900px){

    .bonus-section{

        padding:70px 24px;

    }

    .bonus-container{

        display:grid;

        grid-template-columns:1fr;

        gap:60px;

    }

    .bonus-left,
    .bonus-right{

        width:100%;
        max-width:100%;

    }

    .bonus-left{

        text-align:center;
        align-items:center;

    }

    .bonus-title{

        font-size:42px;
        line-height:1.15;

    }

    .bonus-text{

        font-size:20px;
        line-height:1.7;

        max-width:650px;

        margin:0 auto 30px;

    }

    .bonus-book{

        width:220px;

        max-width:100%;

        margin:10px auto 30px;

    }

    .bonus-btn{

        width:100%;

        max-width:360px;

        margin:0 auto;

    }

    .bonus-right{

        text-align:center;

    }

    .peek-description{

        font-size:22px;

        margin-bottom:30px;

    }

    .video-card{

        width:100%;

        max-width:360px;

        margin:0 auto;

    }

    .planner-video{

        width:100%;

        height:auto;

    }

}

/*=========================================================
FEATURES SECTION - TABLET
=========================================================*/

@media (max-width:1100px){

    .features-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .planner-preview{

        order:1;

    }

    .planning-steps{

        order:2;

        height:auto;

        gap:20px;

    }

    .features-side{

        order:3;

        height:auto;

    }

    .planner-preview img{

        width:100%;

        max-width:500px;

        height:auto;

        margin:0 auto;

    }

    .product-photo img{

        height:auto;

    }

}


/*=========================================================
FEATURES SECTION - MOBILE
=========================================================*/

@media (max-width:768px){

    .features-section{

        padding:70px 20px;

    }

    .features-header{

        margin-bottom:50px;

    }

    .features-header h2{

        font-size:42px;

        line-height:1.15;

    }

    .features-header p{

        font-size:20px;

    }

    .features-grid{

        display:flex;

        flex-direction:column;

        gap:30px;

    }

    /* Remove ALL fixed heights */

    .planner-preview,
    .planning-steps,
    .features-side{

        height:auto;

    }

    .planner-preview img{

        width:100%;

        max-width:360px;

        height:auto;

        margin:0 auto;

    }

    .planning-steps{

        gap:18px;

    }

    .step{

        min-height:auto;

        padding:18px;

    }

    .step-content h3{

        font-size:20px;

    }

    .step-content p{

        font-size:16px;

    }

    .spec-grid{

        grid-template-columns:repeat(2,1fr);

        gap:16px;

    }

    .spec-card{

        min-height:120px;

    }

    .spec-card h4{

        font-size:18px;

    }

    .spec-card p{

        font-size:15px;

    }

    .product-photo{

        margin-top:20px;

    }

    .product-photo img{

        width:100%;

        max-width:360px;

        height:auto;

        margin:0 auto;

        display:block;

    }

    .benefits-bar{

        grid-template-columns:1fr;

        gap:20px;

    }

}





