.hero-section {
    width: 100%;
    padding: 4.5rem 3rem 3.5rem;
    background: #fff;
}

.hero-content {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;  /* align both columns at bottom */
    justify-content: center;
    gap: 60px;
}

/* LEFT COLUMN */
.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    margin-top: 2rem;
}

/* RIGHT COLUMN */
.hero-text{
    margin-top: 1rem;
}

.hero-text h1 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    color: #1a1a1a;
    text-align: center;
}

/* TOOLS (chips) */
.hero-tools {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 16px 22px;
    justify-content: start;
}

.tool {
    width: 100%;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    background: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.hero-tools .tool span{
    margin: 0 auto;
    color: #1a1a1a;
}
.tool img {
    width: 30px;
    height: 30px;
}

.highlight-text {
    background: linear-gradient(145deg, #0ad7d8, #0063f1, #b838ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 1rem;
    text-align: center;
}

/* hero section end */

@media screen and (max-width:576px) {
  /* mobile phones */
  .hero-section {
	padding: 1.5rem 1rem;
    }
  .hero-text h1 {
    font-size: 24px; /* balanced size for small screens */
  }

  .hero-content{
    display: block;
    align-items: center;
    width: 100%;
  }
  .hero-left-content {
	display: none;
}


.hero-logo img {
	width: auto;
	height: 90px;	
}
/* Chips below, spanning full width in 2 columns */
.hero-right-content .hero-tools {
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 0 auto;
	width: 100%;
}


.hero-right-content .hero-tools>a {
	display: block;
	height: 100%;
}

.tool {
	height: 100%;
	justify-content: center;
	gap: 5px;
	padding: 12px;
	font-size: 16px;
	min-width: 0;
	text-align: center;
}


.tool img {
	width: 26px;
	height: 26px;
	flex: 0 0 auto;
}

.tool span {
	display: inline-block;
	line-height: 1.1;
	color: #1a1a1a;
}

}

@media screen and (min-width: 576px) and (max-width: 768px) and (orientation: portrait) {

    /* iPad mini / small tablets in portrait */
    .hero-tools {
        grid-template-columns: repeat(2, auto);
    }

    .hero-content {
        align-items: center;
        gap: 30px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .tool {
        min-width: 220px;
    }

    .desktop-view {
        display: none;
    }

    .tablet-view {
        display: block;
    }

    .hero-text h1 {
        font-size: 26px;
    }
}

@media screen and (min-width: 769px) and (max-width: 820px) and (orientation: portrait) {

    /* iPad Air (portrait) */
    .hero-tools {
        grid-template-columns: repeat(2, auto);
    }

    .hero-content {
        align-items: center;
        gap: 30px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .tool {
        min-width: 230px;
    }

    .desktop-view {
        display: none;
    }

    .tablet-view {
        display: block;
    }

    .hero-text h1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 821px) and (max-width: 834px) and (orientation: portrait) {

    /* iPad Pro 11" (portrait) */
    .hero-tools {
        grid-template-columns: repeat(2, auto);
    }

    .hero-content {
        align-items: center;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-view {
        display: none;
    }

    .tablet-view {
        display: block;
    }

    .hero-text h1 {
        font-size: 30px;
    }
}

@media screen and (min-width: 835px) and (max-width: 1024px) and (orientation: portrait) {

    /* iPad Pro 12.9" and large tablets (portrait) */
    .hero-tools {
        grid-template-columns: repeat(2, auto);
    }

    .hero-content {
        align-items: center;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-view {
        display: none;
    }

    .tablet-view {
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
    }
    /* Let right column's children participate in the parent grid */
.hero-right-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-direction: column;
}

}