:root {
	--gws-blue: #1a73e8;
	--gws-red: #ea4335;
	--gws-yellow: #fbbc04;
	--gws-green: #34a853;
	--gws-ink: #14213d;
	--gws-muted: #64748b;
	--gws-border: rgba(20, 33, 61, 0.1);
	--gws-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.google-workspace-page {
	background: #f8fbff;
	color: var(--gws-ink);
	font-family: inherit;
	overflow-x: hidden;
}

.google-workspace-page * {
	box-sizing: border-box;
}

.google-workspace-page .site-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.google-workspace-section {
	padding: 84px 0;
}

.google-workspace-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(26, 115, 232, 0.1);
	color: var(--gws-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.google-workspace-section-heading h2,
.google-workspace-premier h2,
.google-workspace-cta h2 {
	margin: 18px 0 14px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--gws-ink);
}

.google-workspace-section-heading p,
.google-workspace-premier p,
.google-workspace-cta p {
	margin: 0;
	color: var(--gws-muted);
	font-size: 17px;
	line-height: 1.75;
}

.google-workspace-center {
	max-width: 820px;
	margin: 0 auto 38px;
	text-align: center;
}

.google-workspace-btn,
.google-workspace-product-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.google-workspace-btn:hover,
.google-workspace-product-action:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.google-workspace-btn--primary,
.google-workspace-product-action {
	background: linear-gradient(135deg, var(--gws-blue), #0b57d0);
	box-shadow: 0 16px 34px rgba(26, 115, 232, 0.28);
	color: #fff;
}

.google-workspace-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	backdrop-filter: blur(16px);
}

.google-workspace-btn--light {
	background: #fff;
	color: var(--gws-blue);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.google-workspace-hero {
	position: relative;
	padding: 118px 0 96px;
	background:
		linear-gradient(112deg, rgba(9, 31, 73, 0.92) 0%, rgba(21, 96, 190, 0.82) 54%, rgba(52, 168, 83, 0.2) 100%),
		url('../images/google-workspace/google-workspace-hero.png') center / cover no-repeat;
	isolation: isolate;
}

.google-workspace-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 -1px;
	height: 86px;
	background: linear-gradient(180deg, rgba(248, 251, 255, 0), #f8fbff);
	z-index: -1;
}

.google-workspace-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
	gap: 42px;
	align-items: center;
}

.google-workspace-hero__content h1 {
	margin: 22px 0 18px;
	color: #fff;
	font-size: clamp(46px, 7vw, 78px);
	line-height: 0.98;
	font-weight: 950;
	letter-spacing: -0.06em;
}

.google-workspace-hero__content p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 20px;
	line-height: 1.7;
}

.google-workspace-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 32px 0 26px;
}

.google-workspace-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.google-workspace-hero__badges span {
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	backdrop-filter: blur(16px);
}

.google-workspace-card {
	position: relative;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
	color: #fff;
	backdrop-filter: blur(24px);
	overflow: hidden;
}

.google-workspace-card__rings {
	display: grid;
	grid-template-columns: repeat(2, 56px);
	gap: 12px;
	margin-bottom: 28px;
}

.google-workspace-card__rings span {
	height: 56px;
	border-radius: 18px;
	background: var(--gws-blue);
}

.google-workspace-card__rings span:nth-child(2) {
	background: var(--gws-red);
}

.google-workspace-card__rings span:nth-child(3) {
	background: var(--gws-yellow);
}

.google-workspace-card__rings span:nth-child(4) {
	background: var(--gws-green);
}

.google-workspace-card strong {
	display: block;
	font-size: 28px;
	font-weight: 900;
}

.google-workspace-card p {
	margin: 12px 0 26px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}

.google-workspace-card__metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.google-workspace-card__metrics div {
	padding: 14px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.14);
}

.google-workspace-card__metrics span {
	display: block;
	font-size: 21px;
	font-weight: 900;
}

.google-workspace-card__metrics small {
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
	line-height: 1.4;
}

.google-workspace-premier {
	padding-top: 36px;
}

.google-workspace-premier__grid,
.google-workspace-about__grid,
.google-workspace-faq__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 52px;
	align-items: start;
}

.google-workspace-premier__grid {
	padding: 36px;
	border-radius: 34px;
	background: #fff;
	box-shadow: var(--gws-shadow);
}

.google-workspace-about {
	background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.google-workspace-mailbox {
	padding: 34px;
	border-radius: 30px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, var(--gws-blue), var(--gws-red), var(--gws-yellow), var(--gws-green)) border-box;
	border: 2px solid transparent;
	box-shadow: var(--gws-shadow);
}

.google-workspace-mailbox span {
	display: inline-flex;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(52, 168, 83, 0.1);
	color: var(--gws-green);
	font-weight: 900;
}

.google-workspace-mailbox strong {
	display: block;
	margin: 20px 0 10px;
	font-size: 28px;
	font-weight: 900;
}

.google-workspace-mailbox p {
	margin: 0;
	color: var(--gws-muted);
	font-size: 16px;
	line-height: 1.7;
}

.google-workspace-apps,
.google-workspace-benefits {
	background: #fff;
}

.google-workspace-app-grid,
.google-workspace-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.google-workspace-app-card,
.google-workspace-benefit-card,
.google-workspace-product-card,
.google-workspace-faq-list details {
	border: 1px solid var(--gws-border);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 16px 46px rgba(15, 23, 42, 0.07);
}

.google-workspace-app-card,
.google-workspace-benefit-card {
	padding: 26px;
}

.google-workspace-app-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(26, 115, 232, 0.14), rgba(52, 168, 83, 0.16));
	color: var(--gws-blue);
	font-size: 23px;
	font-weight: 950;
}

.google-workspace-app-card:nth-child(2n) .google-workspace-app-icon {
	background: rgba(234, 67, 53, 0.12);
	color: var(--gws-red);
}

.google-workspace-app-card:nth-child(3n) .google-workspace-app-icon {
	background: rgba(251, 188, 4, 0.16);
	color: #b27600;
}

.google-workspace-app-card h3,
.google-workspace-benefit-card h3 {
	margin: 0 0 10px;
	font-size: 21px;
	font-weight: 900;
}

.google-workspace-app-card p,
.google-workspace-benefit-card p {
	margin: 0;
	color: var(--gws-muted);
	line-height: 1.7;
}

.google-workspace-products {
	background: radial-gradient(circle at top left, rgba(26, 115, 232, 0.12), transparent 34%), #f8fbff;
}

.google-workspace-pricing-shell {
	position: relative;
}

.google-workspace-product-slider {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 48px) / 3);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 8px 2px 28px;
}

.google-workspace-product-slider::-webkit-scrollbar {
	display: none;
}

.google-workspace-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
	min-height: 100%;
	padding: 30px;
}

.google-workspace-product-card--featured {
	border-color: rgba(26, 115, 232, 0.44);
	box-shadow: 0 24px 70px rgba(26, 115, 232, 0.16);
}

.google-workspace-product-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--gws-green);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.google-workspace-product-head > span {
	display: none;
}

.google-workspace-product-head em {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(26, 115, 232, 0.1);
	color: var(--gws-blue);
	font-style: normal;
	font-weight: 900;
	font-size: 12px;
	text-transform: uppercase;
}

.google-workspace-product-head h3 {
	margin: 0 0 10px;
	font-size: 27px;
	font-weight: 950;
}

.google-workspace-product-head p {
	margin: 0;
	min-height: 86px;
	color: var(--gws-muted);
	line-height: 1.65;
}

.google-workspace-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 24px 0;
}

.google-workspace-spec-grid span {
	padding: 14px;
	border-radius: 18px;
	background: #f3f7ff;
	color: var(--gws-muted);
	font-size: 13px;
	line-height: 1.45;
}

.google-workspace-spec-grid strong {
	display: block;
	color: var(--gws-ink);
	font-size: 16px;
	font-weight: 900;
}

.google-workspace-price {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--gws-border);
}

.google-workspace-price strong {
	display: block;
	font-size: 34px;
	line-height: 1;
	font-weight: 950;
	letter-spacing: -0.04em;
	color: var(--gws-blue);
}

.google-workspace-price span {
	color: var(--gws-muted);
	font-weight: 700;
}

.google-workspace-feature-list {
	display: grid;
	gap: 11px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.google-workspace-feature-list li {
	position: relative;
	padding-left: 26px;
	color: #334155;
	line-height: 1.55;
}

.google-workspace-feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--gws-green);
	font-weight: 950;
}

.google-workspace-product-action {
	width: 100%;
	margin-top: auto;
}

.google-workspace-slider-btn {
	position: absolute;
	top: 45%;
	z-index: 2;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
	color: var(--gws-blue);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

.google-workspace-slider-btn--prev {
	left: -22px;
}

.google-workspace-slider-btn--next {
	right: -22px;
}

.google-workspace-compare {
	background: #fff;
}

.google-workspace-table-wrap {
	overflow-x: auto;
	border-radius: 26px;
	box-shadow: var(--gws-shadow);
}

.google-workspace-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	background: #fff;
}

.google-workspace-table th,
.google-workspace-table td {
	padding: 18px 20px;
	border-bottom: 1px solid var(--gws-border);
	text-align: left;
}

.google-workspace-table th {
	background: #eef5ff;
	color: var(--gws-ink);
	font-weight: 950;
}

.google-workspace-table td:first-child {
	font-weight: 900;
	color: var(--gws-blue);
}

.google-workspace-benefit-card {
	background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.google-workspace-faq-list {
	display: grid;
	gap: 14px;
}

.google-workspace-faq-list details {
	padding: 20px 22px;
}

.google-workspace-faq-list summary {
	cursor: pointer;
	font-size: 18px;
	font-weight: 900;
	color: var(--gws-ink);
}

.google-workspace-faq-list p {
	margin: 12px 0 0;
	color: var(--gws-muted);
	line-height: 1.7;
}

.google-workspace-cta {
	padding-top: 36px;
}

.google-workspace-cta__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 42px;
	border-radius: 34px;
	background: linear-gradient(135deg, #1a73e8, #0b57d0 58%, #34a853);
	box-shadow: var(--gws-shadow);
}

.google-workspace-cta__box h2,
.google-workspace-cta__box p {
	color: #fff;
}

.google-workspace-cta__box .google-workspace-eyebrow {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

@media (max-width: 1024px) {
	.google-workspace-hero__grid,
	.google-workspace-premier__grid,
	.google-workspace-about__grid,
	.google-workspace-faq__grid {
		grid-template-columns: 1fr;
	}

	.google-workspace-product-slider {
		grid-auto-columns: calc((100% - 24px) / 2);
	}

	.google-workspace-app-grid,
	.google-workspace-benefit-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.google-workspace-section {
		padding: 58px 0;
	}

	.google-workspace-hero {
		padding: 92px 0 70px;
	}

	.google-workspace-hero__content p {
		font-size: 17px;
	}

	.google-workspace-card__metrics,
	.google-workspace-app-grid,
	.google-workspace-benefit-grid,
	.google-workspace-spec-grid {
		grid-template-columns: 1fr;
	}

	.google-workspace-product-slider {
		grid-auto-columns: 88%;
	}

	.google-workspace-slider-btn {
		display: none;
	}

	.google-workspace-premier__grid,
	.google-workspace-mailbox,
	.google-workspace-product-card,
	.google-workspace-cta__box {
		padding: 24px;
		border-radius: 24px;
	}

	.google-workspace-cta__box {
		align-items: flex-start;
		flex-direction: column;
	}

	.google-workspace-btn,
	.google-workspace-btn--light {
		width: 100%;
	}
}
