body {
    margin: 0
}

:root {
    --orange:        #F07800;
    --orange-light:  #FF9A20;
    --orange-glow:   #F0780018;
    --blue:          #0099DD;
    --green:         #009E88;
    --green-dark:    #00584B;
    --green-muted:   #E4F5F2;
    --ink:           #1A1A1A;
    --ink-mid:       #444444;
    --ink-soft:      #777777;
    --border:        #E5E2DA;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
    --shadow-md:     0 6px 30px rgba(0,0,0,0.10);
    --radius:        14px;
    --radius-lg:     22px;
    --font-body:     'DM Sans', system-ui, sans-serif;
    --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
}

.aw { color: #FFD060; }
.ah { color: var(--orange-light); }

.landing-page {
    font-family: var(--font-body);
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5 {
    margin: 0;
    font-weight: 600;
}

.landing-page a {
    text-decoration: none;
    cursor: pointer
}

.landing-page .innerdiv {
    margin: 0 auto;
    max-width: 1300px;
    box-sizing: border-box;
}

.landing-page img {
    max-width: 100%;
    height: auto;
}

.landing-page p {    
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-mid);
}

.landing-page .divider {
    height: 1px;
    width: 44px;
    border: none
}

.landing-page .note {
    color: var(--ink-soft);
    font-size: 13.5px;
    font-style: italic;
    line-height: 1.5;
}

.landing-page button {
    border: solid 2px;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.22s var(--ease-out), border-color 0.22s var(--ease-out), color 0.22s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.22s var(--ease-out);
}

.landing-page button:hover {
    transform: translateY(-2px);
}

.landing-page button:active {
    transform: translateY(0);
}

.landing-page button.sec {
    background-color: #0000;
}

.landing-page button.main {
    background-color: var(--orange);
    color: #fff;
    border-color: var(--orange);    
    box-shadow: 0 4px 18px rgba(240,120,0,0.30);
}

.landing-page button.main:hover {
    background-color: var(--orange-light);
    border-color: var(--orange-light);
    box-shadow: 0 6px 24px rgba(240,120,0,0.40);
}

button.orangeblue {
    color: var(--orange);
    border-color: var(--orange)
}

button.orangeblue:hover, button.greenblue:hover {
    color: var(--blue);
    border-color: var(--blue);    
    box-shadow: 0 4px 18px rgba(0,153,221,0.18);
}

button.greenblue {
    color: var(--green);
    border-color: var(--green)
}

.hero {     
    background:
        linear-gradient(160deg, rgba(4,22,42,0.96) 0%, rgba(6,43,75,0.92) 60%, rgba(0,70,60,0.88) 100%),
        url('https://aurora.lystingz.com/wp-content/uploads/2026/03/Overlay.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px 200px 10px;    
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom right, transparent 49%, #F1FFF4 50%);
    pointer-events: none;
}

.hero img {
    width: 155px;
    height: auto;
    filter: brightness(1.05);
}

.hero-inner {           
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    color: #fff;
	width: 100%
}

.header {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 0 auto
}

.lp-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 36px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.lp-menu li {
    position: relative;
    padding: 6px 2px;
}

.lp-menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-light);
    border-radius: 1px;
    transition: width 0.35s var(--ease-out);
}

.lp-menu li:hover::after {
    width: 100%;
}

.lp-menu a {
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.lp-menu a:hover {
    opacity: 1;
	color: #9dd7ff
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    gap: 16px
}

.intro h1 {
    color: #fff;
    font-size: 49px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 725px;    
    letter-spacing: -0.025em;
}

.intro p {
    max-width: 735px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.884);
}

iframe {
    margin: 30px auto 40px;
    max-width: 90% !important;
    box-sizing: border-box;
}

.hero-buttons, .footer-links, .trial-links {
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 20px
}

.hero-buttons button.orangeblue {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
}

.hero-buttons button.orangeblue:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.12);
}

.after-hero {
    padding: 160px 10px 150px;
    background-color: #F1FFF4;
    position: relative;
}

.after-hero .stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    max-width: 730px;
    background-color: #fff;
    margin: -280px auto 60px;
    padding: 35px;
    position: relative;
    z-index: 4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stats h3 {
    font-size: 56px;
    font-weight: 700;
    color: var(--green);
    text-align: center
}

.stats p {
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3a6b60;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.stats .dividers {
    color: #00b0963e;
    font-size: 25px
}

.after-hero-inner {
    max-width: 1300px !important
}

.after-hero h2 {
    color: #005044;
    font-size: 48px;
    text-align: center;
}

.after-hero hr.divider {
    background: var(--orange);
    margin: 35px auto 80px
}

.after-hero img {
    margin: 0 auto
}

.section1 {
    background-color: #EDEDE1CC;
}

.section1-inner {
    max-width: 1060px !important;
    padding: 80px 20px 130px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.section1-inner > div {
    max-width: 50%
}

table {
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 9;
    min-width: 380px;
    margin-top: -160px
}

thead tr {
    background: var(--ink);
    color: #fff;
}

th {
    padding: 16px 26px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

td {
    padding: 13px 24px;
    font-size: 14.5px;
    color: var(--ink-mid);
    border-bottom: 1px solid #f3f3f0;
    font-family: var(--font-body);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr {
    transition: background 0.15s ease;
}

tbody tr:hover {
    background: #fdfcf9;
}

.num {
    color: #bbb;
    font-size: 12px;
    width: 22px;
    font-weight: 400;
}

.count {
    font-weight: 700;
    text-align: right;
    color: var(--green);
    font-size: 15px;
    letter-spacing: 0.03em;
}

.section1-inner h2 {
    color: var(--green);
    font-size: 29px;
}

.section1-inner p {
    font-weight: 500
}

.headers {
    padding: 10px
}

.headers-inner {
    padding: 120px 0;
    display: flex;
    gap: 100px;
    align-items: flex-start;

}

.headers-inner .images {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    flex: 1;
}

.headers-inner .images img {
    box-shadow: -4px 5px 20px rgba(0,0,0,0.14);
}

.headers-inner .divider {
    background: #404040;
    margin: 0
}

.headers-inner .content {
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    position: sticky;
    top: 60px;
    padding-top: 50px;
}

.headers-inner .content h4 {
    color: var(--ink-soft);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.headers-inner .content h2 {
    color: var(--orange);
    font-size: 29px;
}

.headers-inner .note {
    margin-top: 20px
}

.homepages {
    padding: 100px 10px;        
    background: linear-gradient(#F0FFF6F9, #F0FFF6F9), url('https://aurora.lystingz.com/wp-content/uploads/2026/03/space-5654794_1280.webp') center/cover no-repeat;
}

.homepages-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    max-width: 100%;
}

.homepages-inner h2 {
    color: var(--green-dark);
    font-size: 29px;
}

.homepages-inner p {
    max-width: 732px;
    margin-inline: auto;
    font-size: 17px;
}

.homepage-preview {
    display: flex;
    justify-content: center;
    column-gap: 40px;
    margin: 30px auto
}

.homepage-preview.div2 {
    max-width: 67%
}

.homepage-preview-div-inner {
    height: 450px;
    overflow-y: hidden;      
    position: relative;
}

.homepage-preview img {
    transition: transform 1s ease-out, filter 0.35s ease-out;
}

.homepage-preview-div:hover img {
    transform: translateY(-258px);
    filter: brightness(0.55);
}

.homebtn {
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    pointer-events: none;
    transition: all 0.4s ease-out;
}

.homepage-preview-div:hover .homebtn {
    opacity: 1;
    pointer-events: auto;
}

.homebtn button {
    border: none;
    color: var(--orange);
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 7px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.homebtn button:hover {
    color: var(--blue);
    background-color: #fff;
}

.homepage-preview-div h3 {
    color: var(--green-dark);
    font-size: 23px;
    margin-top: 20px;
}

.homepage .note {
    margin-top: 20px
}

.grid {
    background:
        linear-gradient(150deg, rgba(0,75,64,0.96) 0%, rgba(0,88,75,0.98) 100%),
        url('https://aurora.lystingz.com/wp-content/uploads/2026/03/Overlay.jpg') center/cover no-repeat;
    padding: 100px 10px;
}

.grid-inner {        
    text-align: center;
}

.grid-inner h2 {
    color: #fff;
    font-size: 38px;
    text-align: center;
    max-width: 786px;
    display: inline-block;
    margin: 0 auto;
}

.grid hr.divider {
    background: rgba(255,255,255,0.4);
    margin: 30px auto
}

.grid .tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 70px 0 10px;
    padding: 10px
}

.tiles img {
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.063);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.tiles img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.38);
}

.archives {
    padding: 140px 20px;
    display: flex;
    gap: 60px;
    background: linear-gradient(#fcfcfcf7, #fcfcfcf7), url('https://aurora.lystingz.com/wp-content/uploads/2026/03/space-5654794_1280.webp') center/cover no-repeat;
}

.archives-inner {
    display: flex;
    gap: 60px;
}

.archives .content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.archives h4 {
    font-weight: 600;
    font-size: 11px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.archives h2 {
    font-size: 28px;
    color: var(--green-dark);
    line-height: 1.2
}

.archives hr.divider {
    background: var(--ink);
    margin: 0
}

.archives-inner p {
    margin: 4px 0
}

.archives-inner .note {
    margin-top: 20px
}

.archive-carousel {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 61%;
    align-content: center;
}

.archive-layouts {
    display: flex;
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
}

.archive-layouts img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background-color: #e7004c;
    backdrop-filter: blur(6px);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    padding: unset !important;
    border: none !important;
    border-radius: 50% !important;
    transition: background 0.2s ease;
}

.carousel-btn:hover {
    background-color: #d10247;
    color: #fff;
    transform: translateY(-50%) !important;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.aurora-more {
    padding: 80px 10px 60px;
    background: var(--green-dark);
    color: #fff;
}

.aurora-more-inner {
    max-width: 1140px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 25px
}

.aurora-more h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: #89FFED;
    letter-spacing: 0.12em;
}

.aurora-more h2 {
    font-size: 34px;
    color: inherit
}

.aurora-more p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-weight: 300;
}

.aurora-more img {
    margin-top: 30px;
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.aurora-features, .trial-section {
    padding: 100px 20px;
    overflow: hidden
}

.aurora-features-inner, .trial-section-inner {
    display: flex;
    column-gap: 100px;
    align-items: center;
    max-width: 1350px !important;
}

.aurora-features-inner .content,
.trial-section-inner .content {
    display: flex;
    flex-direction: column;
    row-gap: 22px;
    max-width: 57%;
    padding: 10px;
    position: relative;
    z-index: 4;
}

.aurora-features-inner h2,
.trial-section-inner h2 {
    font-weight: 700;
    font-size: 33px;
    color: #353535
}

.aurora-features hr.divider,
.trial-section hr.divider {
    background: var(--border);
    margin: 4px 0 14px
}

.feature, .trial-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px 0;
}

.feature i, .trial-card i {
    display: flex;
    height: 52px;
    width: 52px;
    color: var(--green);
    background-color: var(--green-muted);
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    flex: 0 0 auto;
    line-height: 1;
    font-size: 22px;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.feature:hover i, .trial-card:hover i {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 158, 137, 0.104);
}

.feature.f2 i {
    color: var(--orange);
    background-color: var(--orange-glow);
}

.feature.f2:hover i {
    box-shadow: 0 4px 14px rgba(240, 120, 0, 0.122);
}

.feature.f3 i {
    color: var(--blue);
    background-color: #E5F6FF;
}

.feature.f3:hover i {
    box-shadow: 0 4px 14px rgba(0, 155, 221, 0.126);
}

.feature.f4 i {
    color: #E0006B;
    background-color: #FFEBF4;
}

.feature.f4:hover i {
    box-shadow: 0 4px 14px rgba(224, 0, 108, 0.103);
}

.feature h3, .trial-card h3 {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.2;
}

.feature p, .trial-card p {
    line-height: 1.4;
    margin: 6px 0 0;
    font-size: 15px;
    color: var(--ink-soft);
}

.aurora-features-inner hr.divider.line,
.trial-section-inner hr.divider.line {
    width: 100% !important;
    background: #EBEBEB;
    margin: 20px 0
}

.aurora-features-inner img {
    transform: scale(1.4) translateX(10px);
}

.trial-section-inner img {
    transform: scale(1.15) translateX(20px);
}

.features-grid {
    background-color: #F8F8F8;
    padding: 100px 10px
}

.features-grid-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    max-width: 1200px !important;
}

.features-grid h2 {
    color: var(--orange);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.features-grid hr.divider {
    background: var(--orange);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 20px 0
}

.feature-grid > div {
    padding: 40px;
    min-height: 220px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-grid img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s var(--ease-out);
}

.feature-grid > div:hover img {
    transform: scale(1.05);
}

.feature-grid p {
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    margin: 18px auto 0;
    font-family: var(--font-body);
}

button.grid-cta {
    background-color: #fff;
    border-color: #fff;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 16px;
    padding: 13px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}

button.grid-cta:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 6px 22px rgba(240,120,0,0.35);
}

.faq {
    background-color: var(--orange);
    padding: 100px;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.faq-inner {
    max-width: 900px !important;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.faq-inner h2 {
    color: #fff;        
    text-align: center
}

.faq hr.divider {
    background: rgba(255,255,255,0.55);
    margin: 0 auto;
}

.questions {
    padding: 60px;
    margin-top: 20px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.089);
}

.questions button {
    border: none;
    background-color: var(--green);
    color: #fff;
    width: 100%;
    border-radius: 3px;
    text-align: left;        
    font-size: 16px !important;
    line-height: 1.4;
    padding: 13px 14px !important;
    font-weight: 500;
    position: relative;
    font-family: var(--font-body);
    transition: background 0.2s ease, transform 0s;
    letter-spacing: 0;
}

.questions button:hover {
    color: #CCF9EF;
    background-color: #00877A;
    transform: none;
}

.faq-question[aria-expanded="true"],
.faq-question[aria-expanded="true"]:hover {
    background-color: var(--orange);
    color: #fff;    
    border-radius: 3px 3px 0 0;
    transition: border-radius 0.4s ease;
}

.faq-question::after{
    content: "\f059";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px
}

.faq-question[aria-expanded="true"]::after{
    content:"\f0d7";
}

.faq-answer {
    background: #00000003;
    box-shadow: 0 3px 10px #e9e8e870;
    margin-bottom: 10px;
    padding: 5px 20px;
    border-radius: 5px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.5s ease;
}

.faq-answer p {
    font-size: 15px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.footer-cta {
    background: linear-gradient(150deg, rgba(0, 54, 47, 0.996) 0%, rgba(0, 54, 47, 0.958) 100%), url('https://aurora.lystingz.com/wp-content/uploads/2026/03/Overlay.jpg') center/cover no-repeat;
    padding: 130px 10px;
    position: relative;
    overflow: hidden;
}

.footer-cta-inner {
    color: #fff;
    max-width: 680px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px
}

.footer-cta-inner h2 {
    color: inherit;
    font-size: 42px;
    line-height: 1.15;
}

.footer-cta hr.divider {
    background: rgba(255,255,255,0.3);
    margin: 4px auto 0;
    width: 60px;
}

.footer-cta-inner p {
    color: rgba(255,255,255,0.72);
    font-size: 18.5px;
    line-height: 1.6;
}

.footer-cta-inner p strong {
    color: rgba(255,255,255,0.92);
    font-weight: 600;
}

.footer-cta-inner button {
    text-transform: none !important
}

.footer-cta button:hover {
    background-color: #fff !important;
    border-color: #fff !important;
    color: var(--green-dark) !important;
    box-shadow: 0 8px 30px rgba(255,255,255,0.2) !important;
}

.bottom {
    background-color: #083029;
    color: #E5E5E5;
    padding: 15px;
    position: relative;
    z-index: 995
}

.bottom-inner {
    max-width: 1400px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    gap: 10px
}

.add-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.add-links i {
    margin-right: 3px;
    font-size: 87%
}

.bottom-inner a {
    color: inherit;
    transition: color 0.3s ease;
    opacity: 0.8;
    line-height: 1;
}

.bottom-inner a:hover {
    color: var(--orange-light);
    opacity: 1;
}


.trial-links {
    justify-content: flex-start;
    margin-top: 10px;
}

@media (max-width:768px) {

    .landing-page button {
        padding: 10px 18px;
        font-size: 15px;
    }

    .landing-page .innerdiv {
        max-width: 100vw !important;
    }

    .header {
        width: 100%
    }

    .intro h1 {
        font-size: 40px;
        max-width: 700px
    }

    .intro p {
        max-width: 725px
    }

    .hero img {
        width: 112px;
    }

    .after-hero .stats {
        max-width: 615px;
    }

    .stats h3 {
        font-size: 50px
    }

    .headers {
        padding: 15px;
    }

    .headers-inner {
        gap: 40px;
        padding: 50px 10px 
    }

    .headers-inner .note {
        margin-top: 0;
    }

    .homepages {
        padding: 50px 15px
    }

    .homepage-preview-div-inner {
        height: 240px;
    }

    .homepage-preview-div:hover img {
        transform: translateY(-145px);
    }

    .homebtn button {
        font-size: 13px
    }

    .homepage-preview-div h3 {
        font-size: 21px
    }

    .grid {
        padding: 50px 10px
    }

    .grid-inner h2 {
        font-size: 26px;
        max-width: 570px;
    }

    .grid .tiles {
        gap: 30px
    }

    .archives {
        padding: 50px 20px
    }

    .archives-inner {
        gap: 20px
    }

    .archives h2 {
        font-size: 25px
    }

    .carousel-btn {
        font-size: 13px !important;
        height: 36px;
        width: 36px
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .aurora-more {
        padding: 50px 30px
    }

    .aurora-more h2 {
        font-size: 30px;
        max-width: 584px;
        align-self: center;
    }

    .aurora-features, .trial-section {
        padding: 60px 10px
    }

    .aurora-features-inner, .trial-section-inner {
        gap: 0
    }

    .feature h3, .trial-card h3 {
        font-size: 20px
    }

    .feature p, .trial-card p {
        font-size: 15px
    }

    .aurora-features-inner .content, .trial-section-inner .content {
        padding-right: 20px
    }

    .aurora-features-inner img {
        transform: scale(1.8) translateX(-10px);
    }

    .trial-section-inner img {
        transform: scale(1.15) translateX(-20px);
    }

    .aurora-features-inner hr.divider.line, .trial-section-inner hr.divider.line {
        margin: 12px 0
    }

    .features-grid {        
        padding: 70px 10px
    }

    .feature-grid {
        gap: 10px;
    }

    .feature-grid > div {
        padding: 15px
    }

    .feature-grid p {
        font-size: 15px
    }

    .feature-grid img {
        max-height: 40px;
    }

    .faq, .questions {
        padding: 40px
    }

    .footer-cta {
        padding: 80px 20px
    }

    .footer-cta-inner h2 {
        font-size: 35px
    }

    .add-links {
        gap: 19px
    }

    table {
        min-width:300px;
    }
}


@media (max-width:480px) {

    .landing-page button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .header {
        padding: 0
    }

    .lp-menu {
        display: none !important;
    }

    .hero {
        padding: 15px 15px 130px
    }

     .hero img {
        width: 100px;
    }

    .intro h1 {
        font-size: 29px
    }

    .intro p {
        font-size: 17px
    }

    iframe {
        height: 240px !important
    }

    .hero-buttons {
        gap: 10px
    }

    .after-hero .stats {
        margin: -153px auto 30px
    }

    .stats h3 {
        font-size: 30px
    }

    .stats .dividers {
        font-size: 22px
    }

    .stats p {
        font-size: 10px
    }

    .after-hero {
        padding: 64px 10px 50px
    }

    .after-hero .stats {
        gap: 10px;
        padding: 15px
    }

    .after-hero h2 {
        font-size: 29px
    }

    .after-hero hr.divider {
        margin: 20px auto 40px
    }

    table {
        margin-top: 0
    }

    .section1-inner {
        flex-direction: column;
        padding: 70px 20px 50px
    }

    .section1-inner > div {
        max-width: 100%
    }

    .headers-inner {
        flex-direction: column-reverse;
        padding: 30px 10px
    }

    .headers-inner .content {
        max-width: 100%
    }

    .headers-inner .images {
        row-gap: 13px
    }

    .headers-inner .images img {
        box-shadow: -4px 5px 20px #0003;
    }

    .homepage-preview {
        flex-direction: column;
        row-gap: 30px
    }

    .homepage-preview.div2 {
        max-width: 100%
    }

    .homepage-preview-div-inner {
        height: 235px
    }

    .homepage-preview-div:hover img {
        transform: translateY(-295px);
    }
    
    .grid-inner h2 {
        font-size: 21px
    }

    .grid .tiles {
        grid-template-columns: 1fr;
        margin-top: 20px
    }

    .tiles img {
        border-radius: 10px;
    }

    .archives-inner {
        flex-direction: column;
    }

    .archives-inner .note {
        margin-top: 5px
    }

    .archive-carousel {
        max-width: 100%
    }

    .carousel-btn {
        font-size: 11px !important;
        height: 26px;
        width: 26px
    }

    .carousel-btn.prev {
        left: 5px
    }

    .carousel-btn.next {
        right: 5px
    }

    .aurora-more {
        padding: 50px 15px;
    }

    .aurora-more h2 {
        font-size: 25px
    }

    .aurora-more p {
        font-size: 16px
    }

    .aurora-features-inner, .trial-section-inner {
        flex-direction: column;
        row-gap: 80px
    }

    .aurora-features-inner .content, .trial-section-inner .content {
        padding-right: 10px;
        max-width: 100%
    }

    .feature, .trial-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-grid > div {
        min-height: 165px;
    }

    .feature i, .trial-card i {
        align-self: center;
    }

    .feature h3, .trial-card h3 {
        font-size: 18px 
    }

    .aurora-features-inner h2, .trial-section-inner h2 {
        font-size: 25px
    }

    .aurora-features-inner hr.divider.line, .trial-section-inner hr.divider.line {
        margin: 7px auto;
        max-width: 130px
    }

     .aurora-features-inner img {
        transform: scale(1.6) translateX(0);
        margin: 50px 0;
    }

    .trial-section-inner img {
        transform: scale(1) translateX(0);
    }

    .trial-links {
        justify-content: center;
    }

    .div2 {
        margin-top: 0
    }

    .homepages-inner {
        row-gap: 0;
    }

    .homepages-inner h2 {
        font-size: 25px
    }

    .features-grid {
        padding: 30px 10px
    }

    .features-grid h2 {
        font-size: 25px
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);;
    }

    .feature-grid img {
        max-height: 50px
    }

    .faq, .questions {
        padding: 20px;
    }

    .questions {
        margin-top: 10px;
        gap: 5px
    }

    .faq-answer {
        font-size: 15px
    }

    .footer-cta-inner h2 {
        font-size: 24px
    }

    .faq-question::after {
        font-size: 0;
    }

    .footer-cta-inner {
        row-gap: 10px
    }

    .footer-cta hr.divider {
        margin-top: 15px
    }

    .footer-cta-inner p {
        font-size: 16px
    }

    .bottom-inner {
        flex-direction: column;
    }

    .add-links {
        gap: 12px;
        font-size: 13px;
    }

    .headers-inner a, .note, .archives-inner a, .aurora-features-inner h2,
    .headers-inner .content h2, .headers-inner .content h4, .archives h2,
    .trial-section-inner h2, .archives h4, .archives-inner p {
        text-align: center;
    }

    .archives hr.divider, .headers-inner .divider {
        margin: 0 auto
    }

    .aurora-features hr.divider, .trial-section hr.divider {
        margin: 10px auto 15px
    }
}